/* ============================================================
   Myra × Wero — bold, playful, high-contrast, scroll-driven.
   Design language interpreted from the Sowieso "iDEAL becomes
   Wero" campaign: warm gradients, lemon yellow + near-black,
   huge rounded grotesque, sticker badges, highlight boxes,
   pinned/scaling hero, stacked cards, bento finale, floating UI.
   Adapted for a data/AI consultancy — no payment iconography.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Palette */
  --w-yellow:      #FFF48D;
  --w-yellow-deep: #F2E14A;
  --w-ink:         #1D1C1C;
  --w-white:       #FFFFFF;
  --w-cream:       #FBFAF0;

  /* Warm signature gradient (coral → orange → yellow) */
  --w-grad:      linear-gradient(118deg, #FF5E93 0%, #FF9A5A 46%, #FFE96B 100%);
  --w-grad-soft: linear-gradient(118deg, #FFD7E4 0%, #FFE6CD 50%, #FFF6C6 100%);

  /* Cool accent gradients for cards/highlights */
  --w-green:  #86E2A8;
  --w-mint:   #74E3CB;
  --w-violet: #B49BF2;
  --w-pop:    #FF8FB3;
  --w-grad-cool: linear-gradient(135deg, #74E3CB 0%, #86E2A8 40%, #B49BF2 100%);

  --w-line-ink:   rgba(29, 28, 28, 0.16);
  --w-line-paper: rgba(255, 255, 255, 0.20);

  --w-display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --w-sans:    'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;

  --w-r-sm: 10px;
  --w-r-md: 18px;
  --w-r-lg: 28px;
  --w-r-pill: 999px;

  --w-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --w-ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --w-dur: 600ms;

  --w-container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--w-yellow); color: var(--w-ink);
  font-family: var(--w-sans);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.w-wrap { max-width: var(--w-container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ============================================================
   TYPE
   ============================================================ */
.w-eyebrow { font-family: var(--w-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; }

/* Highlight box around a key word (signature Wero move) */
.w-hl {
  background: var(--w-green); color: var(--w-ink);
  padding: 0.04em 0.14em; border-radius: 10px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  box-shadow: 0 0 0 2px var(--w-ink);
}
.w-hl--pop { background: var(--w-pop); }
.w-hl--violet { background: var(--w-violet); }
.w-hl--yellow { background: var(--w-yellow); }

/* ============================================================
   BUTTONS — pills
   ============================================================ */
.w-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--w-sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 14px; padding: 16px 26px;
  border-radius: var(--w-r-pill); border: 2px solid var(--w-ink);
  cursor: pointer; text-decoration: none;
  transition: transform var(--w-dur) var(--w-ease), background 240ms var(--w-ease), color 240ms var(--w-ease);
}
.w-btn__arrow { transition: transform 240ms var(--w-ease); }
.w-btn:hover .w-btn__arrow { transform: translateX(4px); }
.w-btn:active { transform: scale(0.97); }
.w-btn--dark  { background: var(--w-ink); color: var(--w-yellow); }
.w-btn--dark:hover  { background: transparent; color: var(--w-ink); }
.w-btn--light { background: var(--w-yellow); color: var(--w-ink); }
.w-btn--light:hover { background: var(--w-ink); color: var(--w-yellow); }
.w-btn--outline { background: transparent; color: var(--w-ink); }
.w-btn--outline:hover { background: var(--w-ink); color: var(--w-yellow); }

/* ============================================================
   STICKER badge
   ============================================================ */
.w-sticker {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  width: 132px; height: 132px; border-radius: var(--w-r-pill);
  background: var(--w-grad-cool); color: var(--w-ink); border: 2px solid var(--w-ink);
  font-family: var(--w-display); font-weight: 900; text-transform: uppercase;
  font-size: 15px; line-height: 0.95; letter-spacing: 0.01em;
  padding: 14px; transform: rotate(-12deg); animation: w-wobble 6s ease-in-out infinite;
}
.w-sticker--pop { background: var(--w-pop); }
@keyframes w-wobble { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(-5deg) scale(1.04); } }

/* ============================================================
   SPARKLE doodle (chunky 4-point star)
   ============================================================ */
.w-spark {
  position: absolute; width: 38px; height: 38px;
  background: var(--w-white);
  -webkit-mask: radial-gradient(circle at center, transparent 0, transparent 0) ;
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  filter: drop-shadow(0 0 0 var(--w-ink));
  opacity: 0.95; animation: w-float 5s ease-in-out infinite;
  pointer-events: none;
}
.w-spark::after { content: ""; position: absolute; inset: -2px; background: var(--w-ink); clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%); z-index: -1; }
@keyframes w-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(12deg); } }
.w-spark--slow { animation-duration: 7s; }
.w-spark--sm { width: 24px; height: 24px; }
.w-spark--lg { width: 50px; height: 50px; }

/* Section-scoped sparkle positions */
.w-svc-spark1 { top: 8%; right: 8%; }
.w-svc-spark2 { bottom: 12%; left: 4%; }
.w-bento-spark1 { top: 6%; right: 10%; }
.w-bento-spark2 { bottom: 10%; left: 6%; width: 28px; height: 28px; }
.w-why-spark1 { top: 14%; right: 6%; }

/* ============================================================
   ISOMETRIC CHECK — geometric "decision" accent (gradient)
   ============================================================ */
