/* =================================================================
   Plya Landing v4 - "Live Set"
   Awwwards-grade dark stage: Three.js soundscape hero + GSAP scroll
   choreography. Hebrew RTL · Ploni · dark theme locked (brand).
   -----------------------------------------------------------------
   Shape rule: buttons + chips = pill · cards = 24px · inner = 12px
   Z-scale: progress 101 · header 100 · mobile-menu 99 · wa-fab 900 · grain 1000
   Used by index.html only - secondary pages keep plya.css.
   ================================================================= */

/* -------- Ploni font (brand) -------- */
@font-face {
  font-family: 'Ploni';
  font-weight: 100 350;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/ploni/ploni-ultralight-aaa.woff2') format('woff2'),
       url('/assets/fonts/ploni/ploni-ultralight-aaa.woff') format('woff');
}
@font-face {
  font-family: 'Ploni';
  font-weight: 351 599;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/ploni/ploni-regular-aaa.woff2') format('woff2'),
       url('/assets/fonts/ploni/ploni-regular-aaa.woff') format('woff');
}
@font-face {
  font-family: 'Ploni';
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/ploni/ploni-demibold-aaa.woff2') format('woff2'),
       url('/assets/fonts/ploni/ploni-demibold-aaa.woff') format('woff');
}

/* =================================================================
   Tokens
   ================================================================= */
:root {
  /* "Day Stage" - the brand's light palette (v1 tokens), locked light */
  --bg:        #FAFAFC;
  --bg-soft:   #F4F5FA;
  --surface:   #FFFFFF;
  --surface-2: #FBFAFE;
  --border:    #ECECF3;
  --border-strong: #DEDDEA;

  --ink-900: #0F0B1F;
  --ink-800: #1E1829;
  --ink-700: #322B47;
  --ink-500: #5C566B;
  --ink-400: #807A8E;
  --ink-300: #ABA6B8;

  --brand-300: #B5BAF8;
  --brand-400: #8E8EFF;
  --brand-500: #7D87F5;
  --brand-600: #6A74E8;

  --accent:       #3F47B0; /* foreground accent: deep indigo on light */
  --accent-fill:  #6E5AE6; /* action purple, white ink */
  --accent-hover: #5B49D6;
  --accent-ink:   #FFFFFF;

  /* one cohesive lavender → purple → magenta family (decorative hues),
     deepened so they hold their own on light surfaces */
  --c-lavender: #6A74E8;
  --c-blue:     #3D8BFF;
  --c-violet:   #8B5CF6;
  --c-magenta:  #B556F6;
  --c-pink:     #E054B8;

  --success: #1FA56E;
  --error:   #E5484D;

  --wash-stage: radial-gradient(90% 70% at 85% -10%, rgba(125,135,245,.14) 0%, rgba(125,135,245,.04) 45%, transparent 72%),
                radial-gradient(55% 50% at 6% 108%, rgba(199,125,255,.08) 0%, transparent 60%);
  --wash-panel: radial-gradient(80% 90% at 90% 0%, rgba(142,142,255,.16) 0%, transparent 60%);
  /* gradients are rationed to ambient light washes only - fills and
     text stay flat (slick, not AI-made) */

  --shadow-md: 0 8px 24px -8px rgba(40,33,80,.12), 0 4px 10px -6px rgba(40,33,80,.08);
  --shadow-lg: 0 24px 48px -16px rgba(40,33,80,.18), 0 8px 16px -10px rgba(40,33,80,.10);
  --glow-accent: 0 14px 34px -10px rgba(125,135,245,.45);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 24px;
  --r-pill: 999px;

  --font-sans: 'Ploni', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px;  --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px; --sp-32: 128px;

  --container: 1240px;
  --header-h: 68px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: 140ms;
  --t-base: 240ms;
  --t-slow: 400ms;

  color-scheme: light;
}

/* =================================================================
   Reset
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* NO css scroll-behavior:smooth - it animates ScrollTrigger.refresh()'s
   internal scroll restore, corrupting trigger measurements on resize.
   Anchor clicks get JS smooth scrolling in landing.js instead. */
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* film grain - fixed overlay, breaks digital flatness (z 1000) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--accent-fill); color: var(--accent-ink); }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 1001;
  transform: translateY(-200%);
  transition: transform var(--t-base) var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* =================================================================
   GSAP reveal scaffolding - content is visible by default; the inline
   bootstrap adds .anim to <html> only when JS + full motion are on,
   and landing.js removes it again if GSAP failed to load.
   ================================================================= */
