    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #f6f7fb;
      --surface: #ffffff;
      --surface-2: #eef1f8;
      --surface-elevated: rgba(255, 255, 255, 0.94);
      --border: rgba(124, 58, 237, 0.1);
      --border-subtle: rgba(15, 23, 42, 0.07);
      --accent: #7c3aed;
      --accent-h: #6d28d9;
      --accent-s: #7c3aed;
      --accent-muted: #a78bfa;
      --accent-soft: rgba(124, 58, 237, 0.09);
      --accent-glow: rgba(124, 58, 237, 0.12);
      --text: #0c1222;
      --text-2: #3d4a63;
      --muted: #64748b;
      --r-sm: 10px;
      --r: 14px;
      --r-md: 18px;
      --r-lg: 24px;
      --r-xl: 32px;
      --max: 1140px;
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 24px;
      --space-6: 32px;
      --space-8: 48px;
      --space-10: 64px;
      --section-y: clamp(5.5rem, 11vw, 8.5rem);
      --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --text-xs: 0.75rem;
      --text-sm: 0.8125rem;
      --text-base: 0.9375rem;
      --text-lead: clamp(1rem, 1.1vw, 1.0625rem);
      --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.035);
      --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(15, 23, 42, 0.06);
      --shadow-float: 0 24px 56px rgba(15, 23, 42, 0.09);
      --shadow-soft: 0 32px 80px rgba(99, 102, 241, 0.08);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .hero-label-dot {
        animation: none;
      }

      .hero-art-frame {
        animation: none;
      }
    }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      font-feature-settings: "kern" 1, "liga" 1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .ambient-bg {
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background:
        radial-gradient(ellipse 120% 90% at 50% -25%, rgba(167, 139, 250, 0.14), transparent 58%),
        radial-gradient(ellipse 55% 45% at 100% 15%, rgba(196, 181, 253, 0.08), transparent 50%),
        radial-gradient(ellipse 50% 35% at 0% 85%, rgba(237, 233, 254, 0.45), transparent 55%),
        var(--bg);
    }

    .ambient-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(15, 23, 42, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse 85% 55% at 50% 12%, #000 0%, transparent 72%);
      opacity: 0.28;
    }

    /* ── NAV ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1rem, 4vw, 1.75rem);
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px) saturate(1.4);
      -webkit-backdrop-filter: blur(16px) saturate(1.4);
      border-bottom: 1px solid var(--border-subtle);
      transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
    }

    .nav.is-scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 32px rgba(15, 23, 42, 0.06);
      border-bottom-color: rgba(15, 23, 42, 0.06);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
      transition: opacity 0.25s;
    }

    .nav-brand:hover {
      opacity: 0.82;
    }

    .nav-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      object-fit: cover;
    }

    .nav-name {
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: -.02em;
    }

    .menu-btn {
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      width: 36px;
      height: 36px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
      padding: 0;
      transition: background .2s;
    }

    .menu-btn:hover {
      background: var(--surface-2);
    }

    .menu-btn span {
      display: block;
      width: 15px;
      height: 1.5px;
      background: var(--text);
      border-radius: 2px;
    }

    /* ── MENU OVERLAY ── */
    .menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(15, 23, 42, 0.35);
      backdrop-filter: blur(8px);
      display: none;
    }

    .menu-overlay.open {
      display: block;
    }

    .menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(300px, 85vw);
      background: var(--surface);
      border-left: 1px solid var(--border-subtle);
      padding: 24px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(15, 23, 42, 0.08);
    }

    .menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .menu-header-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
    }

    .menu-header-icon {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      object-fit: cover;
    }

    .menu-header-name {
      font-weight: 700;
      font-size: .88rem;
    }

    .menu-close-btn {
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.3rem;
      cursor: pointer;
      line-height: 1;
      padding: 4px;
      transition: color .2s;
    }

    .menu-close-btn:hover {
      color: var(--text);
    }

    .menu-section {
      margin-bottom: 24px;
    }

    .menu-section-label {
      font-size: .62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .menu-link {
      display: block;
      padding: 9px 0;
      color: var(--text-2);
      font-size: .88rem;
      border-bottom: 1px solid var(--border-subtle);
      transition: color .2s;
    }

    .menu-link:last-child {
      border-bottom: none;
    }

    .menu-link:hover {
      color: var(--accent);
    }

    .menu-store-btns {
      margin-top: auto;
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid var(--border-subtle);
    }

    .menu-store-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 14px;
      font-size: .84rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-decoration: none;
      transition: transform 0.2s var(--ease-out), box-shadow 0.2s, border-color 0.2s;
    }

    .menu-store-btns .menu-store-link:first-of-type {
      color: #fff;
      background: linear-gradient(165deg, #2e2e34 0%, #141416 52%, #0c0c0e 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.07) inset,
        0 6px 18px rgba(15, 23, 42, 0.2);
    }

    .menu-store-btns .menu-store-link:first-of-type:hover {
      transform: translateY(-2px);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 10px 26px rgba(15, 23, 42, 0.28);
      color: #fff;
    }

    .menu-store-btns .menu-store-link:last-of-type {
      color: #fff;
      background: linear-gradient(165deg, #252830 0%, #12141a 52%, #0a0c10 100%);
      border: 1px solid rgba(52, 211, 153, 0.4);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 6px 20px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    }

    .menu-store-btns .menu-store-link:last-of-type:hover {
      transform: translateY(-2px);
      border-color: rgba(52, 211, 153, 0.55);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 10px 30px rgba(15, 23, 42, 0.28),
        0 0 20px rgba(16, 185, 129, 0.14);
      color: #fff;
    }

    .menu-store-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .menu-store-btns .menu-store-link:active {
      transform: translateY(0);
    }

    .menu-store-link svg {
      flex-shrink: 0;
      fill: currentColor;
    }

    /* ── PAGE WRAP ── */
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(1rem, 4vw, 1.75rem);
    }

    /* ── HERO ── */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(2rem, 5vw, 4rem);
      padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 8vw, 5.75rem);
      min-height: 0;
      position: relative;
    }

    .hero-text {
      flex: 1;
      min-width: 0;
      max-width: 560px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-2) var(--space-4);
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 999px;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--text-2);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: var(--space-5);
      box-shadow: var(--shadow-sm);
    }

    .hero-label-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2.2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .55;
        transform: scale(.85)
      }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6.5vw, 4.25rem);
      font-weight: 800;
      line-height: 1.03;
      letter-spacing: -.058em;
      color: var(--text);
      margin-bottom: var(--space-5);
      max-width: 12em;
    }

    .hero-title-accent {
      display: block;
      margin-top: 0.12em;
      font-size: 0.42em;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--accent-h);
      line-height: 1.3;
    }

    .hero-sub {
      font-size: var(--text-lead);
      color: var(--text-2);
      max-width: 420px;
      line-height: 1.72;
      margin-bottom: var(--space-8);
      font-weight: 400;
    }

    .hero-sub a {
      color: var(--accent-h);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: rgba(124, 58, 237, 0.35);
      text-underline-offset: 3px;
      transition: color 0.2s, text-decoration-color 0.2s;
    }

    .hero-sub a:hover {
      color: #5b21b6;
      text-decoration-color: rgba(91, 33, 182, 0.55);
    }

    /* Store buttons */
    .store-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .store-btns.hero-cta {
      margin-bottom: var(--space-6);
      gap: var(--space-3);
    }

    .store-btns.hero-cta .store-btn {
      min-height: 52px;
      padding: 15px 26px;
      border-radius: var(--r-md);
    }

    .store-btns.hero-cta .store-btn--primary {
      box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
    }

    .store-btns.cta-inline {
      justify-content: center;
      margin-top: 2.5rem;
      gap: 12px;
      flex-wrap: wrap;
    }

    .store-btns.cta-inline .store-btn {
      min-width: 160px;
    }

    .store-btns.cta-inline .store-btn-text {
      align-items: center;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      color: var(--text);
      font-size: .84rem;
      transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out), background 0.28s var(--ease-out);
      min-width: 164px;
      min-height: 48px;
      box-shadow: var(--shadow-sm);
    }

    .store-btn:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-card);
    }

    .store-btn:focus-visible {
      outline: 2px solid rgba(124, 58, 237, 0.45);
      outline-offset: 2px;
    }

    .store-btn svg {
      flex-shrink: 0;
      fill: currentColor;
    }

    .store-btn--primary {
      background: linear-gradient(155deg, #8b5cf6 0%, #7c3aed 52%, #6d28d9 100%);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
    }

    .store-btn--primary:hover {
      background: linear-gradient(155deg, #9569f7 0%, #8b5cf6 52%, #7c3aed 100%);
      box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
    }

    .store-btn--primary svg {
      fill: #fff;
      color: #fff;
    }

    .store-btn--secondary {
      background: var(--surface);
      color: var(--text);
      border-color: var(--border-subtle);
    }

    .store-btn--secondary:hover {
      background: #fafafa;
      border-color: rgba(124, 58, 237, 0.22);
    }

    .store-btn-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: flex-start;
    }

    .store-btn-small {
      font-size: .66rem;
      opacity: .7;
      font-weight: 500;
      line-height: 1;
    }

    .store-btn-big {
      font-size: .9rem;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Rating row */
    .hero-rating {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .stars {
      display: flex;
      gap: 2px;
    }

    .star {
      width: 16px;
      height: 16px;
      fill: #fbbf24;
    }

    .rating-text {
      font-size: .82rem;
      color: var(--muted);
    }

    .rating-sep {
      width: 1px;
      height: 14px;
      background: var(--border-subtle);
    }

    /* Hero landing art -  PNG floats on page background (no “boxed” frame) */
    .hero-visual {
      flex-shrink: 0;
      width: min(100%, 460px);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      isolation: isolate;
    }

    .hero-visual-blobs {
      position: absolute;
      inset: -12%;
      z-index: 0;
      pointer-events: none;
    }

    .hero-visual-blobs::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 52%;
      transform: translate(-50%, -50%);
      width: 92%;
      height: 78%;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(167, 139, 250, 0.2) 0%, rgba(196, 181, 253, 0.06) 45%, transparent 68%);
      filter: blur(36px);
    }

    .hero-visual-blobs::after {
      content: '';
      position: absolute;
      right: -5%;
      bottom: 8%;
      width: 55%;
      height: 45%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(251, 191, 36, 0.09) 0%, transparent 70%);
      filter: blur(28px);
    }

    .hero-art-frame {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 440px;
      animation: hero-float 7s var(--ease-out) infinite;
    }

    @keyframes hero-float {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-10px) scale(1.01);
      }
    }

    .hero-landing-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0;
      box-shadow: none;
      background: transparent;
      filter:
        drop-shadow(0 28px 56px rgba(99, 102, 241, 0.14)) drop-shadow(0 8px 24px rgba(15, 23, 42, 0.06));
      transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
    }

    .hero-art-frame:hover .hero-landing-img {
      transform: scale(1.015);
      filter:
        drop-shadow(0 36px 72px rgba(99, 102, 241, 0.18)) drop-shadow(0 12px 32px rgba(15, 23, 42, 0.08));
    }

    .hero-live-pill {
      position: absolute;
      z-index: 2;
      bottom: 8%;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-2) var(--space-4);
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 999px;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--text-2);
      box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
      white-space: nowrap;
    }

    .hero-live-pill svg {
      flex-shrink: 0;
      opacity: 0.85;
    }

    .section-heading,
    .cta-text h2 {
      font-family: var(--font-display);
    }

    /* Section headers -  product-first rhythm */
    .section-header {
      margin-bottom: var(--space-8);
      max-width: 640px;
    }

    .section-header--center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-kicker {
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-h);
      margin-bottom: var(--space-3);
    }

    .section-heading {
      font-size: clamp(1.75rem, 3.5vw, 2.35rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: var(--space-4);
    }

    .section-lead {
      font-size: var(--text-base);
      color: var(--muted);
      line-height: 1.65;
      max-width: 520px;
    }

    .section-header--center .section-lead {
      margin-left: auto;
      margin-right: auto;
    }

    /* ── PRODUCT MOMENTS (UI previews) ── */
    .product-moments {
      padding: 0 0 var(--section-y);
    }

    .moments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-5);
    }

    .moment-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-lg);
      padding: var(--space-5);
      box-shadow: var(--shadow-sm);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.35s;
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
    }

    .moment-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
      border-color: rgba(124, 58, 237, 0.14);
    }

    .moment-visual {
      aspect-ratio: 4 / 3.1;
      border-radius: var(--r-md);
      background: linear-gradient(165deg, #f8fafc 0%, #eef2ff 55%, #faf5ff 100%);
      border: 1px solid var(--border-subtle);
      padding: var(--space-4);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: var(--space-2);
      overflow: hidden;
      position: relative;
    }

    .moment-visual::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 36%;
      height: 5px;
      border-radius: 99px;
      background: rgba(15, 23, 42, 0.06);
    }

    .moment-bubble {
      max-width: 88%;
      padding: var(--space-3) var(--space-4);
      border-radius: 16px 16px 16px 4px;
      background: #fff;
      font-size: 0.72rem;
      line-height: 1.45;
      color: var(--text-2);
      box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    }

    .moment-bubble--out {
      align-self: flex-end;
      border-radius: 16px 16px 4px 16px;
      background: linear-gradient(142deg, #8b5cf6 0%, #7c3aed 100%);
      color: #fff;
      font-weight: 500;
    }

    .moment-rows {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
      padding-top: var(--space-4);
    }

    .moment-row {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      padding: var(--space-2) var(--space-3);
      background: rgba(255, 255, 255, 0.85);
      border-radius: var(--r-sm);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text);
    }

    .moment-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #a78bfa, #7c3aed);
      flex-shrink: 0;
    }

    .moment-row span {
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--muted);
      display: block;
    }

    .moment-game {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      align-items: center;
      justify-content: center;
      padding: var(--space-4) var(--space-2);
    }

    .moment-chip {
      font-size: 0.68rem;
      font-weight: 700;
      padding: var(--space-2) var(--space-3);
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border-subtle);
      color: var(--accent-h);
      box-shadow: var(--shadow-sm);
    }

    .moment-visual--chat {
      justify-content: flex-end;
    }

    .moment-visual--feed {
      justify-content: flex-start;
      gap: var(--space-3);
      padding-top: calc(var(--space-4) + 10px);
    }

    .feed-tabs {
      display: flex;
      gap: 4px;
      padding: 4px;
      background: rgba(15, 23, 42, 0.05);
      border-radius: 999px;
      align-self: stretch;
      margin-bottom: var(--space-1);
    }

    .feed-tab {
      flex: 1;
      text-align: center;
      font-size: 0.62rem;
      font-weight: 700;
      padding: 6px 4px;
      border-radius: 999px;
      color: var(--muted);
      transition: background 0.2s, color 0.2s;
    }

    .feed-tab--on {
      background: #fff;
      color: var(--text);
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    }

    .feed-stack {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      flex: 1;
      justify-content: center;
    }

    .feed-snippet {
      display: flex;
      gap: var(--space-3);
      align-items: flex-start;
      padding: var(--space-3);
      background: rgba(255, 255, 255, 0.92);
      border-radius: var(--r-sm);
      border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .feed-snippet-av {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, #c4b5fd, #7c3aed);
      flex-shrink: 0;
    }

    .feed-snippet-lines {
      flex: 1;
      min-width: 0;
    }

    .feed-snippet-lines .ln {
      height: 6px;
      border-radius: 4px;
      background: rgba(15, 23, 42, 0.08);
      margin-bottom: 6px;
    }

    .feed-snippet-lines .ln:last-child {
      width: 72%;
      margin-bottom: 0;
    }

    .moment-visual--games {
      justify-content: center;
      align-items: stretch;
      padding: var(--space-3);
      gap: 0;
    }

    .moment-visual--chat,
    .moment-visual--feed,
    .moment-visual--games {
      aspect-ratio: 4 / 3.1;
      min-height: 0;
    }

    .game-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
      width: 100%;
      align-content: center;
    }

    .game-tile {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 5px 7px;
      background: #fff;
      border-radius: var(--r-sm);
      border: 1px solid var(--border-subtle);
      font-size: 0.58rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.2;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .game-tile-icon {
      width: 24px;
      height: 24px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #fff;
    }

    .game-tile-icon--tod {
      background: #6c63ff;
    }

    .game-tile-icon--wyr {
      background: #8b5fbf;
    }

    .game-tile-icon--tot {
      background: #4ecdc4;
    }

    .game-tile-icon--ht {
      background: #ff6b6b;
    }

    .game-tile-icon--wi {
      background: #9c27b0;
    }

    .game-tile-icon--fp {
      background: #2196f3;
    }

    .game-tile-icon .material-symbols-rounded {
      font-size: 15px;
      font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
      line-height: 1;
    }

    .moment-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 0;
    }

    .moment-card p {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.58;
      margin: 0;
    }

    /* ── STATS BAR ── */
    .stats-bar-wrap {
      margin-bottom: clamp(4rem, 9vw, 6rem);
    }

    .stats-bar {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .stat-item {
      flex: 1;
      padding: var(--space-6) var(--space-5);
      text-align: center;
      border-right: 1px solid var(--border-subtle);
      transition: background 0.3s;
    }

    .stat-item:hover {
      background: rgba(124, 58, 237, 0.02);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-value {
      font-size: 1.55rem;
      font-weight: 800;
      letter-spacing: -.03em;
      color: var(--text);
      display: block;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: .7rem;
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    /* ── FEATURES (bento) ── */
    .features-section {
      padding: var(--section-y) 0 calc(var(--section-y) + 0.75rem);
    }

    .features-section .section-header {
      margin-bottom: clamp(2.25rem, 5vw, 3rem);
    }

    .features-bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: var(--space-4);
    }

    .feature-card {
      grid-column: span 3;
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-lg);
      padding: var(--space-6) var(--space-5);
      transition: border-color 0.35s var(--ease-out), transform 0.4s var(--ease-spring), box-shadow 0.35s;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .feature-card--wide {
      grid-column: span 6;
    }

    .feature-card:hover {
      border-color: rgba(124, 58, 237, 0.18);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .feature-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--r-md);
      background: var(--accent-soft);
      border: 1px solid rgba(124, 58, 237, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-4);
    }

    .feature-icon-wrap svg {
      fill: var(--accent-h);
    }

    .feature-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: var(--space-2);
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .feature-card p {
      font-size: var(--text-sm);
      color: var(--text-2);
      line-height: 1.6;
      flex: 1;
      margin: 0;
    }

    /* ── SECTION BLOCKS (prose, how it works, why different, FAQ) ── */
    .section-block {
      padding: 72px 0 80px;
      max-width: 680px;
    }

    .section-block--center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-block--center .section-prose {
      margin-left: auto;
      margin-right: auto;
    }

    .section-block h2 {
      font-size: clamp(1.35rem, 2.8vw, 1.55rem);
      font-weight: 800;
      letter-spacing: -.025em;
      color: var(--text);
      margin-bottom: 20px;
    }

    .section-block .section-prose {
      font-size: 1.02rem;
      color: var(--text-2);
      line-height: 1.78;
      margin-bottom: 0;
    }

    .cta-block {
      margin-top: 36px;
    }

    .how-steps {
      display: grid;
      gap: 28px;
      margin-bottom: 0;
    }

    .step-item {
      padding: 24px 0;
      border-bottom: 1px solid var(--border-subtle);
    }

    .step-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .step-item h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .step-item p {
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.68;
    }

    .why-different {
      padding: var(--section-y) 0 calc(var(--section-y) + 0.5rem);
    }

    .why-different .section-header {
      margin-bottom: clamp(2rem, 4vw, 2.75rem);
    }

    .why-grid {
      display: grid;
      gap: 28px;
      max-width: 640px;
      margin: 0 auto 40px;
    }

    .why-grid>div {
      background: var(--surface-2);
      border: 1px solid transparent;
      border-radius: 14px;
      padding: 26px 24px;
    }

    .why-grid h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .why-grid p {
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.68;
    }

    .faq-section {
      padding: var(--section-y) 0 calc(var(--section-y) + 0.5rem);
    }

    .faq-section .section-header {
      margin-bottom: var(--space-8);
    }

    .faq-list {
      max-width: 620px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border-subtle);
      padding: 0;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 1.35rem 0;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text);
      font-size: 1rem;
      font-weight: 700;
      text-align: left;
      font-family: inherit;
      transition: color .2s;
    }

    .faq-trigger:hover {
      color: var(--accent);
    }

    .faq-trigger:focus-visible {
      outline: 2px solid rgba(124, 58, 237, 0.45);
      outline-offset: 2px;
      border-radius: var(--r-sm);
    }

    .faq-trigger::after {
      content: '+';
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--muted);
      flex-shrink: 0;
      margin-left: 12px;
      transition: transform .25s;
    }

    .faq-item.open .faq-trigger::after {
      transform: rotate(45deg);
    }

    /* Accordion collapse only on the home page FAQ — not on /faq prose page */
    .faq-section .faq-a {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.68;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-section .faq-item.open .faq-a {
      max-height: 400px;
    }

    .faq-section .faq-a-inner {
      padding: 0 0 22px 0;
    }

    .faq-section .faq-a a {
      color: var(--accent-h);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .faq-section .cta-inline {
      margin-top: 40px;
    }

    /* How It Works - TapHey style */
    .how-section {
      padding: var(--section-y) 0 calc(var(--section-y) + 0.5rem);
    }

    .how-section .section-header {
      margin-bottom: clamp(2rem, 4vw, 2.75rem);
    }

    .how-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-5);
      max-width: 960px;
      margin: 0 auto;
    }

    .how-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
      box-shadow: var(--shadow-sm);
    }

    .how-card:hover {
      border-color: rgba(124, 58, 237, 0.2);
      transform: translateY(-3px);
      box-shadow: var(--shadow-float);
    }

    .how-card-icon-wrap {
      width: 48px;
      height: 48px;
      margin: 0 auto var(--space-4);
      border-radius: var(--r-md);
      background: var(--accent-soft);
      border: 1px solid rgba(124, 58, 237, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-h);
      transition: transform 0.35s var(--ease-out), background 0.35s;
    }

    .how-card:hover .how-card-icon-wrap {
      transform: scale(1.06);
      background: rgba(124, 58, 237, 0.12);
    }

    .how-card-icon-wrap svg {
      fill: currentColor;
      stroke: none;
    }

    .how-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: var(--space-3);
    }

    .how-card p {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.62;
      margin: 0;
    }

    /* Why Different - TapHey style cards */
    .why-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto 2.5rem;
    }

    .why-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 32px 26px;
      transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
      box-shadow: var(--shadow-sm);
    }

    .why-card:hover {
      border-color: rgba(124, 58, 237, 0.2);
      transform: translateY(-3px);
      box-shadow: var(--shadow-float);
    }

    .why-card-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--r-md);
      background: var(--accent-soft);
      border: 1px solid rgba(124, 58, 237, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-4);
      color: var(--accent-h);
    }

    .why-card-icon-wrap svg {
      fill: currentColor;
      stroke: none;
    }

    .why-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: var(--space-3);
    }

    .why-card p {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.65;
      margin: 0;
    }

    /* Safety section - TapHey style */
    .safety-section {
      padding: var(--section-y) 0 calc(var(--section-y) + 0.5rem);
    }

    .safety-section h2 {
      text-align: center;
      font-size: clamp(1.4rem, 2.8vw, 1.6rem);
      font-weight: 700;
      letter-spacing: -.03em;
      color: var(--text);
      margin-bottom: 48px;
    }

    .safety-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 640px;
      margin: 0 auto;
    }

    .safety-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 28px 26px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: border-color .25s, box-shadow .25s;
      box-shadow: var(--shadow-sm);
    }

    .safety-card:hover {
      border-color: rgba(124, 58, 237, 0.2);
      box-shadow: var(--shadow-card);
    }

    .safety-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--r-md);
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--accent-h);
    }

    .safety-icon-wrap svg {
      stroke: currentColor;
      fill: none;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .safety-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .safety-card p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── BLOG SECTION ── */
    .blog-section {
      padding: var(--section-y) 0 calc(var(--section-y) + 0.5rem);
    }

    .blog-section .section-header {
      margin-bottom: var(--space-6);
      text-align: center;
    }

    .blog-section-sub {
      text-align: center;
      font-size: var(--text-sm);
      color: var(--muted);
      margin: 0 auto 2.25rem;
      max-width: 480px;
      line-height: 1.65;
    }

    .blog-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .blog-home-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      box-shadow: var(--shadow-sm);
    }

    .blog-home-card:hover {
      border-color: rgba(124, 58, 237, 0.22);
      transform: translateY(-3px);
      box-shadow: var(--shadow-float);
    }

    .blog-home-cover {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .blog-home-cover-ph {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, rgba(237, 233, 254, 0.9), rgba(248, 250, 252, 1));
    }

    .blog-home-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-home-title {
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.35;
      color: var(--text);
    }

    .blog-home-excerpt {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 12px;
    }

    .blog-home-read {
      font-size: .78rem;
      font-weight: 700;
      color: var(--accent-h);
    }

    .blog-home-loading {
      font-size: .84rem;
      color: var(--muted);
      padding: 20px 0;
    }

    .blog-home-card--placeholder {
      grid-column: 1 / -1;
    }

    .view-more-btn {
      display: inline-block;
      padding: 13px 32px;
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      color: var(--text);
      font-size: .86rem;
      font-weight: 600;
      transition: transform 0.25s var(--ease-out), border-color 0.25s, color 0.25s, box-shadow 0.25s;
      min-height: 46px;
      line-height: 1.3;
      box-shadow: var(--shadow-sm);
    }

    .view-more-btn:hover {
      border-color: rgba(124, 58, 237, 0.35);
      color: var(--accent-h);
      transform: translateY(-1px);
      box-shadow: var(--shadow-card);
    }

    @media (max-width: 720px) {
      .blog-cards-grid {
        grid-template-columns: 1fr;
      }

      .blog-section {
        padding: 64px 0 72px;
      }
    }

    /* Personality -  link card (not a second app-store block) */
    .personality-section {
      padding: var(--section-y) 0;
    }

    .personality-card {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      padding: var(--space-6) var(--space-8);
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(251, 191, 36, 0.04) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-card);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    }

    .personality-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-float);
    }

    .personality-card-copy {
      flex: 1;
      min-width: 200px;
    }

    .personality-card-copy h2 {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 1.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: var(--space-2);
      color: var(--text);
    }

    .personality-card-copy p {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }

    .personality-card-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-3) var(--space-5);
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--accent-h);
      background: var(--surface);
      border: 1px solid rgba(124, 58, 237, 0.2);
      border-radius: 999px;
      transition: background 0.25s, border-color 0.25s, gap 0.25s var(--ease-out);
      white-space: nowrap;
    }

    .personality-card-link:hover {
      background: rgba(124, 58, 237, 0.06);
      border-color: rgba(124, 58, 237, 0.35);
      gap: var(--space-3);
    }

    .personality-card-link svg {
      flex-shrink: 0;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── DOWNLOAD CTA ── */
    .cta-section {
      padding: 0 0 clamp(4rem, 9vw, 6rem);
    }

    .cta-card {
      background: linear-gradient(165deg, #fdfcff 0%, #ffffff 45%, #f8fafc 100%);
      border: 1px solid rgba(124, 58, 237, 0.1);
      border-radius: var(--r-xl);
      padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.25rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--space-4);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-float);
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: min(520px, 100%);
      height: 70%;
      background: radial-gradient(ellipse, rgba(167, 139, 250, 0.12) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-app-icon {
      width: 72px;
      height: 72px;
      border-radius: var(--r-lg);
      object-fit: cover;
      flex-shrink: 0;
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
      position: relative;
      z-index: 1;
    }

    .cta-text {
      position: relative;
      z-index: 1;
      max-width: 380px;
    }

    .cta-text h2 {
      font-size: clamp(1.25rem, 2.2vw, 1.45rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.2;
      margin-bottom: var(--space-2);
      color: var(--text);
      font-family: var(--font-display);
    }

    .cta-text p {
      font-size: 0.8125rem;
      color: var(--muted);
      line-height: 1.6;
      letter-spacing: 0.01em;
      margin: 0;
    }

    .cta-store-pills {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: center;
      gap: 10px;
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 400px;
      margin: var(--space-1) auto 0;
    }

    .cta-store-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex: 1 1 160px;
      min-height: 48px;
      padding: 12px 20px;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      color: #fff;
      text-decoration: none;
      border-radius: 12px;
      background: linear-gradient(165deg, #2a2a30 0%, #141416 52%, #0a0a0c 100%);
      border: 1px solid rgba(255, 255, 255, 0.11);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.07) inset,
        0 6px 20px rgba(15, 23, 42, 0.18);
      transition: transform 0.22s var(--ease-out), box-shadow 0.22s, border-color 0.22s;
    }

    .cta-store-pill:hover {
      transform: translateY(-2px);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 12px 32px rgba(15, 23, 42, 0.22);
      color: #fff;
    }

    .cta-store-pill:active {
      transform: translateY(0);
    }

    .cta-store-pill:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .cta-store-pill--play {
      color: #fff;
      background: linear-gradient(165deg, #252830 0%, #12141a 52%, #0a0c10 100%);
      border: 1px solid rgba(52, 211, 153, 0.38);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 6px 20px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(16, 185, 129, 0.12);
    }

    .cta-store-pill--play:hover {
      color: #fff;
      border-color: rgba(52, 211, 153, 0.55);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 36px rgba(15, 23, 42, 0.24),
        0 0 24px rgba(16, 185, 129, 0.15);
    }

    .cta-store-pill svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      opacity: 0.98;
    }

    /* ── FOOTER ── */
    .footer {
      background: #fff;
      border-top: 1px solid var(--border-subtle);
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 52px 28px 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      object-fit: cover;
      margin-bottom: 10px;
      display: block;
    }

    .footer-brand-name {
      font-weight: 700;
      font-size: .9rem;
      margin-bottom: 4px;
    }

    .footer-brand-tagline {
      font-size: .76rem;
      color: var(--muted);
    }

    .footer-col-title {
      font-size: .62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .footer-link {
      display: block;
      color: var(--text-2);
      font-size: .82rem;
      padding: 6px 0;
      transition: color .2s;
    }

    .footer-link:hover {
      color: var(--accent-h);
    }

    .footer-bottom {
      border-top: 1px solid var(--border-subtle);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: .73rem;
      color: var(--muted);
    }

    .footer-legal {
      display: flex;
      gap: 16px;
    }

    .footer-legal a {
      color: var(--muted);
      font-size: .73rem;
      transition: color .2s;
    }

    .footer-legal a:hover {
      color: var(--text-2);
    }

    /* ── SECTION RHYTHM & REVEAL ── */
    .section--elevated {
      position: relative;
      isolation: isolate;
    }

    .section--elevated::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      top: 0;
      bottom: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.5) 100%);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      pointer-events: none;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .features-bento .feature-card {
        grid-column: span 6;
      }

      .features-section {
        padding: 64px 0 72px;
      }

      .moments-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: var(--space-6);
      }

      .how-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand-col {
        grid-column: 1 / -1;
      }

      .section-block {
        padding: 56px 0 64px;
      }

      .why-different,
      .how-section,
      .safety-section {
        padding: 64px 0 72px;
      }

      .personality-section {
        padding: 64px 0 72px;
      }

      .faq-section {
        padding: 64px 0 72px;
      }

      .stats-bar-wrap {
        margin-bottom: 64px;
      }

      .product-moments {
        padding-bottom: 64px;
      }
    }

    @media (max-width: 720px) {
      .how-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .why-cards {
        grid-template-columns: 1fr;
      }

      .safety-cards {
        grid-template-columns: 1fr;
      }

      .how-section,
      .safety-section {
        padding: 64px 0 72px;
      }

      .hero {
        flex-direction: column;
        padding: 48px 0 56px;
        gap: 40px;
        text-align: center;
      }

      .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-title {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-sub {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }

      .store-btns.hero-cta {
        justify-content: center;
      }

      .hero-rating {
        justify-content: center;
      }

      .hero-visual {
        width: 100%;
        order: -1;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
      }

      .stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .stats-bar-wrap {
        margin-bottom: 56px;
      }

      .stat-item {
        border-right: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
        padding: 20px 16px;
      }

      .stat-item:nth-child(even) {
        border-right: none;
      }

      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
        border-bottom: none;
      }

      .section-block--center .section-prose {
        text-align: center;
      }

      .how-steps {
        gap: 20px;
      }

      .step-item {
        padding: 20px 0;
      }
    }

    @media (max-width: 520px) {
      .nav {
        padding: 0 16px;
      }

      .wrap {
        padding: 0 16px;
      }

      .hero {
        padding: 40px 0 48px;
        gap: 32px;
      }

      .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
      }

      .hero-sub {
        font-size: .98rem;
      }

      .store-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        align-items: stretch;
      }

      .store-btns .store-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
      }

      .store-btns.cta-inline {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-visual {
        order: -1;
        max-width: 300px;
      }

      .features-bento .feature-card,
      .features-bento .feature-card--wide {
        grid-column: span 12;
      }

      .features-section {
        padding: 48px 0 56px;
      }

      .feature-card {
        padding: 24px 20px;
      }

      .section-block {
        padding: 44px 0 52px;
      }

      .section-block h2 {
        font-size: 1.3rem;
      }

      .why-different {
        padding: 48px 0 56px;
      }

      .personality-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
      }

      .personality-card-link {
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }

      .why-cards {
        gap: 16px;
        margin-bottom: 32px;
      }

      .why-card {
        padding: 24px 20px;
      }

      .how-section,
      .safety-section {
        padding: 48px 0 56px;
      }

      .how-card {
        padding: 24px 18px;
      }

      .safety-card {
        padding: 24px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .faq-section {
        padding: 48px 0 56px;
      }

      .faq-section .section-heading {
        font-size: 1.3rem;
      }

      .faq-section .faq-item {
        padding: 18px 0;
      }

      .faq-section .faq-trigger {
        font-size: .95rem;
      }

      .faq-section .faq-a {
        font-size: .86rem;
      }

      .cta-section {
        padding: 0 0 64px;
      }

      .cta-card {
        padding: 32px 20px;
        border-radius: 22px;
        gap: 22px;
      }

      .cta-store-pills {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }

      .cta-store-pill {
        flex: none;
        width: 100%;
        justify-content: center;
      }

      .cta-app-icon {
        width: 68px;
        height: 68px;
        border-radius: 16px;
      }

      .cta-text h2 {
        font-size: 1.28rem;
      }

      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        row-gap: 0;
        margin-bottom: 24px;
      }

      .footer-brand-col {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-subtle);
      }

      .footer-brand-icon {
        margin-bottom: 0;
        width: 36px;
        height: 36px;
      }

      .footer-brand-name {
        font-size: .9rem;
      }

      .footer-brand-tagline {
        display: none;
      }

      .footer-col-title {
        font-size: .6rem;
        margin-bottom: 10px;
      }

      .footer-link {
        font-size: .8rem;
        padding: 6px 0;
      }

      .footer-inner {
        padding: 28px 16px 20px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding-top: 20px;
      }

      .footer-legal {
        justify-content: center;
      }

      .cta-card::before {
        display: none;
      }
    }

    /* Skip link */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      z-index: 9999;
      padding: 12px 20px;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      border-radius: 8px;
      transition: top .2s
    }

    .skip-link:focus {
      top: 16px;
      outline: 2px solid var(--accent-s);
      outline-offset: 2px
    }

    /* Secondary pages (about, FAQ, legal, etc.) */
    .prose-shell {
      padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(4.5rem, 11vw, 7rem)
    }

    .prose-page {
      max-width: 680px;
      margin: 0 auto
    }

    .prose-page h1 {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 4vw, 2.35rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.12;
      color: var(--text);
      margin-bottom: var(--space-5)
    }

    .prose-page .lead {
      font-size: clamp(0.9375rem, 1.2vw, 1rem);
      color: var(--text-2);
      line-height: 1.7;
      letter-spacing: -0.01em;
      margin-bottom: clamp(2.5rem, 6vw, 3.5rem)
    }

    .prose-page .meta-date {
      font-size: var(--text-xs);
      color: var(--muted);
      margin-bottom: var(--space-6)
    }

    .prose-page h2 {
      font-family: var(--font-display);
      font-size: 1.0625rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: clamp(2.5rem, 5vw, 3rem) 0 var(--space-3);
      padding-top: var(--space-5);
      border-top: 1px solid var(--border-subtle)
    }

    .prose-page h2:first-of-type {
      margin-top: var(--space-6);
      border-top: none;
      padding-top: 0
    }

    .prose-page p,
    .prose-page li {
      font-size: var(--text-sm);
      color: var(--text-2);
      line-height: 1.75;
      margin-bottom: var(--space-4)
    }

    .prose-page ul,
    .prose-page ol {
      padding-left: 1.25rem;
      margin-bottom: var(--space-4)
    }

    .prose-page li {
      margin-bottom: var(--space-2)
    }

    .prose-page a {
      color: var(--accent-h);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 600
    }

    .prose-page a:hover {
      color: var(--accent)
    }

    .prose-page .cta-section a,
    .prose-page .prose-inline-cta a,
    .prose-page .cta-card a {
      text-decoration: none;
      font-weight: 700;
    }

    .prose-page .cta-store-pill,
    .prose-page .cta-store-pill:hover,
    .prose-page .cta-store-pill:focus,
    .prose-page .cta-store-pill:focus-visible {
      color: #fff;
      text-decoration: none;
    }

    .prose-page .cta-store-pill svg {
      fill: currentColor;
      color: #fff;
    }

    .prose-page strong {
      color: var(--text);
      font-weight: 600
    }

    .prose-faq .faq-list {
      margin-top: var(--space-6)
    }

    .prose-faq .faq-item {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-lg);
      padding: var(--space-5);
      margin-bottom: var(--space-3);
      box-shadow: var(--shadow-sm)
    }

    .prose-faq .faq-q {
      font-family: var(--font-display);
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--text);
      margin-bottom: var(--space-2)
    }

    .prose-faq .faq-a {
      font-size: var(--text-sm);
      color: var(--text-2);
      line-height: 1.7;
      max-height: none;
      overflow: visible
    }

    .prose-faq .faq-a a {
      color: var(--accent-h);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px
    }

    .prose-faq .faq-a a:hover {
      color: var(--accent)
    }

    .btn-row {
      display: flex;
      gap: var(--space-3);
      flex-wrap: wrap;
      margin-top: var(--space-8)
    }

    .btn-prose {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: 12px 22px;
      border-radius: var(--r-md);
      font-size: var(--text-sm);
      font-weight: 700;
      text-decoration: none;
      border: 1px solid var(--border-subtle);
      background: var(--surface);
      color: var(--text);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      box-shadow: var(--shadow-sm)
    }

    .btn-prose:hover {
      transform: translateY(-1px);
      border-color: rgba(124, 58, 237, 0.25);
      box-shadow: var(--shadow-card)
    }

    .btn-prose--primary {
      background: linear-gradient(155deg, #8b5cf6 0%, #7c3aed 52%, #6d28d9 100%);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28)
    }

    .btn-prose--primary:hover {
      color: #fff
    }

    .btn-prose svg {
      flex-shrink: 0
    }

    .btn-prose--primary svg {
      fill: #fff
    }

    .inner-page-main {
      min-height: 50vh
    }

    .prose-inline-cta {
      padding: clamp(2.25rem, 5vw, 3.25rem) 0 0;
      margin-top: clamp(2.5rem, 6vw, 3.5rem)
    }

    .prose-inline-cta .cta-card {
      max-width: 100%
    }

    .prose-faq .faq-item:last-child {
      border-bottom: none
    }

    /* Blog landing (topics grid) */
    .blog-hero {
      text-align: center;
      padding: clamp(2.75rem, 7vw, 4rem) 0 clamp(1.75rem, 4vw, 2.5rem)
    }

    .blog-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-2) var(--space-4);
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: 999px;
      font-size: var(--text-xs);
      font-weight: 600;
      color: var(--text-2);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: var(--space-5);
      box-shadow: var(--shadow-sm)
    }

    .blog-title {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 4vw, 2.65rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.12;
      color: var(--text);
      margin-bottom: var(--space-4)
    }

    .blog-sub {
      font-size: var(--text-base);
      color: var(--muted);
      max-width: 28rem;
      margin: 0 auto var(--space-8);
      line-height: 1.65
    }

    .topics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
      padding-bottom: clamp(3rem, 8vw, 5rem)
    }

    .topic-card {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-lg);
      padding: var(--space-5) var(--space-4);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.25s var(--ease-out), border-color 0.25s, transform 0.25s var(--ease-out)
    }

    .topic-card:hover {
      box-shadow: var(--shadow-card);
      border-color: rgba(124, 58, 237, 0.15);
      transform: translateY(-2px)
    }

    .topic-icon {
      font-size: 1.5rem;
      margin-bottom: var(--space-3);
      display: block
    }

    .topic-card h3 {
      font-family: var(--font-display);
      font-size: var(--text-sm);
      font-weight: 700;
      color: var(--text);
      margin-bottom: var(--space-2)
    }

    .topic-card p {
      font-size: var(--text-sm);
      color: var(--text-2);
      line-height: 1.6;
      margin: 0
    }

    .topic-card a {
      color: var(--accent-h);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px
    }

    .topic-card a:hover {
      color: var(--accent)
    }

    .help-topic {
      background: var(--surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--r-lg);
      padding: var(--space-5);
      margin-bottom: var(--space-4);
      box-shadow: var(--shadow-sm)
    }

    .help-topic h3 {
      font-family: var(--font-display);
      font-size: var(--text-base);
      font-weight: 700;
      color: var(--text);
      margin-bottom: var(--space-2)
    }

    .help-topic p {
      font-size: var(--text-sm);
      color: var(--text-2);
      line-height: 1.65;
      margin: 0
    }

    @media (max-width: 900px) {
      .topics-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media (max-width: 520px) {
      .topics-grid {
        grid-template-columns: 1fr
      }

      .btn-row {
        flex-direction: column
      }

      .btn-prose {
        justify-content: center
      }
    }