.w-iso { position: relative; width: 220px; height: 220px; transform: rotate(-8deg); animation: w-iso-float 6s ease-in-out infinite; }
@keyframes w-iso-float { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-12px); } }
.w-iso__check {
  position: absolute; inset: 0;
  transform: rotateX(54deg) rotateZ(45deg); transform-style: preserve-3d;
}
.w-iso__bar { position: absolute; background: var(--w-grad-cool); border: 2px solid var(--w-ink); border-radius: 6px; }
.w-iso__bar--short { width: 26%; height: 56%; left: 18%; bottom: 6%; }
.w-iso__bar--long  { width: 26%; height: 100%; left: 40%; bottom: 6%; transform: rotate(0deg); }
.w-iso__check::before { /* depth shadow */
  content: ""; position: absolute; inset: 0; background: var(--w-ink);
  transform: translate(10px, 10px); border-radius: 8px; z-index: -1; opacity: 0.25;
}

/* ============================================================
   SCROLL REVEAL — robust (gated under JS class + fallbacks)
   ============================================================ */
body.w-reveal-on [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 720ms var(--w-ease), transform 720ms var(--w-ease); }
body.w-reveal-on [data-reveal].w-in { opacity: 1; transform: none; }
body.w-reveal-on [data-reveal-delay="1"] { transition-delay: 90ms; }
body.w-reveal-on [data-reveal-delay="2"] { transition-delay: 180ms; }
body.w-reveal-on [data-reveal-delay="3"] { transition-delay: 270ms; }

/* Directional slide-in (service rows alternate sides) */
body.w-reveal-on [data-reveal-side] { opacity: 0; transition: opacity 760ms var(--w-ease), transform 760ms var(--w-ease); }
body.w-reveal-on [data-reveal-side="left"]  { transform: translateX(-72px); }
body.w-reveal-on [data-reveal-side="right"] { transform: translateX(72px); }
body.w-reveal-on [data-reveal-side].w-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.w-reveal-on [data-reveal], body.w-reveal-on [data-reveal-side] { opacity: 1; transform: none; transition: none; }
  .w-sticker, .w-spark, .w-iso, .w-bento__cell .w-arrow, .w-fab--face, .w-marquee__track, .w-hero__scroll-pill .dot span { animation: none !important; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.w-marquee { overflow: hidden; border-top: 2px solid var(--w-ink); border-bottom: 2px solid var(--w-ink); background: var(--w-yellow); }
.w-marquee--ink { background: var(--w-ink); border-color: var(--w-ink); }
.w-marquee__track { display: inline-flex; white-space: nowrap; gap: 28px; padding: 16px 0; animation: w-scroll 26s linear infinite; }
.w-marquee--rev .w-marquee__track { animation-direction: reverse; }
.w-marquee__item { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 3vw, 38px); letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 28px; }
.w-marquee--ink .w-marquee__item { color: var(--w-yellow); }
.w-marquee__star { font-size: 0.6em; }
@keyframes w-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   TOP NAV
   ============================================================ */
.w-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(255, 244, 141, 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--w-ink);
}
.w-nav__logo { display: flex; align-items: center; color: var(--w-ink); }
.w-nav__logo img { height: 30px; display: block; }
.w-nav__links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.w-nav__links a { font-family: var(--w-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; color: var(--w-ink); text-decoration: none; position: relative; padding: 4px 0; }
.w-nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--w-ink); transform: scaleX(0); transform-origin: left; transition: transform 240ms var(--w-ease); }
.w-nav__links a:hover::after, .w-nav__links a.is-active::after { transform: scaleX(1); }

/* ============================================================
   FLOATING UI — bottom pill nav, back-to-top, face FAB
   ============================================================ */
.w-float { position: fixed; bottom: 22px; left: 0; right: 0; z-index: 60; pointer-events: none; display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.w-float__pill { pointer-events: auto; display: flex; align-items: center; gap: clamp(14px, 2.5vw, 30px); background: var(--w-white); border: 2px solid var(--w-ink); border-radius: var(--w-r-pill); padding: 14px 26px; box-shadow: 0 6px 0 rgba(29,28,28,0.18); }
.w-float__pill a { font-family: var(--w-sans); font-weight: 700; text-transform: none; font-size: 15px; color: var(--w-ink); text-decoration: none; white-space: nowrap; }
.w-float__pill a.is-active { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.w-fab { pointer-events: auto; position: fixed; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--w-ink); background: var(--w-yellow); display: grid; place-items: center; cursor: pointer; z-index: 60; transition: transform 240ms var(--w-ease-spring), opacity 240ms var(--w-ease); font-size: 22px; }
.w-fab:hover { transform: translateY(-3px) scale(1.05); }
.w-fab--top { left: 22px; box-shadow: 0 5px 0 rgba(29,28,28,0.18); opacity: 0; transform: translateY(12px); pointer-events: none; }
.w-fab--top.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.w-fab--face { right: 22px; background: var(--w-white); box-shadow: 0 5px 0 rgba(29,28,28,0.18); animation: w-face-pulse 2.8s ease-in-out infinite; }
@keyframes w-face-pulse { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(8deg); } }
.w-fab--face:hover { animation: none; }

/* ============================================================
   HERO — pinned scale-down
   ============================================================ */