.anim [data-reveal] { opacity: 0; }
.anim .hero__title { opacity: 0; } /* revealed word-by-word once split */
.hero__title .w { display: inline-block; }
.hero__title .wi { display: inline-block; will-change: transform, filter; }

/* anchored sections clear the sticky header on jump */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* =================================================================
   Layout primitives
   ================================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-6); }
.section { padding-block: clamp(88px, 9.5vw, 150px); position: relative; }
.section--tint { background: var(--bg-soft); }

@media (max-width: 768px) {
  .section { padding-block: var(--sp-16); }
  .container { padding-inline: var(--sp-5); }
}

/* =================================================================
   Typography
   ================================================================= */
h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}
.display-1 {
  font-size: clamp(46px, 6.3vw, 92px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.display-2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.028em;
}
h2 { font-size: clamp(34px, 4.8vw, 62px); font-weight: 700; line-height: 1.05; }
h3 { font-size: clamp(21px, 2.3vw, 27px); line-height: 1.2; letter-spacing: -0.012em; }

/* accent phrase inside a headline - same family, flat accent ink */
.mark { color: var(--accent); }

.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 58ch;
  text-wrap: pretty;
}
.muted { color: var(--ink-500); }

.section-head { margin-bottom: clamp(48px, 5.5vw, 80px); max-width: 760px; }
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* info chip (rationed: max 1 per 3 sections) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
}

/* =================================================================
   Buttons - purple is the action color
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15.5px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease),
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--accent-fill);
  color: var(--accent-ink);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--glow-accent);
}
.btn--brand { background: var(--accent-fill); color: #fff; }
.btn--brand:hover { background: var(--accent-hover); box-shadow: var(--glow-accent); }
.btn--secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--border-strong);
}
.btn--secondary:hover { border-color: var(--ink-500); background: var(--bg-soft); }
.btn--ghost { background: transparent; color: var(--ink-700); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--ink-900); }
.btn--sm { padding: 9px 18px; font-size: 14px; min-height: 38px; }
.btn--lg { padding: 18px 38px; font-size: 17.5px; font-weight: 700; min-height: 60px; }

.btn .arrow { transition: transform var(--t-base) var(--ease); }
.btn:hover .arrow { transform: translateX(-4px); } /* RTL: forward = left */

/* magnetic CTAs: GSAP quickTo owns transform - keep CSS transitions off it
   so the two easings don't fight */
[data-magnetic] {
  will-change: transform;
  transition-property: box-shadow, background-color, color, border-color, filter;
}

/* =================================================================
   Header + scroll progress
   ================================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 2px;
  z-index: 101;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right; /* RTL: progress grows from the right */
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,252,.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,.88);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
}
.site-header__inner > .brand { flex: 1 1 0; }
.site-header__inner > .site-nav { flex: 0 0 auto; justify-content: center; }
.site-header__cta { flex: 1 1 0; justify-content: flex-end; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-900); }
.brand__logo { height: 40px; width: auto; display: block; }
.brand--logo .brand__logo { transition: transform var(--t-base) var(--ease); }
.brand--logo:hover .brand__logo { transform: scale(1.05); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-500);
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}
.site-nav a::after {
  content: '';
  position: absolute;
  inset-inline: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform var(--t-base) var(--ease-out);
}
.site-nav a:hover { color: var(--ink-900); }
.site-nav a:hover::after { transform: scaleX(.6); }
.site-nav a.is-active { color: var(--ink-900); }
.site-nav a.is-active::after { transform: scaleX(1); }

.site-header__cta { display: flex; align-items: center; gap: var(--sp-2); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--ink-900);
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .site-nav, .site-header__cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-2);
  border-top: 1px solid var(--border);
}
.mobile-menu.is-open { display: flex; animation: menuDown var(--t-base) var(--ease-out); }
@keyframes menuDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-800);
  border-radius: var(--r-md);
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { background: var(--bg-soft); }
.mobile-menu .btn { margin-top: var(--sp-4); }

/* =================================================================
   Hero - the stage. Three.js particle soundscape behind a start-aligned
   manifesto; CSS aurora carries the color before/without WebGL.
   ================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: var(--sp-16) var(--sp-24);
}
/* Aurora backdrop - vanilla-CSS port of the Aceternity AuroraBackground
   (light variant): two repeating-gradient layers, the top one animating
   against the base with mix-blend difference, the whole stack blurred,
   inverted and masked to the top corner. Brand blue-violet hues. */
