    /* ── Fonts ───────────────────────────────────────────────── */
    @font-face {
      font-family: 'FH Total Display';
      src: url('fonts/fh-total-display/FHTotalDisplay-Regular.woff2') format('woff2'),
           url('fonts/fh-total-display/FHTotalDisplay-Regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    /* Antialiased smoothing for large FH Total Display headings only.
       Smaller usages (act-card-title, hiw-row-title) stay on default
       subpixel rendering for legibility. */
    .hero-headline,
    .feature-intro-heading,
    .hiw-heading,
    .activities-heading,
    .cta-heading,
    .faq-heading {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    @font-face {
      font-family: 'Figtree';
      src: url('fonts/figtree/Figtree-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Figtree';
      src: url('fonts/figtree/Figtree-Medium.woff2') format('woff2');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Figtree';
      src: url('fonts/figtree/Figtree-SemiBold.woff2') format('woff2');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    /* ── Brand tokens ────────────────────────────────────────── */
    :root {
      --blush:      #F7BDE3;
      --pink:       #E57CBE;
      --orchid:     #7F429D;
      --violet:     #4B3354;
      --oatmilk:    #F4EBE2;
      --cantaloupe: #F8CC95;
      --peach:      #F39253;
      --coral:      #EF6E47;

      --bg:         #F4EBE2;   /* oatmilk */
      --text:       #4B3354;   /* violet */
      --text-soft:  #5C3470;

      --grad-accent: linear-gradient(100deg, var(--peach) 0%, var(--pink) 45%, var(--orchid) 100%);
    }

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

    .content-wrap {
      max-width: 2200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    html {
      scroll-behavior: smooth;
      /* clip (not hidden) tames horizontal overflow without creating a
         scroll container — keeps position:fixed viewport-relative on iOS */
      overflow-x: clip;
      background: var(--bg);
    }

    body {
      font-family: 'Figtree', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      /* Positioning context for the absolute .bg-canvas orb layer below,
         so it can stretch to the full document height. */
      position: relative;
    }

    /* ── Orb keyframes ───────────────────────────────────────── */
    @keyframes drift-a {
      0%   { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(220px, -170px) scale(1.18); }
      66%  { transform: translate(-140px, 190px) scale(0.88); }
      100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes drift-b {
      0%   { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(-240px, 160px) scale(0.86); }
      66%  { transform: translate(170px, -200px) scale(1.20); }
      100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes drift-c {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(200px, 240px) scale(1.16); }
      100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes drift-d {
      0%   { transform: translate(0, 0) scale(1); }
      40%  { transform: translate(-190px, -220px) scale(0.84); }
      80%  { transform: translate(160px, 140px) scale(1.16); }
      100% { transform: translate(0, 0) scale(1); }
    }

    /* ── Background orbs ─────────────────────────────────────── */
    /* Absolutely positioned so it spans the ENTIRE document, not just one
       screen. It scrolls with the page, so every section keeps its orb
       colour — and there's no viewport-fixed layer for mobile Safari to
       drop past the first screen (the cause of the old bare strips). */
    .bg-canvas {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    /* Noise overlay */
    .bg-canvas::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 180px 180px;
      opacity: 0.22;
      mix-blend-mode: overlay;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      will-change: transform;
    }

    /* Orbs spread top → bottom (top is a % of the full document) so every
       section keeps its colour. Three blush orbs carry the dominant pink. */
    .orb-1  { width: 700px; height: 600px; background: var(--blush);      opacity: 0.44; top: -4%; right: -12%; animation: drift-a 24s ease-in-out infinite; }
    .orb-2  { width: 320px; height: 320px; background: var(--coral);      opacity: 0.20; top: 3%;  left: -9%;   animation: drift-b 19s ease-in-out infinite reverse; }
    .orb-3  { width: 400px; height: 370px; background: var(--pink);       opacity: 0.28; top: 9%;  left: 20%;   animation: drift-a 27s ease-in-out infinite reverse; }
    .orb-4  { width: 470px; height: 450px; background: var(--orchid);     opacity: 0.22; top: 18%; right: -5%;  animation: drift-b 25s ease-in-out infinite; }
    .orb-5  { width: 560px; height: 460px; background: var(--cantaloupe); opacity: 0.34; top: 29%; left: -10%;  animation: drift-c 23s ease-in-out infinite; }
    .orb-6  { width: 450px; height: 410px; background: var(--peach);      opacity: 0.30; top: 39%; right: 2%;   animation: drift-d 28s ease-in-out infinite; }
    .orb-7  { width: 690px; height: 590px; background: var(--blush);      opacity: 0.44; top: 49%; right: -11%; animation: drift-a 26s ease-in-out infinite; }
    .orb-8  { width: 440px; height: 420px; background: var(--pink);       opacity: 0.28; top: 61%; left: -7%;   animation: drift-b 22s ease-in-out infinite reverse; }
    .orb-9  { width: 510px; height: 430px; background: var(--cantaloupe); opacity: 0.32; top: 72%; right: -7%;  animation: drift-c 25s ease-in-out infinite; }
    .orb-10 { width: 640px; height: 560px; background: var(--blush);      opacity: 0.42; top: 83%; left: 0%;    animation: drift-d 27s ease-in-out infinite; }
    .orb-11 { width: 470px; height: 410px; background: var(--peach);      opacity: 0.28; top: 94%; right: 6%;   animation: drift-a 23s ease-in-out infinite reverse; }

    /* Safari chrome masking strip — mobile only */
    #safari-chrome-masking { display: none; }
    @media (max-width: 860px) {
      #safari-chrome-masking { display: block; }
    }

    /* ── Nav ─────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: clamp(20px, 2.2vw, 56px) clamp(20px, 5vw, 128px);
      max-width: 2200px;
      margin: 0 auto;
      /* Promote to its own compositor layer so content scrolling beneath
         this fixed bar repaints cleanly — without this, iOS Safari leaves
         a ghost/smear of the content as it passes under the nav. */
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .nav-wordmark img {
      height: clamp(20px, 1.8vw, 36px);
      width: auto;
      display: block;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-store,
    .btn-primary,
    .btn-ghost {
      position: relative;
      overflow: hidden;
    }

    .btn-store::after,
    .btn-primary::after,
    .btn-ghost::after {
      content: '';
      position: absolute;
      inset: 0;
      transform: translateX(-130%) skewX(-20deg);
      pointer-events: none;
    }

    .btn-primary::after,
    .btn-store-fill::after {
      background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.40) 50%, transparent 80%);
    }

    .btn-ghost::after,
    .btn-store-outline::after {
      background: linear-gradient(100deg, transparent 15%, rgba(255,255,255,0.80) 50%, transparent 85%);
    }

    .btn-store:hover::after,
    .btn-primary:hover::after,
    .btn-ghost:hover::after {
      animation: btn-shimmer 1.1s cubic-bezier(0.1, 0, 0.3, 1) forwards;
    }

    .btn-store {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      height: 40px;
      border-radius: 100px;
      font-family: 'Figtree', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.2s, filter 0.3s;
      border: none;
    }

    .btn-store:hover {
      transform: translateY(-1px);
      filter: brightness(1.1);
    }

    .btn-store-outline {
      background: rgba(255, 255, 255, 0.40);
      border: 1px solid rgba(255, 255, 255, 0.50);
      color: #4B3354;
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      box-shadow: 0 14px 34px rgba(94, 47, 132, 0.10);
    }

    .btn-store-fill {
      background: rgba(127, 66, 157, 0.90);
      border: 1px solid rgba(255, 255, 255, 0.20);
      color: #fff;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
      box-shadow: 0 14px 34px rgba(94, 47, 132, 0.10);
    }

    /* ── Hero ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: clamp(32px, 3.75vw, 96px);
      padding: clamp(48px, 6.25vw, 160px) clamp(20px, 5vw, 128px) clamp(60px, 7.8vw, 200px);
      min-height: calc(100vh - 96px);
    }

    @media (min-width: 901px) {
      .hero {
        min-height: 0;
        height: 80vh;
        padding-top: clamp(120px, 10vw, 200px);
        padding-bottom: clamp(40px, 4vw, 96px);
      }
    }

    /* ── Hero text ───────────────────────────────────────────── */
    .hero-text {
      max-width: clamp(360px, 40vw, 640px);
    }

    @keyframes card-shimmer-idle {
      0%    { transform: translateX(-150%) skewX(-20deg); }
      18%   { transform: translateX(350%) skewX(-20deg); }
      18.1%, 100% { transform: translateX(-150%) skewX(-20deg); }
    }

    @keyframes btn-shimmer {
      0%   { transform: translateX(-130%) skewX(-20deg); }
      100% { transform: translateX(300%) skewX(-20deg); }
    }

    @keyframes sparkle-spin {
      0%   { transform: rotate(0deg); }
      25%  { transform: rotate(375deg); }
      32%  { transform: rotate(350deg); }
      38%  { transform: rotate(360deg); }
      100% { transform: rotate(360deg); }
    }

    .sparkle-icon {
      animation: sparkle-spin 4.5s ease-in-out infinite;
    }


    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 24px;
    }


    .hero-headline {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: clamp(48px, 5.5vw, 70px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--violet);
      margin-bottom: clamp(16px, 1.875vw, 48px);
    }

    .hero-headline em {
      font-style: normal;
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      padding: 0.05em 0.12em 0.15em;
      margin-left: -0.05em;
      display: inline-block;
    }

    .hero-sub {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(16px, 1.4vw, 32px);
      font-weight: 400;
      line-height: 1.45;
      color: var(--text-soft);
      margin-bottom: clamp(28px, 3.1vw, 80px);
      max-width: 100%;
      text-wrap: balance;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 24px;
      height: 56px;
      background: rgba(127, 66, 157, 0.90);
      border: 1px solid rgba(255, 255, 255, 0.20);
      color: #fff;
      border-radius: 100px;
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
      box-shadow: 0 14px 34px rgba(94, 47, 132, 0.10);
      text-decoration: none;
      transition: transform 0.2s, filter 0.3s;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.15);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 24px;
      height: 56px;
      background: rgba(255, 255, 255, 0.40);
      border: 1px solid rgba(255, 255, 255, 0.50);
      border-radius: 100px;
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      box-shadow: 0 14px 34px rgba(94, 47, 132, 0.10);
      color: #4B3354;
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      transition: transform 0.2s, filter 0.3s;
      cursor: pointer;
    }

    .btn-ghost:hover {
      transform: translateY(-1px);
      filter: brightness(1.08);
    }

    .hero-social-proof {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-avatars {
      display: flex;
    }

    .hero-avatars span {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2.5px solid var(--bg);
      background: var(--blush);
      margin-left: -10px;
      display: block;
      overflow: hidden;
    }

    .hero-avatars span:first-child { margin-left: 0; }

    .hero-avatars span:nth-child(1) { background: linear-gradient(135deg, var(--blush), var(--pink)); }
    .hero-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--cantaloupe), var(--peach)); }
    .hero-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--orchid), var(--violet)); }
    .hero-avatars span:nth-child(4) { background: linear-gradient(135deg, var(--peach), var(--coral)); }

    .hero-proof-text {
      font-size: 14px;
      color: var(--text-soft);
      line-height: 1.4;
    }

    .hero-proof-text strong {
      color: var(--violet);
      font-weight: 600;
    }

    /* ── Hero visual ─────────────────────────────────────────── */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .orbit-stage {
      position: relative;
      width: 100%;
      max-width: clamp(320px, 46vw, 1100px);
      aspect-ratio: 1;
    }

    .orbit-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.8);
      pointer-events: none;
    }

    .orbit-ring-inner { width: 57.5%; height: 57.5%; }
    .orbit-ring-outer { width: 86.7%; height: 86.7%; }

    .orbit-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 23%; height: 23%;
      background: rgba(255, 255, 255, 0.40);
      border: 1px solid rgba(255, 255, 255, 0.50);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 10;
    }

    .orbit-center svg.orbit-center-r { width: 29%; height: auto; }

    .orbit-center-cta { display: none; text-decoration: none; color: var(--violet); }

    .orbit-center-cta-label {
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--violet);
    }

    .orbit-center-cta-chevron {
      width: 9px;
      height: 6px;
      color: var(--violet);
      animation: orbit-cta-chevron 1.6s ease-in-out infinite;
    }

    @keyframes orbit-cta-chevron {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50%      { transform: translateY(6px); opacity: 1; }
    }

    .orbit-node {
      position: absolute;
      width: 12.5%;
      height: 12.5%;
      left: 50%;
      top: 50%;
      z-index: 6;
      will-change: transform;
    }

    .orbit-node-avatar {
      width: 7.7%;
      height: 7.7%;
    }

    .orbit-content {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      pointer-events: none;
      user-select: none;
      animation: orbit-hover 3.6s ease-in-out infinite;
    }

    @keyframes orbit-hover {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-3%); }
    }

    /* Stagger floats so they don't bob in sync */
    .orbit-node:nth-child(1) .orbit-content { animation-delay: 0s;     animation-duration: 3.4s; }
    .orbit-node:nth-child(2) .orbit-content { animation-delay: -0.7s;  animation-duration: 4.0s; }
    .orbit-node:nth-child(3) .orbit-content { animation-delay: -1.4s;  animation-duration: 3.6s; }
    .orbit-node:nth-child(4) .orbit-content { animation-delay: -2.1s;  animation-duration: 3.8s; }
    .orbit-node:nth-child(5) .orbit-content { animation-delay: -0.4s;  animation-duration: 4.2s; }
    .orbit-node:nth-child(6) .orbit-content { animation-delay: -1.7s;  animation-duration: 3.5s; }
    .orbit-node:nth-child(7) .orbit-content { animation-delay: -2.6s;  animation-duration: 3.9s; }
    .orbit-node:nth-child(8) .orbit-content { animation-delay: -1.1s;  animation-duration: 3.7s; }

    .orbit-node-avatar .orbit-content {
      border-radius: 50%;
      border: 2.5px solid rgba(255,255,255,0.95);
      box-shadow: 0 4px 18px rgba(68,3,84,0.13);
      object-fit: cover;
    }

    img.orbit-content {
      filter: drop-shadow(0 4px 10px rgba(68,3,84,0.16));
    }

    .orbit-node-avatar img.orbit-content {
      filter: none;
    }

    /* ── Responsive ──────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
        padding-top: clamp(140px, 30vw, 200px);
      }

      .hero-text {
        max-width: 100%;
        text-align: center;
      }

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

      .hero-social-proof {
        justify-content: center;
      }

      .hero-visual {
        order: 1;
        margin-top: clamp(4px, 1vw, 12px);
        margin-bottom: clamp(-160px, -20vw, -80px);
        margin-left: calc(-1 * clamp(20px, 5vw, 128px));
        margin-right: calc(-1 * clamp(20px, 5vw, 128px));
        overflow: hidden;
        align-self: stretch;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 90%);
        mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 90%);
      }

      .orbit-center-r { display: none; }
      .orbit-center-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }
      .orbit-center {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .orbit-stage {
        max-width: none;
        width: 210vw;
        margin: 0 auto;
      }

      .orbit-node-avatar { width: 10.5%; height: 10.5%; }

      .hero-eyebrow { margin-bottom: 12px; }

      .hero-ctas { display: none; }

      .hero-social-proof { display: none; }

      .hero { padding-bottom: 30px; }
      .hiw { padding-top: 40px; }

      .hero-headline { font-size: clamp(39px, 5.5vw, 70px); }

      .hero-sub { margin-bottom: 0; padding: 0; }
    }

    @media (max-width: 480px) {
      .nav-actions .btn-store-outline {
        display: none;
      }
    }
    /* ── How it works v2 ────────────────────────────────────── */
    .hiw {
      padding: clamp(80px, 10vw, 180px) 10% clamp(50px, 6vw, 110px) clamp(20px, 3vw, 64px);
    }

    .hiw-inner {
      display: grid;
      grid-template-columns: 9fr 11fr;
      gap: clamp(0px, 0.15vw, 4px);
      align-items: center;
    }

    .hiw-header {
      margin-bottom: clamp(30px, 3vw, 48px);
    }

    .hiw-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 20px;
    }

    .hiw-heading {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: clamp(36px, 4vw, 60px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--violet);
    }

    .hiw-rows {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    @media (min-width: 861px) {
      .hiw-row { cursor: default; }
    }

    .hiw-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: clamp(16px, 2vw, 24px) clamp(16px, 2vw, 24px);
      border-radius: 20px;
      cursor: pointer;
      transition: background 0.25s, box-shadow 0.25s;
      position: relative;
    }

    .hiw-row:hover,
    .hiw-row.is-active {
      background: rgba(255,255,255,0.55);
      box-shadow: 0 4px 24px rgba(94,47,132,0.08);
    }

    .hiw-row-icon {
      width: clamp(44px, 4vw, 60px);
      height: clamp(44px, 4vw, 60px);
      flex-shrink: 0;
      filter: drop-shadow(0 4px 10px rgba(68,3,84,0.15));
    }

    .hiw-row-text {
      flex: 1;
    }

    .hiw-row-num {
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2px;
    }

    .hiw-row-title {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: clamp(18px, 1.8vw, 24px);
      color: var(--violet);
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .hiw-row-body {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(16px, 1vw, 17px);
      color: var(--text-soft);
      line-height: 1.45;
    }

    .hiw-row-arrow {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      opacity: 0;
      transition: opacity 0.2s, transform 0.2s;
      color: var(--orchid);
    }

    .hiw-row.is-active .hiw-row-arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    /* Phone mockup */
    .hiw-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      order: -1;
    }

    /* ── Shared phone mockup ─────────────────────────────────── */
    .phone-outer {
      position: relative;
      width: clamp(220px, 22vw, 320px);
      aspect-ratio: 9 / 19.5;
      border-radius: clamp(32px, 3.5vw, 48px);
      box-shadow:
        0 0 0 14px rgba(255,255,255,0.45),
        0 0 0 16px rgba(255,255,255,0.15),
        0 32px 80px rgba(68,3,84,0.30),
        0 8px 24px rgba(68,3,84,0.20);
    }

    .phone-outer::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
      pointer-events: none;
      z-index: 10;
    }

    .phone-inner {
      position: absolute;
      inset: 0;
      background: #1a0a2e;
      clip-path: inset(0 round clamp(32px, 3.5vw, 48px));
      transform: translateZ(0);
    }

    .hiw-screen {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .hiw-screen.is-active {
      opacity: 1;
    }

    .hiw-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    @media (max-width: 860px) {
      .hiw {
        padding-left: 20px;
        padding-right: 20px;
      }
      .hiw-inner {
        grid-template-columns: 1fr;
      }
      .hiw-visual {
        display: none;
      }
      .hiw-eyebrow {
        margin-bottom: 10px;
      }
      .hiw-mobile-variant .hiw-rows {
        gap: 12px;
      }
      .activities-header {
        margin-bottom: clamp(6px, 0.7vw, 12px);
      }
      .hiw-mobile-variant .hiw-header {
        margin-bottom: clamp(20px, 2vw, 32px);
      }
      .hiw-mobile-variant .hiw-row {
        background: rgba(255,255,255,0.55);
        border: 1px solid rgba(255,255,255,0.80);
        box-shadow: 0 4px 24px rgba(94,47,132,0.08);
        cursor: default;
        overflow: hidden;
      }
      .hiw-mobile-variant .hiw-row-arrow {
        display: none;
      }
      .hiw-mobile-variant .hiw-row.shimmer-off::after {
        animation: none;
      }
      .hiw-mobile-variant .hiw-row::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.38) 50%, transparent 80%);
        transform: translateX(-150%) skewX(-20deg);
        pointer-events: none;
        will-change: transform;
        animation: card-shimmer-idle 6s cubic-bezier(0.1, 0, 0.3, 1) infinite;
        animation-delay: var(--shimmer-delay, 0s);
      }
    }

    /* Screen overlay */
    .hiw-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(68, 3, 84, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .hiw-overlay.is-visible {
      display: flex;
    }

    .hiw-overlay.is-open {
      opacity: 1;
      pointer-events: all;
    }

    .hiw-overlay-phone {
      position: relative;
      width: min(calc(100vw - 96px), 500px);
      border-radius: clamp(32px, 4vw, 48px);
      overflow: hidden;
      transform: translateY(24px) scale(0.96);
      transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
      box-shadow:
        0 0 0 10px rgba(255,255,255,0.45),
        0 0 0 12px rgba(255,255,255,0.10),
        0 40px 80px rgba(68,3,84,0.40);
      transform: translateZ(0);
    }

    .hiw-overlay.is-open .hiw-overlay-phone {
      transform: translateY(0) scale(1);
    }

    .hiw-overlay-phone img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hiw-overlay-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      z-index: 1;
    }

    /* ── Persistent viewport edge blurs ──────────────────────── */
    .edge-blur {
      position: fixed;
      left: 0;
      right: 0;
      height: 180px;
      z-index: 50;
      pointer-events: none;
    }
    .edge-blur-top    { top: 0; }
    .edge-blur-bottom { bottom: 0; }

    .edge-blur > span { position: absolute; inset: 0; }

    /* Reduced to 3 visible layers per side (was 5). Spans 4 & 5 are inert. */
    .edge-blur-top > span:nth-child(1) { backdrop-filter: blur(2px);  -webkit-backdrop-filter: blur(2px);  mask-image: linear-gradient(180deg, #000 0%, transparent 100%); -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%); }
    .edge-blur-top > span:nth-child(2) { backdrop-filter: blur(6px);  -webkit-backdrop-filter: blur(6px);  mask-image: linear-gradient(180deg, #000 0%, transparent 60%);  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 60%);  }
    .edge-blur-top > span:nth-child(3) { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); mask-image: linear-gradient(180deg, #000 0%, transparent 25%);  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 25%);  }

    .edge-blur-bottom > span:nth-child(1) { backdrop-filter: blur(2px);  -webkit-backdrop-filter: blur(2px);  mask-image: linear-gradient(0deg, #000 0%, transparent 100%); -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 100%); }
    .edge-blur-bottom > span:nth-child(2) { backdrop-filter: blur(6px);  -webkit-backdrop-filter: blur(6px);  mask-image: linear-gradient(0deg, #000 0%, transparent 60%);  -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 60%);  }
    .edge-blur-bottom > span:nth-child(3) { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); mask-image: linear-gradient(0deg, #000 0%, transparent 25%);  -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 25%);  }

    @media (max-width: 860px) {
      .edge-blur-bottom { display: none; }
      .hiw-overlay {
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
      }
      .hiw-overlay-close {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-end;
        margin: 16px 16px 8px;
        width: 48px;
        height: 48px;
        font-size: 20px;
        flex-shrink: 0;
      }
      .hiw-overlay-phone {
        width: auto;
        max-width: min(calc(100vw - 64px), 500px);
        margin-top: 8px;
        margin-bottom: 48px;
      }
      .hiw-overlay-phone img {
        width: auto;
        max-width: 100%;
        max-height: calc(100dvh - 140px);
      }
    }

    /* ── Activities ─────────────────────────────────────────── */
    .activities {
      padding: clamp(50px, 6vw, 110px) 0 clamp(20px, 2vw, 40px);
    }

    .activities-header {
      max-width: 1100px;
      margin: 0 auto clamp(12px, 1.4vw, 24px);
      padding: 0 clamp(20px, 5vw, 128px);
      text-align: center;
    }


    .activities-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orchid);
      margin-bottom: 16px;
    }

    .activities-heading {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: clamp(36px, 4vw, 60px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 0 auto clamp(12px, 1.4vw, 20px);
      max-width: 25ch;
      text-wrap: balance;
    }

    .activities-sub {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(16px, 1.2vw, 20px);
      line-height: 1.45;
      color: var(--text-soft);
      text-wrap: balance;
    }

    .activities-carousel {
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }

    .act-blur {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 14%;
      z-index: 5;
      pointer-events: none;
    }

    .act-blur-left  { left: 0; }
    .act-blur-right { right: 0; }

    /* Stacked layers with increasing blur strength + tighter masks = progressive blur */
    .act-blur > span {
      position: absolute;
      inset: 0;
    }

    .act-blur-left > span:nth-child(1)  { backdrop-filter: blur(1px);  -webkit-backdrop-filter: blur(1px);  mask-image: linear-gradient(90deg, #000 0%,   transparent 100%); -webkit-mask-image: linear-gradient(90deg, #000 0%,   transparent 100%); }
    .act-blur-left > span:nth-child(2)  { backdrop-filter: blur(2px);  -webkit-backdrop-filter: blur(2px);  mask-image: linear-gradient(90deg, #000 0%,   transparent 80%);  -webkit-mask-image: linear-gradient(90deg, #000 0%,   transparent 80%);  }
    .act-blur-left > span:nth-child(3)  { backdrop-filter: blur(4px);  -webkit-backdrop-filter: blur(4px);  mask-image: linear-gradient(90deg, #000 0%,   transparent 60%);  -webkit-mask-image: linear-gradient(90deg, #000 0%,   transparent 60%);  }
    .act-blur-left > span:nth-child(4)  { backdrop-filter: blur(8px);  -webkit-backdrop-filter: blur(8px);  mask-image: linear-gradient(90deg, #000 0%,   transparent 40%);  -webkit-mask-image: linear-gradient(90deg, #000 0%,   transparent 40%);  }
    .act-blur-left > span:nth-child(5)  { backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); mask-image: linear-gradient(90deg, #000 0%,   transparent 20%);  -webkit-mask-image: linear-gradient(90deg, #000 0%,   transparent 20%);  }

    .act-blur-right > span:nth-child(1) { backdrop-filter: blur(1px);  -webkit-backdrop-filter: blur(1px);  mask-image: linear-gradient(270deg, #000 0%,  transparent 100%); -webkit-mask-image: linear-gradient(270deg, #000 0%,  transparent 100%); }
    .act-blur-right > span:nth-child(2) { backdrop-filter: blur(2px);  -webkit-backdrop-filter: blur(2px);  mask-image: linear-gradient(270deg, #000 0%,  transparent 80%);  -webkit-mask-image: linear-gradient(270deg, #000 0%,  transparent 80%);  }
    .act-blur-right > span:nth-child(3) { backdrop-filter: blur(4px);  -webkit-backdrop-filter: blur(4px);  mask-image: linear-gradient(270deg, #000 0%,  transparent 60%);  -webkit-mask-image: linear-gradient(270deg, #000 0%,  transparent 60%);  }
    .act-blur-right > span:nth-child(4) { backdrop-filter: blur(8px);  -webkit-backdrop-filter: blur(8px);  mask-image: linear-gradient(270deg, #000 0%,  transparent 40%);  -webkit-mask-image: linear-gradient(270deg, #000 0%,  transparent 40%);  }
    .act-blur-right > span:nth-child(5) { backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); mask-image: linear-gradient(270deg, #000 0%,  transparent 20%);  -webkit-mask-image: linear-gradient(270deg, #000 0%,  transparent 20%);  }

    .activities-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: act-scroll 122s linear infinite;
      will-change: transform;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
    }

    /* Varied spacing — mostly gaps with the occasional overlap */
    .act-card + .act-card { margin-left: 28px; }
    .act-card:nth-child(6n+2) { margin-left: -10px; }
    .act-card:nth-child(6n+3) { margin-left: 36px; }
    .act-card:nth-child(6n+4) { margin-left: 18px; }
    .act-card:nth-child(6n+5) { margin-left: 40px; }
    .act-card:nth-child(6n+6) { margin-left: -6px; }
    .act-card:first-child { margin-left: 0; }

    @keyframes act-scroll {
      0%   { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(-50%, 0, 0); }
    }

    .act-card {
      flex-shrink: 0;
      width: clamp(220px, 20vw, 300px);
      aspect-ratio: 1 / 1.15;
      border-radius: 14px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
      position: relative;
      isolation: isolate;
      box-shadow:
        0 18px 36px rgba(68,3,84,0.18),
        0 4px 10px rgba(68,3,84,0.10);
      transition: transform 0.3s ease;
      overflow: hidden;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .act-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.40) 100%);
      z-index: -1;
    }

    /* Alternating tilt for fan effect (driven by CSS vars so hover can compose) */
    .act-card { transform: rotate(var(--rot, 0deg)) translateY(var(--ty, 0px)); }
    .act-card:nth-child(6n+1) { --rot: -4deg;   --ty: 20px; }
    .act-card:nth-child(6n+2) { --rot: -1.5deg; --ty: -10px; }
    .act-card:nth-child(6n+3) { --rot:  1deg;   --ty: -20px; }
    .act-card:nth-child(6n+4) { --rot:  3.5deg; --ty: -12px; }
    .act-card:nth-child(6n+5) { --rot: -2.5deg; --ty: 8px; }
    .act-card:nth-child(6n+6) { --rot:  2deg;   --ty: 18px; }

    .act-card:hover {
      transform: rotate(calc(var(--rot, 0deg) + 1.5deg)) translateY(calc(var(--ty, 0px) - 10px));
    }

    .act-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(100deg, transparent 10%, rgba(255,255,255,0.12) 50%, transparent 90%);
      transform: translateX(-130%) skewX(-20deg);
      pointer-events: none;
      z-index: 1;
    }

    .act-card:hover::before {
      animation: btn-shimmer 1.1s cubic-bezier(0.1, 0, 0.3, 1) forwards;
    }

    .act-card-title {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.01em;
      text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }

    .act-card-sub {
      font-family: 'Figtree', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.9;
      margin-bottom: 4px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }

    /* Card backgrounds — photos */
    .act-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .activities-cta {
      text-align: center;
      margin-top: clamp(16px, 1.4vw, 24px);
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      color: var(--text-soft);
    }

    .activities-cta a {
      color: var(--pink);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      transition: opacity 0.2s;
    }

    .activities-cta a:hover {
      opacity: 0.7;
    }

    /* ── CTA section (download) ─────────────────────────────── */
    @property --cta-a {
      syntax: '<angle>';
      initial-value: 90deg;
      inherits: false;
    }
    @property --cta-b {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
    }
    @keyframes cta-spin {
      0%   { --cta-a: 86deg; }
      35%  { --cta-a: 100deg; }
      70%  { --cta-a: 79deg; }
      100% { --cta-a: 86deg; }
    }
    @keyframes cta-sweep {
      from { --cta-b: 0deg; }
      to   { --cta-b: 360deg; }
    }
    @keyframes cta-breathe {
      0%   { opacity: 0; }
      40%  { opacity: 0.55; }
      100% { opacity: 0; }
    }
    @keyframes cta-grain {
      0%   { background-position:  0% 0%; }
      10%  { background-position: 40% 30%; }
      20%  { background-position: 70% 10%; }
      30%  { background-position: 20% 60%; }
      40%  { background-position: 50% 80%; }
      50%  { background-position: 10% 40%; }
      60%  { background-position: 80% 50%; }
      70%  { background-position: 30% 70%; }
      80%  { background-position: 60% 20%; }
      90%  { background-position: 90% 90%; }
      100% { background-position:  0% 0%; }
    }

    .cta {
      padding: clamp(8px, 1vw, 24px) clamp(20px, 5vw, 128px) clamp(8px, 1vw, 24px);
    }

    .cta-card {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-radius: clamp(24px, 3vw, 48px);
      padding: clamp(56px, 7vw, 120px) clamp(28px, 5vw, 96px);
      color: var(--violet);
      box-shadow: 0 30px 80px rgba(68,3,84,0.18);
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: clamp(32px, 5vw, 96px);
      max-width: 1200px;
      margin: 0 auto;
    }

    .cta-text {
      max-width: 520px;
    }

    .cta-phone-wrap {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: calc(-1 * clamp(56px, 7vw, 120px));
      transform: rotate(6deg) translateY(8%);
      transform-origin: center bottom;
    }

    .cta-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    @media (max-width: 860px) {
      .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
      }
      .cta-text { max-width: none; margin: 0 auto; }
      .cta-buttons { justify-content: center; }

      .cta-buttons .btn-ghost {
        height: 44px;
        padding: 6px 20px;
        font-size: 14px;
      }

      /* Show the CTA phone on mobile, nudged & cropped at the edges */
      .cta-phone-wrap {
        display: flex;
        justify-content: center;
        margin-top: clamp(-48px, -8vw, -24px);
        margin-bottom: 0;
        transform: rotate(2deg) translate(2%, 15%);
      }

      /* Reduce the phone's ring shadows so they don't clip at the card's
         rounded corners (the card has overflow:hidden) */
      .cta-phone-wrap .phone-outer {
        box-shadow:
          0 0 0 8px rgba(255,255,255,0.45),
          0 0 0 10px rgba(255,255,255,0.15),
          0 24px 56px rgba(68,3,84,0.28),
          0 6px 16px rgba(68,3,84,0.18);
      }

      .cta-card {
        padding-top: clamp(32px, 6vw, 56px);
        padding-bottom: clamp(32px, 6vw, 56px);
        max-height: 85vh;
      }

      .cta-card .cta-heading {
        font-size: clamp(36px, 4vw, 60px);
        margin-bottom: clamp(8px, 0.8vw, 12px);
      }

      /* Disable the sweeping conic animation — too GPU-heavy on mobile */
      .cta-sweep {
        display: none;
      }
    }

    .cta-card::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: conic-gradient(
        from var(--cta-a) at 76.5% 90.5%,
        #7f429d  -6.6107%,
        #b75872   4.2428%,
        #ef6e47  15.096%,
        #f39253  30%,
        #f6af74  39.812%,
        #f8cc95  49.623%,
        #f8c5bc  55.247%,
        #f7bde3  60.87%,
        #e57cbe  71.813%,
        #b25fae  82.601%,
        #7f429d  93.389%,
        #b75872 104.24%,
        #ef6e47 115.1%
      );
      animation: cta-spin 13s ease-in-out infinite;
    }

    .cta-card::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.35;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      animation: cta-grain 0.8s steps(10) infinite;
    }

    .cta-sweep {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background: conic-gradient(
        from var(--cta-b) at 76.5% 90.5%,
        transparent   0%,
        #b84d9a       8%,
        transparent  16.67%,
        #b84d9a      25%,
        transparent  33.33%,
        #b84d9a      41.67%,
        transparent  50%,
        #b84d9a      58.33%,
        transparent  66.67%,
        #b84d9a      75%,
        transparent  83.33%,
        #b84d9a      91.67%,
        transparent 100%
      );
      filter: blur(30px);
      mix-blend-mode: multiply;
      animation: cta-sweep 40s linear infinite, cta-breathe 5s ease-in-out infinite;
    }


    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 20px;
    }

    .cta-heading {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: clamp(48px, 5.5vw, 70px);
      line-height: 1.02;
      letter-spacing: -0.015em;
      margin-bottom: clamp(16px, 1.6vw, 24px);
    }

    .cta-sub {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(16px, 1.3vw, 21px);
      line-height: 1.45;
      color: var(--violet);
      opacity: 0.85;
      margin-bottom: clamp(28px, 3vw, 48px);
      text-wrap: balance;
    }

    .cta-buttons {
      display: inline-flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta .btn-store-fill {
      background: rgba(255,255,255,0.95);
      color: var(--violet);
      border: 1px solid rgba(255,255,255,0.6);
      text-shadow: none;
    }

    .cta .btn-store-outline {
      background: rgba(255,255,255,0.30);
      color: var(--violet);
      border: 1px solid rgba(255,255,255,0.65);
      backdrop-filter: blur(20px);
    }

    @media (max-width: 600px) {
      .cta-buttons { flex-direction: column; align-items: stretch; }
      .cta-buttons .btn-store { width: 100%; justify-content: center; }
    }

    /* ── FAQ ────────────────────────────────────────────────── */
    .faq {
      padding: clamp(60px, 7vw, 140px) clamp(20px, 5vw, 128px);
    }

    .faq-inner {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: clamp(32px, 3.5vw, 56px);
    }

    .faq-heading {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: clamp(8px, 1vw, 16px);
    }

    .faq-sub a {
      color: var(--orchid);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      transition: opacity 0.2s;
    }
    .faq-sub a:hover { opacity: 0.7; }

    .faq-sub {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(16px, 1.1vw, 19px);
      line-height: 1.45;
      color: var(--text-soft);
      text-wrap: balance;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      background: rgba(255,255,255,0.45);
      border: 1px solid rgba(255,255,255,0.70);
      border-radius: 20px;
      overflow: hidden;
      transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .faq-item:hover {
      background: rgba(255,255,255,0.70);
      border-color: rgba(255,255,255,0.95);
      box-shadow: 0 6px 20px rgba(94,47,132,0.08);
    }

    .faq-item:active {
      background: rgba(255,255,255,0.70);
      border-color: rgba(255,255,255,0.95);
    }

    .faq-item.is-open {
      background: rgba(255,255,255,0.78);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: clamp(18px, 1.8vw, 24px) clamp(20px, 2.2vw, 32px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: 'Figtree', sans-serif;
      font-weight: 600;
      font-size: clamp(16px, 1.1vw, 18px);
      letter-spacing: -0.005em;
      color: var(--text);
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-icon {
      position: relative;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    /* horizontal line */
    .faq-icon::before {
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      transform: translateY(-50%);
    }

    /* vertical line */
    .faq-icon::after {
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      transform: translateX(-50%);
    }

    /* Container rotates for "spin" feel; vertical line rotates 90° to overlap the horizontal → minus */
    .faq-item.is-open .faq-icon {
      transform: rotate(180deg);
    }
    .faq-item.is-open .faq-icon::after {
      transform: translateX(-50%) rotate(90deg);
    }

    /* Slide-open transition via grid-template-rows trick.
       Override <details> default UA hiding so the body stays in flow and can animate.
       Note: the :not(summary) selector below has equal specificity to .faq-item > .faq-body-wrap,
       so the order matters — display: grid is declared after and wins. */
    .faq-item > *:not(summary) { display: block; }

    .faq-item > .faq-body-wrap {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: grid-template-rows 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                  opacity 0.25s ease;
    }

    .faq-item.is-open > .faq-body-wrap {
      grid-template-rows: 1fr;
      opacity: 1;
    }

    .faq-body-wrap > .faq-body {
      overflow: hidden;
      padding: 0 clamp(20px, 2.2vw, 32px);
      font-family: 'Figtree', sans-serif;
      font-size: clamp(16px, 1vw, 17px);
      line-height: 1.55;
      color: var(--text-soft);
      max-width: 70ch;
    }

    .faq-body-wrap > .faq-body > .faq-body-inner {
      padding-bottom: clamp(20px, 2vw, 28px);
      transform: translateY(-6px);
      transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .faq-item.is-open .faq-body-inner {
      transform: translateY(0);
    }

    .faq-body-inner a {
      color: var(--orchid);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      transition: opacity 0.2s;
    }
    .faq-body-inner a:hover { opacity: 0.7; }

    /* ── Footer ─────────────────────────────────────────────── */
    .footer {
      padding: clamp(60px, 7vw, 120px) 0 clamp(40px, 3.5vw, 60px);
      margin-bottom: 20px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: clamp(32px, 4vw, 80px);
      align-items: start;
      max-width: 2200px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 128px);
    }

    .footer-brand .nav-wordmark { display: inline-block; }
    .footer-brand .nav-wordmark img { height: clamp(20px, 1.8vw, 40px); }

    .footer-tagline {
      margin-top: clamp(12px, 1.4vw, 20px);
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      line-height: 1.45;
      color: var(--text-soft);
    }

    .footer-col-title {
      font-family: 'Figtree', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 16px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      color: var(--text-soft);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--orchid); }

    .footer-bottom {
      position: relative;
      z-index: 55;
      max-width: 2200px;
      margin: 0 auto;
      padding: clamp(20px, 2vw, 32px) clamp(20px, 5vw, 128px) clamp(20px, 2vw, 32px);
      border-top: 1px solid rgba(68,3,84,0.10);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-family: 'Figtree', sans-serif;
      font-size: 14px;
      color: var(--text-soft);
    }

    .footer-bottom a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: var(--orchid); }

    @media (max-width: 700px) {
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-bottom { justify-content: center; text-align: center; }
    }

    /* ── Accessibility ──────────────────────────────────────── */
    .skip-link {
      position: fixed;
      top: 8px;
      left: 8px;
      z-index: 9999;
      padding: 10px 16px;
      background: var(--violet);
      color: #fff;
      font-family: 'Figtree', sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      transform: translateY(-200%);
      transition: transform 0.2s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    :focus-visible {
      outline: 2px solid var(--orchid);
      outline-offset: 3px;
      border-radius: 4px;
    }
    .btn-primary:focus-visible,
    .btn-ghost:focus-visible,
    .btn-store:focus-visible,
    .faq-item summary:focus-visible {
      outline-offset: 4px;
    }
    .hiw-overlay-close:focus-visible,
    .aanbieder-modal-close:focus-visible {
      border-radius: 50%;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .activities-track,
      .orbit-content,
      .cta-card::before,
      .cta-sweep,
      .cta-card::after,
      .orbit-center-cta-chevron {
        animation: none !important;
      }
    }

    /* content-visibility removed: render-skipping these sections changed
       the page height while scrolling (skipped sections collapse to the
       contain-intrinsic-size estimate), which jumped the scroll position
       and left a ghost/double of the content on iOS Safari. */

    /* ── Aanbieder modal ─────────────────────────────────────── */
    .aanbieder-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 900;
      background: rgba(68, 3, 84, 0.45);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .aanbieder-modal.is-open {
      display: flex;
    }
    .aanbieder-modal-inner {
      position: relative;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 2.5rem;
      width: 100%;
      max-width: 480px;
      max-height: 90dvh;
      overflow-y: auto;
      box-shadow: 0 24px 64px rgba(68, 3, 84, 0.18);
    }
    .aanbieder-modal-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(127, 66, 157, 0.08);
      border: 1.5px solid rgba(127, 66, 157, 0.35);
      color: var(--orchid);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      line-height: 1;
      flex-shrink: 0;
      transition: background 0.15s;
    }
    .aanbieder-modal-close:hover { background: rgba(127, 66, 157, 0.15); }

    @media (max-width: 600px) {
      .aanbieder-modal { padding: 0; }
      .aanbieder-modal-inner {
        border-radius: 0;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        padding: 0;
        background: var(--oatmilk);
        /* No overflow:hidden — it clips the child scroll container in Safari */
        display: flex;
        flex-direction: column;
      }
      /* Close button leaves absolute flow — becomes a non-scrolling header */
      .aanbieder-modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 20px;
        z-index: 10;
      }
      /* All scrollable content lives here.
         min-height:0 is required in Safari — without it a flex child won't
         shrink below its content height, so overflow-y:auto never activates
         and padding gets swallowed. */
      .aanbieder-modal-body {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 24px 0;
      }
    }
    .aanbieder-modal-title {
      font-family: 'FH Total Display', serif;
      font-weight: 400;
      font-size: 1.75rem;
      color: var(--violet);
      margin: 0 0 0.5rem;
    }
    .aanbieder-modal-sub {
      font-size: 16px;
      color: #666;
      margin: 0 0 1.75rem;
      line-height: 1.5;
      text-wrap: balance;
    }
    .aanbieder-form { display: flex; flex-direction: column; gap: 1rem; }
    .aanbieder-field { display: flex; flex-direction: column; gap: 0.35rem; }
    .aanbieder-field label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--violet);
      letter-spacing: 0.01em;
    }
    .aanbieder-field input,
    .aanbieder-field textarea {
      font-family: 'Figtree', sans-serif;
      font-size: 16px;
      color: #1a1a1a;
      background: #fff;
      border: 1.5px solid #ddd;
      border-radius: 10px;
      padding: 0.65rem 0.9rem;
      outline: none;
      transition: border-color 0.15s;
      resize: vertical;
    }
    .aanbieder-field input:focus,
    .aanbieder-field textarea:focus {
      border-color: var(--orchid);
    }
    .aanbieder-field input.is-invalid,
    .aanbieder-field textarea.is-invalid {
      border-color: #e05;
    }
    .aanbieder-submit {
      margin-top: 0.5rem;
      width: 100%;
      justify-content: center;
    }
    .aanbieder-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1rem 0 0.5rem;
      gap: 0.75rem;
    }
    .aanbieder-success-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 0.5rem;
    }
    .aanbieder-success .aanbieder-modal-title { margin: 0; }
    .aanbieder-success .aanbieder-modal-sub   { margin: 0; }
    .aanbieder-success-close {
      margin-top: 0.75rem;
      width: 100%;
      justify-content: center;
    }

    /* ── Mobile GPU relief ───────────────────────────────────── */
    /* 11 large filter:blur() layers are GPU-expensive on mobile even when
       frozen — the blur rasterisation alone is costly. So on mobile we
       drop the orb layer entirely and paint a cheap static radial-gradient
       that reproduces the same soft colour wash: zero blur, zero extra
       compositor layers, zero animation. */
    @media (max-width: 900px) {
      .bg-canvas { display: none; }

      /* Round-ish colour blobs forming a mesh. Spaced ~6% apart in Y but
         each ~8.5% tall, so every blob overlaps its vertical neighbours —
         there is never a fully uncovered row, so no pale band can appear
         at a section seam. Cream shows through on the alternating offset
         side instead, never as a full-width stripe. */
      body {
        background-image:
          radial-gradient(80% 8.5% at 80% 1%,  rgba(247,189,227,0.40) 0%, rgba(247,189,227,0.40) 16%, rgba(247,189,227,0) 88%),
          radial-gradient(76% 8.1% at 21% 7%,  rgba(239,110,71,0.18)   0%, rgba(239,110,71,0.18)   16%, rgba(239,110,71,0)   88%),
          radial-gradient(78% 8.3% at 83% 12%, rgba(229,124,190,0.26) 0%, rgba(229,124,190,0.26) 16%, rgba(229,124,190,0) 88%),
          radial-gradient(80% 8.5% at 18% 18%, rgba(248,204,149,0.30)  0%, rgba(248,204,149,0.30)  16%, rgba(248,204,149,0)  88%),
          radial-gradient(84% 8.9% at 81% 24%, rgba(247,189,227,0.40) 0%, rgba(247,189,227,0.40) 16%, rgba(247,189,227,0) 88%),
          radial-gradient(78% 8.3% at 23% 29%, rgba(243,146,83,0.27)  0%, rgba(243,146,83,0.27)  16%, rgba(243,146,83,0)  88%),
          radial-gradient(77% 8.2% at 84% 35%, rgba(127,66,157,0.20)  0%, rgba(127,66,157,0.20)  16%, rgba(127,66,157,0)  88%),
          radial-gradient(83% 8.8% at 17% 41%, rgba(247,189,227,0.40) 0%, rgba(247,189,227,0.40) 16%, rgba(247,189,227,0) 88%),
          radial-gradient(79% 8.4% at 80% 47%, rgba(229,124,190,0.26) 0%, rgba(229,124,190,0.26) 16%, rgba(229,124,190,0) 88%),
          radial-gradient(80% 8.5% at 22% 52%, rgba(248,204,149,0.30)  0%, rgba(248,204,149,0.30)  16%, rgba(248,204,149,0)  88%),
          radial-gradient(82% 8.7% at 82% 58%, rgba(247,189,227,0.40) 0%, rgba(247,189,227,0.40) 16%, rgba(247,189,227,0) 88%),
          radial-gradient(78% 8.3% at 19% 64%, rgba(243,146,83,0.27)  0%, rgba(243,146,83,0.27)  16%, rgba(243,146,83,0)  88%),
          radial-gradient(81% 8.6% at 83% 70%, rgba(247,189,227,0.40) 0%, rgba(247,189,227,0.40) 16%, rgba(247,189,227,0) 88%),
          radial-gradient(78% 8.3% at 21% 75%, rgba(229,124,190,0.26) 0%, rgba(229,124,190,0.26) 16%, rgba(229,124,190,0) 88%),
          radial-gradient(80% 8.5% at 80% 81%, rgba(248,204,149,0.30)  0%, rgba(248,204,149,0.30)  16%, rgba(248,204,149,0)  88%),
          radial-gradient(83% 8.8% at 24% 87%, rgba(247,189,227,0.40) 0%, rgba(247,189,227,0.40) 16%, rgba(247,189,227,0) 88%),
          radial-gradient(77% 8.2% at 82% 93%, rgba(243,146,83,0.27)  0%, rgba(243,146,83,0.27)  16%, rgba(243,146,83,0)  88%),
          radial-gradient(80% 8.5% at 19% 99%, rgba(247,189,227,0.39) 0%, rgba(247,189,227,0.39) 16%, rgba(247,189,227,0) 88%);
      }

      /* Grain repaint (steps(10) @ 0.8s) not worth the cost on mobile */
      .cta-card::after { animation: none; }
    }

    /* ── Legal pages (privacy, voorwaarden) ─────────────────── */
    .legal-body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .legal-page {
      flex: 1;
      padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 128px) clamp(64px, 8vw, 120px);
      max-width: 820px;
      margin: 0 auto;
      width: 100%;
    }

    .legal-content h1 {
      font-family: 'FH Total Display', Georgia, serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      line-height: 1.15;
      color: var(--violet);
      margin-bottom: 0.5rem;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .legal-updated {
      font-size: 0.9rem;
      color: var(--text-soft);
      margin-bottom: clamp(28px, 4vw, 48px);
    }

    .legal-content h2 {
      font-family: 'FH Total Display', Georgia, serif;
      font-size: clamp(1.25rem, 2.2vw, 1.5rem);
      color: var(--violet);
      margin-top: clamp(28px, 3.5vw, 40px);
      margin-bottom: 12px;
    }

    .legal-content p,
    .legal-content li {
      font-size: clamp(0.95rem, 1.1vw, 1.05rem);
      line-height: 1.65;
      color: var(--text);
      margin-bottom: 12px;
    }

    .legal-content ul {
      padding-left: 1.25rem;
      margin-bottom: 12px;
    }

    .legal-content a {
      color: var(--orchid);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .legal-content a:hover { color: var(--pink); }

    .legal-footer {
      border-top: 1px solid rgba(75, 51, 84, 0.12);
      padding: clamp(32px, 4vw, 48px) clamp(20px, 5vw, 128px);
      max-width: 820px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      justify-content: space-between;
      font-size: 0.9rem;
      color: var(--text-soft);
    }

    .legal-footer a {
      color: var(--orchid);
      text-decoration: none;
    }

    .legal-footer a:hover { text-decoration: underline; }