.w-hero { position: relative; }
.w-hero__sticky { position: sticky; top: 0; height: 100vh; min-height: 620px; overflow: hidden; display: flex; align-items: center; }
.w-hero__bg { position: absolute; inset: 0; background: var(--w-grad); z-index: 0; }
.w-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--w-container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); text-align: center; }
.w-hero__center { transform-origin: top center; will-change: transform; }
.w-hero__eyebrow { margin-bottom: 18px; will-change: opacity; }
.w-hero__line { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; line-height: 1.04; letter-spacing: -0.03em; font-size: clamp(40px, 8.4vw, 104px); margin: 0; }
.w-hero__line .w-hl, .w-hero__line .w-flip { margin-top: 0.12em; }
.w-hero__hint { position: absolute; left: 0; right: 0; bottom: 20%; font-family: var(--w-sans); font-weight: 700; font-size: clamp(18px, 2vw, 26px); opacity: 0; will-change: opacity; }
.w-hero__cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; will-change: opacity; }
.w-hero__scroll-pill { position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 14px; background: var(--w-white); border: 2px solid var(--w-ink); border-radius: var(--w-r-pill); padding: 12px 14px 12px 22px; font-weight: 700; font-size: 15px; z-index: 3; }
.w-hero__scroll-pill .dot { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--w-ink); display: grid; place-items: center; background: var(--w-yellow); }
.w-hero__scroll-pill .dot span { animation: w-bounce 1.5s var(--w-ease) infinite; }
@keyframes w-bounce { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }
.w-hero__iso { position: absolute; bottom: 6%; right: 6%; z-index: 1; will-change: transform; }
.w-hero__spark1 { top: 26%; left: 12%; } .w-hero__spark2 { bottom: 24%; left: 22%; width: 26px; height: 26px; } .w-hero__spark3 { top: 18%; right: 24%; width: 30px; height: 30px; }

/* floating "raw data" tokens — symmetric mirrored pairs funneling inward */
.w-hero__tokens { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.w-tok { position: absolute; font-family: var(--w-mono, ui-monospace, "SF Mono", Menlo, monospace); font-size: clamp(11px, 1.1vw, 15px); font-weight: 600; letter-spacing: -0.01em; color: var(--w-ink); background: rgba(255,255,255,0.62); border: 1.5px solid var(--w-ink); border-radius: 9px; padding: 7px 12px; white-space: nowrap; box-shadow: 0 4px 0 rgba(29,28,28,0.12); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); animation: w-tok-float 9s ease-in-out infinite; }
/* upper pair — widest */
.w-tok--l1 { top: 13%; left: 7%;  --r: -5deg; animation-delay: 0s; }
.w-tok--r1 { top: 13%; right: 7%; --r: 5deg;  animation-delay: 0s; }
/* middle pair — pulled in */
.w-tok--l2 { top: 27%; left: 13%; --r: 4deg;  animation-delay: 1.4s; }
.w-tok--r2 { top: 27%; right: 13%; --r: -4deg; animation-delay: 1.4s; }
/* lower pair — accent, beside the scroll pill */
.w-tok--l3 { bottom: 19%; left: 10%; --r: -4deg; animation-delay: 2.6s; background: var(--w-yellow); }
.w-tok--r3 { bottom: 19%; right: 10%; --r: 4deg; animation-delay: 2.6s; background: var(--w-yellow); }
@keyframes w-tok-float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(var(--r,0deg)); } }
@media (max-width: 760px) { .w-hero__tokens { display: none; } }

/* ---------- HERO DATA-FLOW — converging pipeline (the first-look centerpiece) ---------- */
.w-hero__flow { position: absolute; top: 17.5%; left: 50%; transform: translateX(-50%); width: min(640px, 60vw); height: 56px; display: flex; align-items: center; justify-content: center; gap: 0; z-index: 1; pointer-events: none; }
.w-flow__stream { position: relative; flex: 1; height: 2px; align-self: center; background: repeating-linear-gradient(to right, rgba(29,28,28,0.5) 0 7px, transparent 7px 16px); -webkit-mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent); }
.w-flow__stream i { position: absolute; top: 50%; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%; background: var(--w-ink); box-shadow: 0 0 0 3px rgba(255,255,255,0.45); }
.w-flow__stream i:nth-child(2) { background: var(--w-green); }
.w-flow__stream i:nth-child(4) { background: var(--w-pop); }
.w-flow__stream--l i { animation: w-flow-l 2.6s linear infinite; }
.w-flow__stream--r i { animation: w-flow-r 2.6s linear infinite; }
.w-flow__stream i:nth-child(1) { animation-delay: 0s; }
.w-flow__stream i:nth-child(2) { animation-delay: 0.65s; }
.w-flow__stream i:nth-child(3) { animation-delay: 1.3s; }
.w-flow__stream i:nth-child(4) { animation-delay: 1.95s; }
@keyframes w-flow-l { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes w-flow-r { 0% { right: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { right: 100%; opacity: 0; } }
/* central decision node */
.w-flow__core { position: relative; flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; margin: 0 6px; }
.w-flow__node { position: relative; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: var(--w-yellow); border: 2.5px solid var(--w-ink); display: grid; place-items: center; box-shadow: 0 4px 0 rgba(29,28,28,0.18); animation: w-flow-pop 2.6s ease-in-out infinite; }
.w-flow__bar { position: absolute; background: var(--w-ink); border-radius: 2px; }
.w-flow__bar--s { width: 4px; height: 9px; transform: rotate(45deg) translate(-4px, 3px); }
.w-flow__bar--l { width: 4px; height: 17px; transform: rotate(-45deg) translate(3px, 0); }
.w-flow__ring { position: absolute; inset: 0; margin: auto; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--w-ink); opacity: 0; animation: w-flow-ripple 2.6s ease-out infinite; }
.w-flow__ring:nth-child(2) { animation-delay: 1.3s; }
@keyframes w-flow-ripple { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(2.4); opacity: 0; } }
@keyframes w-flow-pop { 0%,100% { transform: scale(1); } 46% { transform: scale(1); } 53% { transform: scale(1.16); } 60% { transform: scale(1); } }
@media (max-width: 760px) { .w-hero__flow { display: none; } }

/* ============================================================
   SECTION shells
   ============================================================ */