.hero__aurora {
  --white-gradient: repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%);
  --aurora: repeating-linear-gradient(100deg,
    #3B82F6 10%,
    #A5B4FC 15%,
    #93C5FD 20%,
    #DDD6FE 25%,
    #60A5FA 30%
  );
  position: absolute;
  inset: -10px;
  z-index: -2;
  pointer-events: none;
  opacity: .5;
  filter: blur(10px) invert(1);
  will-change: transform;
  background-image: var(--white-gradient), var(--aurora);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 70%);
          mask-image: radial-gradient(ellipse at 100% 0%, #000 10%, transparent 70%);
}
.hero__aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--white-gradient), var(--aurora);
  background-size: 200%, 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: aurora 60s linear infinite;
}
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}
/* bottom blend into the page so the aurora dissolves */
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  /* start-aligned (RTL: right) - deliberate asymmetric whitespace at inline-end */
  /* soft paper-light halo keeps the copy crisp over the particle crests */
  text-shadow: 0 2px 28px rgba(250,250,252,.9), 0 1px 6px rgba(250,250,252,.7);
}
.hero__title { margin: 0 0 var(--sp-6); }
.hero__sub {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-800);
  max-width: 46ch;
  line-height: 1.6;
  text-wrap: pretty;
}
.hero__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-8); }

@media (max-width: 768px) {
  .hero { padding-block: var(--sp-12) var(--sp-20); }
}

/* subpage hero (music, etc.): same stage, not full-viewport */
.hero--page { min-height: 0; padding-block: clamp(72px, 9vw, 130px) clamp(56px, 7vw, 100px); }
.hero--page::after { height: 120px; }

/* =================================================================
   Big stats strip - hairline columns, no cards, GSAP count-up
   ================================================================= */
.bigstats { border-block: 1px solid var(--border); }
.bigstats__inner {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  align-items: center;
  gap: var(--sp-10);
  padding-block: var(--sp-10);
}
.bigstats__intro { font-size: 15.5px; color: var(--ink-500); max-width: 18ch; }
.bigstats__item { border-inline-start: 1px solid var(--border); padding-inline-start: var(--sp-10); }
.bigstats__num {
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.bigstats__num .star { color: var(--accent); font-size: .6em; vertical-align: .25em; }
.bigstats__label { font-size: 15px; color: var(--ink-500); margin-top: 8px; }
@media (max-width: 880px) {
  .bigstats__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .bigstats__intro { grid-column: 1 / -1; max-width: none; }
  .bigstats__item:nth-child(2) { border-inline-start: 0; padding-inline-start: 0; }
}
@media (max-width: 540px) {
  .bigstats__inner { grid-template-columns: 1fr; }
  .bigstats__item { border-inline-start: 0; padding-inline-start: 0; border-top: 1px solid var(--border); padding-top: var(--sp-4); }
}

/* =================================================================
   Bento - varied cells on a 6-col grid, pointer-tracked spotlight
   ================================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(212px, auto);
  gap: var(--sp-5);
}
.cell {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: var(--sp-8);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* pointer spotlight - --mx/--my set by landing.js on pointermove */
.cell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(142,142,255,.14), transparent 65%);
}
.cell:hover::before { opacity: 1; }
.cell > * { position: relative; z-index: 1; }
.bento .cell:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 54px -26px rgba(110,90,230,.35);
}
.cell h3 { margin-bottom: 8px; font-weight: 700; }
.cell p { color: var(--ink-500); font-size: 15.5px; line-height: 1.6; }
.cell--span-2 { grid-column: span 2; }
.cell--span-3 { grid-column: span 3; }
.cell--span-4 { grid-column: span 4; }
.cell--span-6 { grid-column: span 6; }