.w-section { position: relative; padding: clamp(72px, 10vw, 138px) 0; }
.w-section--ink { background: var(--w-ink); color: var(--w-yellow); }
.w-section--cream { background: var(--w-cream); }
.w-section--white { background: var(--w-white); }
.w-section--grad { background: var(--w-grad); }
.w-section--yellow { background: var(--w-yellow); }
.w-section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.w-section__eyebrow { margin-bottom: 18px; opacity: 0.72; }
.w-section__title { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; line-height: 1.06; letter-spacing: -0.02em; font-size: clamp(38px, 6.5vw, 92px); margin: 0; }
.w-section__kicker { margin-top: 22px; max-width: 620px; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.w-services { display: flex; flex-direction: column; }
.w-svc { display: grid; grid-template-columns: 90px 1fr 1.1fr; gap: clamp(20px, 4vw, 56px); align-items: center; padding: clamp(32px, 5vw, 60px) 0; border-top: 2px solid var(--w-line-ink); }
.w-svc:last-child { border-bottom: 2px solid var(--w-line-ink); }
.w-svc__num { font-family: var(--w-display); font-weight: 900; font-size: clamp(32px, 4vw, 56px); }
.w-svc__title { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 5vw, 72px); line-height: 0.9; letter-spacing: -0.02em; }
.w-svc__right { display: flex; flex-direction: column; gap: 18px; }
.w-svc__lead { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.5; font-weight: 500; }
.w-svc__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.w-svc__tag { font-family: var(--w-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; padding: 9px 16px; border: 2px solid var(--w-ink); border-radius: var(--w-r-pill); transition: background 200ms var(--w-ease), color 200ms var(--w-ease); }
.w-svc__tag:hover { background: var(--w-ink); color: var(--w-yellow); }

/* ============================================================
   WHY — playful cards on gradient
   ============================================================ */
.w-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.w-why__card { background: var(--w-white); color: var(--w-ink); border: 2px solid var(--w-ink); border-radius: var(--w-r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 248px; box-shadow: 0 8px 0 rgba(29,28,28,0.16); transition: transform 320ms var(--w-ease-spring); }
.w-why__card:nth-child(2) { background: var(--w-green); }
.w-why__card:nth-child(3) { background: var(--w-pop); }
.w-why__card:nth-child(4) { background: var(--w-violet); }
.w-why__card:hover { transform: translateY(-8px) rotate(-1.4deg); }
.w-why__card-num { font-family: var(--w-display); font-weight: 900; font-size: 34px; }
.w-why__card-title { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: 22px; line-height: 0.95; letter-spacing: -0.01em; }
.w-why__card-body { font-size: 14px; line-height: 1.5; font-weight: 500; margin-top: auto; }

/* ============================================================
   APPROACH — playful tilted deck (fully readable)
   ============================================================ */
.w-approach__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.w-approach__deck { display: flex; flex-direction: column; gap: 16px; }
.w-approach__card { border: 2px solid var(--w-ink); border-radius: var(--w-r-lg); padding: 24px 28px; box-shadow: 0 8px 0 rgba(29,28,28,0.18); display: flex; flex-direction: column; gap: 12px; transition: transform 360ms var(--w-ease-spring), box-shadow 360ms var(--w-ease); will-change: transform; }
.w-approach__card:hover { transform: rotate(0deg) translateY(-4px) scale(1.015) !important; box-shadow: 0 14px 0 rgba(29,28,28,0.2); z-index: 5; }
.w-approach__card-top { display: flex; align-items: center; gap: 16px; }
.w-approach__card-num { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; border: 2px solid var(--w-ink); display: grid; place-items: center; font-family: var(--w-display); font-weight: 900; font-size: 20px; background: var(--w-white); }
.w-approach__card-title { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(24px, 2.6vw, 34px); line-height: 0.95; letter-spacing: -0.01em; }
.w-approach__card-body { font-size: 15px; line-height: 1.5; font-weight: 500; margin: 0; }

/* ============================================================
   COMPARISON
   ============================================================ */
.w-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.w-compare__col { border: 2px solid var(--w-ink); border-radius: var(--w-r-lg); padding: clamp(28px, 4vw, 48px); }
.w-compare__col--bad { background: var(--w-white); }
.w-compare__col--good { background: var(--w-ink); color: var(--w-yellow); }
.w-compare__tag { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 2.6vw, 34px); margin-bottom: 24px; letter-spacing: -0.01em; }
.w-compare__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.w-compare__list li { display: flex; gap: 14px; align-items: flex-start; font-size: clamp(15px, 1.5vw, 18px); font-weight: 600; line-height: 1.35; }
.w-compare__mark { font-family: var(--w-display); font-weight: 900; flex-shrink: 0; font-size: 1.1em; }
.w-compare__col--bad .w-compare__mark { opacity: 0.4; }
.w-compare__col--good .w-compare__mark { color: var(--w-green); }

/* ============================================================
   FAQ
   ============================================================ */
.w-faq__list { list-style: none; margin: 0; padding: 0; }
.w-faq__item { border-top: 2px solid var(--w-ink); }
.w-faq__item:last-child { border-bottom: 2px solid var(--w-ink); }
.w-faq__q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 24px; padding: clamp(22px, 3vw, 34px) 0; text-align: left; }
.w-faq__qtext { flex: 1; font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(20px, 2.6vw, 38px); line-height: 0.95; letter-spacing: -0.01em; }
.w-faq__toggle { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--w-ink); display: grid; place-items: center; font-size: 24px; font-family: var(--w-display); transition: transform 300ms var(--w-ease-spring), background 200ms, color 200ms; }
.w-faq__item.is-open .w-faq__toggle { transform: rotate(135deg); background: var(--w-ink); color: var(--w-yellow); }
.w-faq__a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 420ms var(--w-ease); }
.w-faq__item.is-open .w-faq__a-wrap { grid-template-rows: 1fr; }
.w-faq__a { overflow: hidden; }
.w-faq__a p { margin: 0; padding: 0 68px 30px 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; font-weight: 500; max-width: 760px; }