/* variant: lavender stage wash */
.cell--wash { background: var(--wash-panel), var(--surface); }
/* variant: filled - the focal cell, solid action purple + white ink */
.cell--fill {
  background: var(--accent-fill);
  border-color: transparent;
  color: #fff;
}
.cell--fill h3, .cell--fill p { color: #fff; }
.cell--fill p { opacity: .9; }
.cell--fill::before {
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.16), transparent 65%);
}
.cell--fill .cell-ring { border-color: rgba(255,255,255,.45); color: #fff; background: transparent; }
.cell--fill .cell-ring::before { border-color: rgba(255,255,255,.22); }
.cell--fill ::selection { background: #fff; color: var(--brand-600); }

/* big display figure inside a cell */
.cell__figure {
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: auto;
  padding-bottom: var(--sp-8);
  font-variant-numeric: tabular-nums;
}
.cell__figure .star { color: var(--accent); font-size: .5em; vertical-align: .35em; }

/* ring icon */
.cell-ring {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--ink-800);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.cell-ring::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.cell-ring svg { width: 20px; height: 20px; }
.cell-ring--lavender { --ring: var(--c-lavender); }
.cell-ring--blue     { --ring: var(--c-blue); }
.cell-ring--violet   { --ring: var(--c-violet); }
.cell-ring--magenta  { --ring: var(--c-magenta); }
.cell-ring--pink     { --ring: var(--c-pink); }
.cell-ring--lavender, .cell-ring--blue, .cell-ring--violet, .cell-ring--magenta, .cell-ring--pink {
  border-color: color-mix(in srgb, var(--ring) 50%, transparent);
  color: var(--ring);
  background: color-mix(in srgb, var(--ring) 13%, transparent);
}
.cell-ring--lavender::before, .cell-ring--blue::before, .cell-ring--violet::before,
.cell-ring--magenta::before, .cell-ring--pink::before {
  border-color: color-mix(in srgb, var(--ring) 24%, transparent);
}

@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .cell { grid-column: span 2 !important; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento .cell { grid-column: span 1 !important; }
}

/* =================================================================
   How it works - pinned scrolltelling. Desktop: a sticky phone frame
   crossfades step screens while the four steps scroll alongside it.
   Mobile: the phone collapses into each step as an inline figure.
   ================================================================= */
.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
/* the phone rides the viewport center while the steps scroll past it */
.how__visual {
  position: sticky;
  top: max(calc(var(--header-h) + 16px), calc(50dvh - 395px));
  display: flex;
  justify-content: center;
}
.how__phone {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 500 / 912;
  border-radius: 48px;
  border: 9px solid #1A1827;
  outline: 1px solid var(--border-strong);
  overflow: hidden;
  background: #0B0A14; /* the app screens are dark - the bezel stays true */
  box-shadow:
    0 40px 80px -30px rgba(110,90,230,.3),
    var(--shadow-lg);
}
.how__phone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms var(--ease);
}
.how__phone img.is-active { opacity: 1; }
/* no-JS / pre-JS safety: the first screen is always there */
.how__phone img:first-child { opacity: 1; }
/* hue halo behind the phone, follows the active step's color */
.how__visual::before {
  content: '';
  position: absolute;
  inset: -14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%,
    color-mix(in srgb, var(--how-c, var(--c-lavender)) 26%, transparent), transparent 70%);
  transition: background 600ms var(--ease);
}

.how__steps { display: flex; flex-direction: column; }
/* one step per viewport: each beat owns the screen while it is active */
.how-step {
  position: relative;
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 500ms var(--ease);
}
/* dimming is a JS-driven scrolltelling state - only when motion is on
   (no-JS / no-GSAP / reduced-motion all read at full contrast) */
@media (min-width: 881px) {
  .anim .how-step { opacity: .3; }
  .anim .how-step.is-active { opacity: 1; }
}
/* giant ghost numeral - the step's beat counter */
.how-step__num {
  font-size: clamp(80px, 9vw, 140px);
  font-weight: 700;
  line-height: .85;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--step-c) 88%, transparent);
  display: block;
  margin-bottom: var(--sp-5);
  transition: color 500ms var(--ease);
}
.how-step.is-active .how-step__num { color: color-mix(in srgb, var(--step-c) 38%, transparent); }
.how-step h3 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.how-step p { color: var(--ink-700); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; max-width: 40ch; }
.how-step__figure { display: none; }

.how-step:nth-child(1) { --step-c: var(--c-lavender); }
.how-step:nth-child(2) { --step-c: var(--c-blue); }
.how-step:nth-child(3) { --step-c: var(--c-magenta); }
.how-step:nth-child(4) { --step-c: var(--c-violet); }