/* ============================================================
   BENTO finale
   ============================================================ */
.w-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.w-bento__cell { border: 2px solid var(--w-ink); border-radius: var(--w-r-lg); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.w-bento__cell h3 { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(20px, 1.8vw, 26px); line-height: 0.95; letter-spacing: -0.01em; margin: 0; }
.w-bento__cell p { font-size: 14px; line-height: 1.45; font-weight: 500; margin: 0; }
.w-bento__cell .w-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--w-ink); display: grid; place-items: center; font-size: 20px; align-self: flex-end; background: var(--w-yellow); transition: transform 240ms var(--w-ease-spring); animation: w-arrow-bob 2.6s var(--w-ease) infinite; }
.w-bento__cell:hover .w-arrow { transform: translate(4px, -4px) scale(1.08); }
@keyframes w-arrow-bob { 0%,100% { transform: translate(0,0); } 50% { transform: translate(3px,-3px); } }
.w-bento__a { grid-column: span 2; grid-row: span 2; background: var(--w-grad-cool); }
.w-bento__b { grid-column: span 2; background: var(--w-white); }
.w-bento__c { grid-column: span 1; background: var(--w-pop); }
.w-bento__d { grid-column: span 1; background: var(--w-yellow); }
.w-bento__big { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 4.5vw, 64px); line-height: 0.88; letter-spacing: -0.02em; }

/* ============================================================
   CONTACT
   ============================================================ */
.w-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.w-contact__form { display: flex; flex-direction: column; gap: 18px; }
.w-field { display: flex; flex-direction: column; gap: 8px; }
.w-field label { font-family: var(--w-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; }
.w-field input, .w-field select, .w-field textarea { font-family: var(--w-sans); font-size: 16px; font-weight: 500; padding: 15px 18px; border-radius: var(--w-r-md); border: 2px solid var(--w-ink); background: var(--w-white); color: var(--w-ink); outline: none; transition: box-shadow 180ms var(--w-ease); }
.w-field input:focus, .w-field select:focus, .w-field textarea:focus { box-shadow: 0 0 0 4px rgba(29,28,28,0.14); }
.w-contact__aside-h { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px, 5vw, 68px); line-height: 1.06; letter-spacing: -0.02em; }
.w-contact__aside-p { margin-top: 20px; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; font-weight: 500; }
.w-contact__sent { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.w-footer { background: var(--w-ink); color: var(--w-yellow); padding: clamp(64px, 8vw, 110px) 0 120px; position: relative; isolation: isolate; overflow: hidden; }
.w-footer .w-wrap { position: relative; z-index: 2; }
.w-footer__logo { height: 38px; margin-bottom: 40px; display: block; }
.w-footer__big { font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(44px, 11vw, 168px); line-height: 0.84; letter-spacing: -0.03em; }
.w-footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-top: 56px; }
.w-footer__col { display: flex; flex-direction: column; gap: 12px; }
.w-footer__col .w-eyebrow { opacity: 0.6; margin-bottom: 6px; }
.w-footer__col a { color: var(--w-yellow); text-decoration: none; font-weight: 600; font-size: 15px; }
.w-footer__col a:hover { text-decoration: underline; }
.w-footer__bottom { margin-top: 64px; padding-top: 24px; border-top: 2px solid var(--w-line-paper); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--w-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; opacity: 0.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .w-nav__links { display: none; }
  .w-why__grid { grid-template-columns: 1fr 1fr; }
  .w-svc { grid-template-columns: 60px 1fr; }
  .w-svc__right { grid-column: 1 / -1; }
  .w-approach__grid { grid-template-columns: 1fr; }
  .w-bento { grid-template-columns: repeat(2, 1fr); }
  .w-bento__a, .w-bento__b { grid-column: span 2; }
}
@media (max-width: 640px) {
  .w-compare { grid-template-columns: 1fr; }
  .w-why__grid { grid-template-columns: 1fr; }
  .w-contact__grid { grid-template-columns: 1fr; }
  .w-hero__iso { display: none; }
  .w-float__pill { gap: 16px; padding: 12px 18px; }
  .w-float__pill a:nth-child(n+4) { display: none; }
}

/* ============================================================
   INTRO CURTAIN — quirky branded opening
   ============================================================ */
.w-intro-lock { overflow: hidden; height: 100vh; }
.w-intro {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  cursor: pointer; overflow: hidden;
}
/* two panels that split apart on lift */
.w-intro__panel { position: absolute; left: 0; right: 0; height: 50%; background: var(--w-ink); transition: transform 1s var(--w-ease); z-index: 1; }
.w-intro__panel--t { top: 0; }
.w-intro__panel--b { bottom: 0; }
.w-intro.is-lift .w-intro__panel--t { transform: translateY(-100%); }
.w-intro.is-lift .w-intro__panel--b { transform: translateY(100%); }

.w-intro__core { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 22px; transition: opacity 380ms var(--w-ease), transform 520ms var(--w-ease); }
.w-intro.is-lift .w-intro__core { opacity: 0; transform: scale(1.5); }