@media (max-width: 880px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__visual { display: none; }
  .how-step {
    opacity: 1;
    min-height: 0;
    padding-block: var(--sp-12);
  }
  .how-step:not(:last-child) { border-bottom: 1px solid var(--border); }
  .how-step__num {
    font-size: 56px;
    -webkit-text-stroke: 1.5px color-mix(in srgb, var(--step-c) 80%, transparent);
    margin-bottom: var(--sp-4);
  }
  .how-step__figure {
    display: block;
    width: min(230px, 62%);
    aspect-ratio: 500 / 912;
    border-radius: 28px;
    border: 6px solid #1A1827;
    outline: 1px solid var(--border-strong);
    overflow: hidden;
    margin-bottom: var(--sp-6);
    box-shadow: 0 24px 48px -24px color-mix(in srgb, var(--step-c) 60%, transparent);
  }
  .how-step__figure img { width: 100%; height: 100%; object-fit: cover; }
}

/* =================================================================
   Versus - without-Plya vs with-Plya, slim asymmetric composition.
   The pain column is a ghosted plain list; the Plya column is the one
   elevated card on the section. Minimal inline marks, hairline rows.
   ================================================================= */
.versus {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  max-width: 880px;
  margin-inline: auto;
}
.versus__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: var(--sp-2);
}
.versus__title--bad { color: var(--ink-400); }
.versus__title--good { color: var(--accent); }

.versus__list li {
  position: relative;
  padding-block: 15px;
  padding-inline-start: 32px;
  font-size: 15.5px;
  line-height: 1.55;
}
.versus__list li + li { border-top: 1px solid var(--border); }
/* minimal inline mark, drawn with a mask so it inherits any ink */
.versus__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 19px;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: var(--mark-icon) center / contain no-repeat;
          mask: var(--mark-icon) center / contain no-repeat;
}

.versus__col--bad { padding-top: var(--sp-6); }
.versus__col--bad .versus__list li {
  color: var(--ink-400);
  --mark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 6 6 18M6 6l12 12' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.versus__col--bad .versus__list li::before { color: var(--ink-300); }

.versus__col--good {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8) var(--sp-5);
  box-shadow: var(--shadow-lg);
}
.versus__col--good .versus__list li {
  color: var(--ink-800);
  font-weight: 500;
  --mark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.versus__col--good .versus__list li::before { color: var(--success); }

@media (max-width: 760px) {
  .versus { grid-template-columns: 1fr; gap: var(--sp-10); }
  .versus__col--bad { padding-top: 0; }
  .versus__col--good { padding: var(--sp-5) var(--sp-6) var(--sp-4); }
}

/* =================================================================
   Pricing - three tiers, Pro lifted as the default choice
   ================================================================= */
.pricing-toggle {
  display: inline-flex;
  gap: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px;
  margin: var(--sp-6) auto 0;
}
.pricing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
  border-radius: var(--r-pill);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.pricing-toggle button:hover { color: var(--ink-900); }
.pricing-toggle button.is-active {
  background: var(--ink-900);
  color: var(--bg);
}
.pricing-toggle .badge-save {
  background: var(--accent-fill);
  color: var(--accent-ink);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin-inline-start: 2px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pricing-grid .plan:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 38px -24px rgba(110,90,230,.35);
}
.plan--featured {
  border-color: color-mix(in srgb, var(--c-violet) 45%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--c-violet) 8%, transparent), transparent 58%), var(--bg-soft);
  box-shadow: 0 16px 44px -22px rgba(110,90,230,.35);
}
.pricing-grid .plan--featured:hover {
  border-color: var(--c-violet);
  box-shadow: 0 22px 52px -24px rgba(110,90,230,.42);
}

.plan__header {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--r-lg) - 5px);
  padding: var(--sp-5);
  overflow: hidden;
}
.plan--featured .plan__header { background: var(--wash-panel), var(--surface); }
.plan__header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(125,135,245,.06) 0%, rgba(125,135,245,.02) 40%, transparent 100%);
}
.plan__head-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.plan__name-row { display: flex; align-items: center; gap: var(--sp-2); color: var(--ink-500); }
.plan__name-row svg { width: 16px; height: 16px; flex-shrink: 0; }
.plan__name { font-size: 14px; font-weight: 600; color: var(--ink-700); letter-spacing: .02em; }
.plan--featured .plan__name-row, .plan--featured .plan__name { color: var(--accent); }
.plan__badge {
  border: 1px solid var(--border-strong);
  color: var(--ink-500);
  border-radius: var(--r-pill);
  padding: 3px 11px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}
.plan--featured .plan__badge {
  border-color: transparent;
  background: var(--accent-fill);
  color: var(--accent-ink);
}
.plan__price-row { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 5px; margin-bottom: 6px; }
.plan__currency { font-size: 20px; color: var(--ink-700); font-weight: 600; padding-bottom: 8px; }
.plan__price {
  font-size: 54px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.plan__period { font-size: 13px; color: var(--ink-500); padding-bottom: 5px; }
.plan__original {
  margin-inline-start: auto;
  font-size: 17px;
  color: var(--ink-400);
  text-decoration: line-through;
  padding-bottom: 5px;
  font-variant-numeric: tabular-nums;
}
.plan__original:empty { display: none; }
.plan__price-note { position: relative; z-index: 1; font-size: 12.5px; color: var(--ink-400); min-height: 18px; margin-bottom: var(--sp-5); }
.plan__cta { position: relative; z-index: 1; }
.plan__cta .btn { width: 100%; }

.plan__body {
  padding: var(--sp-6) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  flex: 1;
}
.plan__features { display: grid; gap: var(--sp-3); }
.plan__features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-700);
  line-height: 1.45;
}
.plan__features li b { color: var(--ink-900); font-weight: 600; }
.plan__features li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.plan__features li.muted-feat { color: var(--ink-500); }
.plan__features li.muted-feat svg { color: var(--error); }

.plan__sep {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--ink-400);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.plan__sep::before, .plan__sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: var(--sp-8); }
}

/* =================================================================
   Testimonials - vertical marquee columns (the page's one marquee;
   keeps drifting under the cursor by design)
   ================================================================= */
.tcols {
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  max-height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}
.tcols__col { flex: 0 0 330px; max-width: 330px; }
.tcols__col--md, .tcols__col--lg { display: none; }
.tcols__track {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
  will-change: transform;
  animation: tcols-scroll var(--duration, 24s) linear infinite;
}
@keyframes tcols-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.tcard__quote { font-size: 15px; line-height: 1.65; color: var(--ink-700); }
.tcard__author { display: flex; align-items: center; gap: var(--sp-3); }
.tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-fill);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.tcard__name { font-weight: 600; color: var(--ink-900); font-size: 15px; line-height: 1.25; }
.tcard__role { color: var(--ink-400); font-size: 13px; line-height: 1.25; }
@media (min-width: 768px) { .tcols__col--md { display: block; } }
@media (min-width: 1024px) { .tcols__col--lg { display: block; } }

/* =================================================================
   FAQ
   ================================================================= */
.faq { max-width: 720px; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ink-500);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 14px no-repeat;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::after {
  background:
    linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 0 14px no-repeat;
  transform: rotate(180deg);
}
.faq__body {
  padding: 0 0 var(--sp-5);
  color: var(--ink-500);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 60ch;
}

/* =================================================================
   Final CTA - elevated stage panel
   ================================================================= */
.cta-banner {
  position: relative;
  background:
    radial-gradient(75% 90% at 50% -10%, rgba(142,142,255,.20) 0%, transparent 60%),
    radial-gradient(45% 60% at 95% 110%, color-mix(in srgb, var(--accent-fill) 9%, transparent) 0%, transparent 65%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner h2 { margin-bottom: var(--sp-4); }
.cta-banner p { color: var(--ink-500); margin: 0 auto var(--sp-8); max-width: 48ch; font-size: 17px; }
.cta-banner__btns { display: inline-flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  color: var(--ink-500);
  padding: var(--sp-20) 0 var(--sp-8);
  margin-top: var(--sp-16);
}
.site-footer a { color: var(--ink-500); transition: color var(--t-fast); }
.site-footer a:hover { color: var(--ink-900); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { color: var(--ink-900); }
.footer-brand p { margin-top: var(--sp-4); font-size: 14.5px; max-width: 36ch; line-height: 1.6; }
.footer-col h4 {
  color: var(--ink-900);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--sp-6);
  font-size: 13px;
  color: var(--ink-400);
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-bottom__links { display: flex; gap: var(--sp-6); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* =================================================================
   Journey cards - 3-up icon-led cards (music page: event types)
   ================================================================= */
.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.journey__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(135% 80% at 100% 0%, color-mix(in srgb, var(--step-c) 9%, transparent), transparent 56%),
    var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.journey .journey__step:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--step-c) 40%, transparent);
  box-shadow: 0 28px 56px -28px color-mix(in srgb, var(--step-c) 45%, transparent);
}
.journey__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--step-c);
  background: color-mix(in srgb, var(--step-c) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--step-c) 30%, transparent);
  margin-bottom: var(--sp-2);
}
.journey__icon svg { width: 25px; height: 25px; }
.journey__step h3 { font-size: 20px; font-weight: 700; }
.journey__step p { color: var(--ink-500); font-size: 15.5px; line-height: 1.6; }
.journey__step:nth-child(1) { --step-c: var(--c-lavender); }
.journey__step:nth-child(2) { --step-c: var(--c-magenta); }
.journey__step:nth-child(3) { --step-c: var(--c-blue); }
@media (max-width: 760px) {
  .journey { grid-template-columns: 1fr; }
}