.w-intro__mark { width: 120px; height: 120px; overflow: visible; }
.w-intro__dot { fill: var(--w-yellow); opacity: 0; transform-box: fill-box; transform-origin: center; animation: w-dot-drop 560ms var(--w-ease-spring) forwards; }
@keyframes w-dot-drop {
  0%   { opacity: 0; transform: translateY(-26px) scale(0.2); }
  70%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.w-intro__peak { fill: var(--w-grad-cool); fill: #74E3CB; opacity: 0; transform-box: fill-box; transform-origin: center bottom; animation: w-peak-pop 600ms var(--w-ease-spring) 760ms forwards; }
@keyframes w-peak-pop { 0% { opacity: 0; transform: scaleY(0); } 100% { opacity: 1; transform: scaleY(1); } }

.w-intro__word { display: flex; gap: 2px; font-family: var(--w-display); font-weight: 900; text-transform: uppercase; font-size: clamp(48px, 9vw, 96px); letter-spacing: -0.02em; color: var(--w-yellow); line-height: 1; }
.w-intro__char { display: inline-block; opacity: 0; transform: translateY(40px) rotate(-12deg); animation: w-char-in 600ms var(--w-ease-spring) forwards; }
@keyframes w-char-in { to { opacity: 1; transform: none; } }

.w-intro__meter { display: flex; align-items: baseline; gap: 14px; color: var(--w-yellow); font-family: var(--w-sans); }
.w-intro__meter-label { font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; opacity: 0.7; }
.w-intro__meter-count { font-family: var(--w-display); font-weight: 900; font-size: 22px; font-variant-numeric: tabular-nums; }
.w-intro__bar { width: min(280px, 60vw); height: 6px; border-radius: 999px; background: rgba(255,255,255,0.16); overflow: hidden; }
.w-intro__bar-fill { display: block; height: 100%; background: var(--w-grad); border-radius: 999px; }
.w-intro__skip { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--w-yellow); opacity: 0.5; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }

/* ============================================================
   HERO LETTERS — spring in after curtain lifts (keyframe-based)
   ============================================================ */
.w-letter { display: inline-block; opacity: 0; }
.w-loaded .w-letter { animation: w-letter-in 560ms var(--w-ease-spring) both; }
/* guaranteed-visible fallback (fires after the animation window, or if
   the tab was backgrounded and animations were throttled) */
.w-letters-safe .w-letter { animation: none !important; opacity: 1 !important; transform: none !important; }
@keyframes w-letter-in {
  0%   { opacity: 0; transform: translateY(0.5em) rotate(-7deg); }
  100% { opacity: 1; transform: none; }
}
.w-hero__line .w-hl { transition: box-shadow 400ms var(--w-ease); }

/* ---------- FLIP WORD — cycling outcome word in the hero ---------- */
.w-flip { position: relative; display: inline-block; vertical-align: bottom; }
.w-flip__clip { display: inline-grid; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.w-flip__ghost { visibility: hidden; white-space: nowrap; grid-area: 1 / 1; }
.w-flip__word { grid-area: 1 / 1; white-space: nowrap; transform-origin: center bottom; }
/* each new word flips up from below */
.w-flip__word:not(.w-flip__word--intro) { animation: w-flip-in 560ms var(--w-ease-spring) both; }
@keyframes w-flip-in {
  0%   { opacity: 0; transform: translateY(0.7em) rotateX(-88deg); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}
.w-flip__word--intro { display: inline-flex; }

/* ============================================================
   QUIRKY SECTION OVERLAYS — floating morphing blobs + sparkles
   ============================================================ */
.w-blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 240px; height: 240px; opacity: 0.5;
  background: var(--w-grad-cool);
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  animation: w-blob-morph 14s ease-in-out infinite, w-blob-drift 18s ease-in-out infinite;
}
.w-blob--pop  { background: radial-gradient(circle at 35% 30%, #FF8FB3, #FF5E93); }
.w-blob--mint { background: radial-gradient(circle at 40% 35%, #86E2A8, #74E3CB); }
.w-blob--violet { background: radial-gradient(circle at 40% 35%, #B49BF2, #C9B8FF); }
.w-blob--sm { width: 150px; height: 150px; }
.w-blob--lg { width: 340px; height: 340px; }
@keyframes w-blob-morph {
  0%,100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
  33%     { border-radius: 62% 38% 41% 59% / 56% 63% 37% 44%; }
  66%     { border-radius: 38% 62% 56% 44% / 63% 41% 59% 37%; }
}
@keyframes w-blob-drift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(26px,-22px) rotate(18deg); }
}
.w-section { isolation: isolate; overflow: hidden; }
.w-section > .w-wrap { position: relative; z-index: 2; }

/* ============================================================
   PER-SECTION OFFBEAT MOTIFS — each section gets its own
   ============================================================ */
.w-ov { position: absolute; z-index: 0; pointer-events: none; }

/* spin / drift helpers */
@keyframes w-spin { to { transform: rotate(360deg); } }
@keyframes w-spin-rev { to { transform: rotate(-360deg); } }
@keyframes w-drift-slow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(18px,-16px); } }

/* (1) SERVICES — dashed orbit ring with a circling dot */
.w-ov-orbit { width: 150px; height: 150px; border: 3px dashed var(--w-ink); border-radius: 50%; opacity: 0.28; animation: w-spin 22s linear infinite; }
.w-ov-orbit::before { content: ""; position: absolute; top: -10px; left: 50%; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; background: var(--w-pop); border: 2px solid var(--w-ink); }
.w-ov-orbit--sm { width: 88px; height: 88px; border-width: 2px; animation-duration: 16s; animation-direction: reverse; }
.w-ov-svc1 { top: 9%; right: 6%; }
.w-ov-svc2 { bottom: 12%; left: 4%; }

/* (2) WHY (dark) — drifting dotted grid + winking smiley */
.w-ov-dots { width: 210px; height: 170px; opacity: 0.5; background-image: radial-gradient(var(--w-yellow) 2.4px, transparent 2.6px); background-size: 24px 24px; animation: w-drift-slow 18s ease-in-out infinite; }
.w-ov-why1 { top: 12%; left: 4%; }
.w-ov-smiley { width: 76px; height: 76px; border-radius: 50%; border: 3px solid var(--w-yellow); animation: w-bob 4.5s ease-in-out infinite; }
.w-ov-smiley::before { content: ""; position: absolute; top: 26px; left: 18px; width: 9px; height: 9px; border-radius: 50%; background: var(--w-yellow); box-shadow: 32px 0 0 var(--w-yellow); }
.w-ov-smiley::after { content: ""; position: absolute; bottom: 16px; left: 50%; width: 34px; height: 17px; margin-left: -17px; border: 0 solid var(--w-yellow); border-bottom-width: 3px; border-radius: 0 0 40px 40px; }
.w-ov-why2 { bottom: 16%; right: 7%; }
@keyframes w-bob { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(6deg); } }

/* (3) COMPARISON — wobbling squiggle + bouncing ball */
.w-ov-squiggle { width: 180px; height: 26px; opacity: 0.5; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 26'%3E%3Cpath d='M2 13 q11 -13 22 0 t22 0 t22 0 t22 0 t22 0 t22 0 t22 0' fill='none' stroke='%231D1C1C' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E"); animation: w-wobble 5s ease-in-out infinite; transform-origin: center; }
.w-ov-cmp1 { top: 12%; right: 5%; }
.w-ov-ball { width: 30px; height: 30px; border-radius: 50%; background: var(--w-mint); border: 2px solid var(--w-ink); animation: w-bounce 2.4s var(--w-ease) infinite; }
.w-ov-cmp2 { bottom: 18%; left: 6%; }
@keyframes w-wobble { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
@keyframes w-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

/* (4) APPROACH — pulsing concentric target rings */
.w-ov-target { width: 18px; height: 18px; border-radius: 50%; background: var(--w-violet); }
.w-ov-target::before, .w-ov-target::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--w-violet); animation: w-ripple 3.2s ease-out infinite; }
.w-ov-target::after { animation-delay: 1.6s; }
.w-ov-app1 { top: 14%; right: 8%; }
.w-ov-app2 { bottom: 12%; left: 5%; transform: scale(0.7); }
@keyframes w-ripple { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(6); opacity: 0; } }

/* (5) FAQ — one giant slowly-spinning asterisk */
.w-ov-aster { font-family: var(--w-display); font-weight: 900; font-size: 200px; line-height: 0.7; color: var(--w-pop); opacity: 0.16; animation: w-spin 40s linear infinite; }
.w-ov-aster::before { content: "\002A"; }
.w-ov-faq1 { top: 4%; right: -30px; }

/* (6) CONTACT — falling confetti bits */
.w-ov-confetti { width: 1px; height: 1px; }
.w-ov-confetti i { position: absolute; width: 12px; height: 12px; display: block; opacity: 0.85; animation: w-fall 6s linear infinite; }
.w-ov-confetti i:nth-child(1) { left: 0;   background: var(--w-pop);    animation-delay: 0s;   animation-duration: 6.5s; }
.w-ov-confetti i:nth-child(2) { left: 40px; background: var(--w-mint);   animation-delay: 1.2s; border-radius: 50%; }
.w-ov-confetti i:nth-child(3) { left: 78px; background: var(--w-violet); animation-delay: 2.4s; animation-duration: 7s; }
.w-ov-confetti i:nth-child(4) { left: 22px; background: var(--w-yellow); border: 2px solid var(--w-ink); animation-delay: 3.1s; }
.w-ov-confetti i:nth-child(5) { left: 60px; background: var(--w-pop);    animation-delay: 4.3s; border-radius: 50%; }
.w-ov-cnt1 { top: 0; right: 9%; }
@keyframes w-fall { 0% { transform: translateY(-30px) rotate(0); opacity: 0; } 12% { opacity: 0.85; } 100% { transform: translateY(360px) rotate(420deg); opacity: 0; } }

/* (7) BENTO (yellow) — spinning pinwheel */
.w-ov-pin { width: 130px; height: 130px; border-radius: 50%; opacity: 0.16; background: conic-gradient(var(--w-ink) 0 25%, transparent 0 50%, var(--w-ink) 0 75%, transparent 0); animation: w-spin 9s linear infinite; }
.w-ov-bento1 { top: 8%; right: 6%; }
.w-ov-bento2 { bottom: 10%; left: 5%; width: 70px; height: 70px; animation-direction: reverse; animation-duration: 7s; }

/* (8) FOOTER — orbiting moon dots */
.w-ov-moon { width: 120px; height: 120px; animation: w-spin 26s linear infinite; }
.w-ov-moon::before, .w-ov-moon::after { content: ""; position: absolute; border-radius: 50%; }
.w-ov-moon::before { top: 50%; left: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px; background: var(--w-yellow); box-shadow: 0 -58px 0 -2px var(--w-yellow), 0 58px 0 -4px rgba(245,209,42,0.6); }
.w-ov-moon::after { inset: 0; border: 2px dashed rgba(245,209,42,0.35); }
.w-ov-foot1 { top: 16%; right: 7%; }

@media (prefers-reduced-motion: reduce) {
  .w-ov-orbit, .w-ov-dots, .w-ov-smiley, .w-ov-squiggle, .w-ov-ball, .w-ov-target::before, .w-ov-target::after, .w-ov-aster, .w-ov-confetti i, .w-ov-pin, .w-ov-moon { animation: none !important; }
}

/* ============================================================
   KINETICS — decode text, velocity skew, tilt, side-rail
   ============================================================ */
[data-skew] { will-change: transform; transition: transform 60ms linear; }

/* decode-text: subtle flicker while glyphs resolve */
.w-decoding { color: var(--w-ink); }
.w-section--grad .w-decoding, .w-footer .w-decoding { color: inherit; }
.w-decoding .w-hl { box-shadow: none; background: transparent; transition: none; }
.w-decoded .w-hl { animation: w-hl-sweep 460ms var(--w-ease) both; }
@keyframes w-hl-sweep { from { box-shadow: -0.18em 0 0 var(--w-hl-c, var(--w-yellow)), 0.18em 0 0 var(--w-hl-c, var(--w-yellow)); } to { } }

/* 3D cursor-tilt on cards */
.w-why__card, .w-approach__card, .w-bento__cell { transition: transform 200ms var(--w-ease); }
.w-tilt { transform: perspective(680px) rotateX(var(--tx,0)) rotateY(var(--ty,0)) translateZ(6px) !important; }

/* kinetic editorial side-rail */
.w-rail { position: fixed; top: 50%; right: 18px; transform: translateY(-50%); z-index: 70; display: flex; flex-direction: column; align-items: center; gap: 14px; mix-blend-mode: difference; pointer-events: none; }
.w-rail__top { display: flex; align-items: baseline; gap: 1px; color: #fff; font-family: var(--w-display); font-weight: 900; }
.w-rail__idx { font-size: 20px; font-variant-numeric: tabular-nums; }
.w-rail__pct { font-size: 11px; }
.w-rail__track { width: 3px; height: 150px; background: rgba(255,255,255,0.3); border-radius: 999px; overflow: hidden; }
.w-rail__fill { display: block; width: 100%; background: #fff; border-radius: 999px; }
.w-rail__label { writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; font-weight: 800; color: #fff; }
@media (max-width: 900px) { .w-rail { display: none; } }
@media (prefers-reduced-motion: reduce) { [data-skew] { transform: none !important; } .w-tok, .w-flow__stream i, .w-flow__node, .w-flow__ring { animation: none !important; } .w-flow__ring { opacity: 0 !important; } }

/* ============================================================
   QUIRKY MOTION — compare list pop + nudge, faq playfulness
   ============================================================ */
.w-compare__list li { transition: transform 260ms var(--w-ease-spring), color 200ms var(--w-ease); }
.w-compare__list li:hover { transform: translateX(8px); }
.w-compare__mark { display: inline-block; transition: transform 300ms var(--w-ease-spring); }
.w-compare__list li:hover .w-compare__mark { transform: scale(1.35) rotate(-8deg); }
/* staggered pop-in once the column reveals */
body.w-reveal-on .w-compare__col .w-compare__list li { opacity: 0; transform: translateX(-14px); }
body.w-reveal-on .w-compare__col.w-in .w-compare__list li { animation: w-pop-in 520ms var(--w-ease-spring) both; }
.w-compare__col.w-in .w-compare__list li:nth-child(1) { animation-delay: 120ms; }
.w-compare__col.w-in .w-compare__list li:nth-child(2) { animation-delay: 200ms; }
.w-compare__col.w-in .w-compare__list li:nth-child(3) { animation-delay: 280ms; }
.w-compare__col.w-in .w-compare__list li:nth-child(4) { animation-delay: 360ms; }
.w-compare__col.w-in .w-compare__list li:nth-child(5) { animation-delay: 440ms; }
@keyframes w-pop-in { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }

.w-faq__item { transition: background 220ms var(--w-ease); }
.w-faq__item:hover { background: rgba(29,28,28,0.035); }
.w-faq__q:hover .w-faq__qtext { transform: translateX(6px); }
.w-faq__qtext { display: inline-block; transition: transform 240ms var(--w-ease-spring); }
.w-faq__q:hover .w-faq__toggle { animation: w-wiggle 500ms var(--w-ease); }
@keyframes w-wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }
.w-faq__item.is-open .w-faq__toggle { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .w-blob { animation: none !important; }
  body.w-reveal-on .w-compare__col .w-compare__list li { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ============================================================
   MAGNETIC BLOB CURSOR
   ============================================================ */
.w-has-cursor, .w-has-cursor a, .w-has-cursor button { cursor: none; }
.w-cursor {
  position: fixed; top: 0; left: 0; z-index: 900; pointer-events: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--w-ink); mix-blend-mode: multiply;
  display: grid; place-items: center;
  transition: width 260ms var(--w-ease-spring), height 260ms var(--w-ease-spring), background 220ms var(--w-ease);
}
.w-cursor.is-active { width: 64px; height: 64px; background: var(--w-pop); }
.w-cursor.is-labeled { width: auto; height: auto; min-width: 64px; padding: 12px 18px; border-radius: 999px; background: var(--w-ink); }
.w-cursor__label { color: var(--w-yellow); font-family: var(--w-sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; white-space: nowrap; opacity: 0; transition: opacity 160ms var(--w-ease); }
.w-cursor.is-labeled .w-cursor__label { opacity: 1; }

/* ============================================================
   MOTION-REDUCE — kill the new flourishes too
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .w-intro__dot, .w-intro__peak, .w-intro__char, .w-intro__bar-fill { animation: none !important; opacity: 1 !important; transform: none !important; }
  .w-letter { opacity: 1 !important; transform: none !important; animation: none !important; }
}