/* =================================================================
   Legal / long-form pages
   ================================================================= */
.legal { padding-block: var(--sp-16); }
.legal__shell {
  max-width: 880px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4.5vw, 64px);
}
.legal__crumbs { font-size: 13px; color: var(--ink-400); margin-bottom: var(--sp-5); }
.legal__crumbs a { color: var(--ink-500); border-bottom: 1px dotted var(--ink-300); }
.legal__crumbs a:hover { color: var(--accent); border-color: var(--accent); }
.legal h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; margin-bottom: var(--sp-3); }
.legal__updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(125,135,245,.10);
  color: var(--accent);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--sp-8);
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.legal h3 { font-size: 17px; margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
.legal p, .legal ul, .legal ol, .legal table { font-size: 15.5px; line-height: 1.8; color: var(--ink-700); margin-bottom: var(--sp-4); }
.legal ul, .legal ol { padding-inline-start: var(--sp-6); }
.legal ul li, .legal ol li { margin-bottom: 6px; list-style: disc; }
.legal ol li { list-style: decimal; }
.legal a { color: var(--accent); border-bottom: 1px solid rgba(125,135,245,.35); }
.legal a:hover { color: var(--accent-hover); border-color: var(--accent-hover); }
.legal strong { color: var(--ink-900); }
.legal table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.legal th, .legal td {
  text-align: start;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  vertical-align: top;
}
.legal th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--ink-900);
  font-size: 13px;
}
.legal tbody tr:last-child td { border-bottom: none; }
.legal__contact-card {
  margin-top: var(--sp-10);
  padding: var(--sp-6);
  background: rgba(125,135,245,.08);
  border: 1px solid rgba(125,135,245,.25);
  border-radius: var(--r-lg);
}
.legal__contact-card h3 { margin-top: 0; color: var(--accent); }

/* =================================================================
   404 page
   ================================================================= */
.notfound {
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--sp-16) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.notfound__aurora {
  position: absolute; inset: 0;
  background: var(--wash-stage);
  pointer-events: none;
  z-index: -1;
}
.notfound__big {
  font-size: clamp(120px, 22vw, 240px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.notfound h1 { font-size: clamp(28px, 4vw, 40px); margin: var(--sp-4) 0 var(--sp-3); }
.notfound p { font-size: 18px; color: var(--ink-500); max-width: 50ch; margin: 0 auto var(--sp-8); }
.notfound__btns { display: inline-flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }

/* =================================================================
   WhatsApp floating button (z 900)
   ================================================================= */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,.45), 0 4px 10px rgba(0,0,0,.3);
  z-index: 900;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { transform: scale(1.06); }
.wa-fab:active { transform: scale(0.96); }
@media (max-width: 480px) {
  .wa-fab { bottom: max(16px, env(safe-area-inset-bottom, 16px)); right: 16px; width: 52px; height: 52px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

/* =================================================================
   Reduced motion - everything collapses to static
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .anim [data-reveal], .anim .hero__title .wi, .anim .hero__title { opacity: 1; }
  /* outranks the desktop .anim dimming if reduce-motion flips mid-session */
  .anim .how-step { opacity: 1; }
  .tcols__track { animation: none; }
  .tcols { max-height: none; -webkit-mask-image: none; mask-image: none; }
  .how-step { opacity: 1; }
  .scroll-progress { display: none; }
}
/* =================================================================
   Rendering performance - content-visibility
   Below-fold sections skip layout/style/paint until they near the
   viewport (web.dev/articles/content-visibility). --cv-size is the
   placeholder height while skipped (keeps the scrollbar stable);
   the `auto` keyword pins the real size after first render.
   ================================================================= */
.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: auto var(--cv-size, 800px);
}
