/* ======================================================================
   RYTM — design tokens
   Source: Figma variables (node 17:72)
   ====================================================================== */
:root {
  /* Colors */
  --c-white:    #F3F0EB;   /* Figma: "Color White" — used on text & pills */
  --c-paper:    #FFFBEF;   /* Figma palette — light section bg */
  --c-ink:      #100E34;   /* Figma: "Color Dark blue" — base bg + dark text */
  --c-iris:     #4F48EC;   /* Figma: "Color Rich Nigth" — accent */
  --c-sun:      #FFBF18;   /* Figma: "Color Sun" — primary CTA */

  /* Radii */
  --r-xs: 5px;
  --r-sm: 10px;

  /* Layout */
  --page-w: 1440px;

  /* Fonts — Figma uses Helvetica Neue + Futura PT. Fallbacks below. */
  --ff-sans:    "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif;
  --ff-display: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif;
  --ff-body:    "Futura PT", Futura, "Century Gothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ======================================================================
   Reset
   ====================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--ff-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* ======================================================================
   Scrollbar — slim iris-tinted track with glossy thumb. Matches
   liquid-glass aesthetic across page + mobile menu overlay.
   ====================================================================== */
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(79, 72, 236, 0.65) rgba(16, 14, 52, 0.4);
}
/* WebKit / Blink */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(16, 14, 52, 0.4);
}
::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, rgba(243, 240, 235, 0.18), rgba(243, 240, 235, 0.04)),
    linear-gradient(180deg, #6862ef, #4f48ec 55%, #3a34c9);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(243, 240, 235, 0.28), rgba(243, 240, 235, 0.08)),
    linear-gradient(180deg, #7c77f2, #5b54ee 55%, #4036d6);
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: transparent; }

/* ======================================================================
   Page — fixed 1440 design canvas, fluid-scaled via CSS zoom.
   Inline script in index.html sets `.page { zoom: clientWidth / 1440 }`.
   zoom (unlike transform) reflows layout, so height compensates itself.
   ====================================================================== */
.page {
  position: relative;
  width: var(--page-w);
  margin: 0 auto;
}

/* ======================================================================
   Squircle — apply Figma-style "iOS 100%" corner smoothing to every
   rounded shape. Modern browsers (Chrome 139+, Safari 18+) support
   `corner-shape: squircle`; fallback is the same border-radius (plain
   round corner), which is acceptable degradation.
   ====================================================================== */
*,
*::before,
*::after {
  corner-shape: squircle;
  -webkit-corner-shape: squircle;
}

/* ======================================================================
   Ripple — radial iris/white circle expanding from the cursor on hover.
   Applied uniformly to every interactive button/pill via ::before.
   Each element sets --ripple-bg + --ripple-fg for the destination colors.
   JS in index.html writes --x/--y to the exact cursor position so the
   ripple originates from the entry point rather than the center.
   ====================================================================== */
.pill,
.header__book,
.hero__cta,
.hero__secondary,
.eco-card__btn,
.about__social,
.site-footer__social,
.quiz-modal__book {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --x: 50%;
  --y: 50%;
}
.pill::before,
.header__book::before,
.hero__cta::before,
.hero__secondary::before,
.eco-card__btn::before,
.about__social::before,
.site-footer__social::before,
.quiz-modal__book::before {
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  background: var(--ripple-bg, var(--c-iris));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
  z-index: -1;
}
.pill:hover::before,
.pill.is-active::before,
.header__book:hover::before,
.hero__cta:hover::before,
.hero__secondary:hover::before,
.eco-card__btn:hover::before,
.about__social:hover::before,
.site-footer__social:hover::before,
.quiz-modal__book:hover::before {
  width: 1600px;
  height: 1600px;
}

/* ======================================================================
   Header
   Node 17:93 children — logo 17:92, nav 17:107, book 17:109
   ====================================================================== */
/* Sticky to viewport top. In zoomed .page context position:sticky keeps
   proper 1440 sizing (unlike fixed which breaks under cascading zoom).
   margin-bottom pulls subsequent content up so hero keeps its original
   top position instead of being pushed down by header's height. */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 68px;
  margin-bottom: -68px;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(16, 14, 52, 0.45);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: rgba(243, 240, 235, 0.08);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.header__logo {
  position: absolute;
  left: 60px;
  top: 24px;
  width: 70px;
  height: 20px;
}
.header__logo img { width: 100%; height: 100%; }

.header__nav {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
}

/* Pills — default white. Hover + active = iris ripple (from cursor). */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: var(--r-xs);
  background: var(--c-white);
  color: var(--c-ink);
  font: 400 12px/normal var(--ff-sans);
  text-transform: uppercase;
  white-space: nowrap;
  --ripple-bg: var(--c-iris);
  transition: color 0.3s ease;
}
.pill:hover,
.pill.is-active {
  color: var(--c-white);
}

/* Book a Session — 17:109. Pinned to the right edge (60px inset, matching
   Figma's visual right margin) instead of left:1259 so font-fallback width
   differences can't push the button past the 1440 canvas edge. */
.header__book {
  position: absolute;
  right: 60px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--c-white);
  border-radius: var(--r-xs);
  color: var(--c-white);
  font: 400 12px/normal var(--ff-sans);
  text-transform: uppercase;
  white-space: nowrap;
}
.header__book { --ripple-bg: var(--c-white); transition: color 0.3s ease; }
.header__book:hover { color: var(--c-ink); }

/* Burger — desktop hidden, mobile visible */
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--c-white);
  border-radius: var(--r-xs);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — liquid-glass overlay. Translucent ink with backdrop blur,
   glass-tile links, animated reveal on open. */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 84px 20px 32px;
  overflow-y: auto;
  background:
    radial-gradient(120% 60% at 80% 0%, rgba(79, 72, 236, 0.32), transparent 60%),
    radial-gradient(100% 60% at 10% 100%, rgba(255, 191, 24, 0.10), transparent 65%),
    rgba(16, 14, 52, 0.72);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.32s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  color: var(--c-white);
  font: 400 18px/1 var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 14px;
  background: rgba(243, 240, 235, 0.06);
  border: 1px solid rgba(243, 240, 235, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(243, 240, 235, 0.08),
    0 1px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  isolation: isolate;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(6px);
  animation: menuItemIn 0.4s ease forwards;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { animation-delay: 0.09s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { animation-delay: 0.13s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { animation-delay: 0.17s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { animation-delay: 0.21s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { animation-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(7) { animation-delay: 0.32s; }

.mobile-menu__link::after {
  content: "→";
  margin-left: auto;
  font-size: 18px;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu__link:active {
  background: rgba(243, 240, 235, 0.12);
  border-color: rgba(243, 240, 235, 0.28);
  transform: translateY(1px);
}
.mobile-menu__link:active::after {
  opacity: 1;
  transform: translateX(4px);
}

.mobile-menu__link--cta {
  margin-top: 18px;
  justify-content: center;
  background: var(--c-sun);
  color: var(--c-ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 24px -6px rgba(255, 191, 24, 0.45);
  font-weight: 500;
  text-decoration: underline;
  letter-spacing: 0.06em;
}
.mobile-menu__link--cta::after { content: none; }
.mobile-menu__link--cta:active {
  background: #ffcb3d;
  transform: translateY(1px);
}

@keyframes menuItemIn {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 240, 235, 0.12);
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(243, 240, 235, 0.06);
  border: 1px solid rgba(243, 240, 235, 0.14);
  color: rgba(243, 240, 235, 0.7);
  font-family: var(--ff-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-menu__social:active {
  background: rgba(243, 240, 235, 0.14);
  color: var(--c-white);
  border-color: rgba(243, 240, 235, 0.28);
}

/* ======================================================================
   Hero — node 17:93 (1440 × 900)
   ====================================================================== */
.hero {
  position: relative;
  width: var(--page-w);
  height: 900px;
  overflow: hidden;
  background: var(--c-ink);
}

/* BG image — covers hero, face anchored to right edge per Figma. */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg img,
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

/* Top divider line — node 67:332 */
.hero__divider {
  position: absolute;
  left: 0;
  top: 2px;
  width: 1440px;
  height: 1px;
  pointer-events: none;
}
.hero__divider img { width: 100%; height: 1px; }

/* Hero content stack — flex column, uniform 40px gap between title,
   subtitle, primary CTA row, secondary CTA. Positioned once at
   left 60 / top 165 per Figma 39:200. */
.hero__stack {
  position: absolute;
  left: 60px;
  top: 165px;
  width: 894px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
/* 17:123 */
.hero__title {
  width: 874px;
  color: var(--c-white);
  font-family: var(--ff-display);
  font-size: 96px;
  line-height: 1;
  letter-spacing: -3.84px;
  font-weight: 400;
}
/* 17:124 */
.hero__subtitle {
  width: 699px;
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
}

/* Button group — CTA row + secondary stacked with 10px gap */
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/* Primary CTA — 21:138. Yellow button contains text + iris icon square.
   Ripple: iris circle expands from cursor on hover. --x/--y set by JS.
   Border-radius big + SVG-style squircle via superellipse mask approximation
   (border-radius:39px = half height for pill end caps, matches Figma iOS 100%). */
.btn.hero__cta,
.hero__cta {
  width: 650px;
  height: 78px;
  padding: 10px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  --ripple-bg: var(--c-iris);
}
.hero__cta .btn__label {
  flex: 1;
  text-align: center;
  text-decoration: underline;
}
.hero__cta .btn__icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  background: var(--c-iris);
  transition: background 0.2s ease;
}
.hero__cta .btn__icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--c-sun);
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMgMTEuMjUgTDE3LjI1IDExLjI1IEwxNy4yNSA4LjI1IEwyMSAxMiBMMTcuMjUgMTUuNzUgTDE3LjI1IDEyLjc1IEwzIDEyLjc1IFoiIGZpbGw9IndoaXRlIi8+PC9zdmc+") center / 24px 24px no-repeat;
  mask: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMgMTEuMjUgTDE3LjI1IDExLjI1IEwxNy4yNSA4LjI1IEwyMSAxMiBMMTcuMjUgMTUuNzUgTDE3LjI1IDEyLjc1IEwzIDEyLjc1IFoiIGZpbGw9IndoaXRlIi8+PC9zdmc+") center / 24px 24px no-repeat;
  transition: background 0.2s ease;
}

/* Hover: label white, icon square sun, arrow iris. Bg iris via ripple. */
.hero__cta .btn__label { transition: color 0.3s ease; }
.hero__cta:hover .btn__label { color: var(--c-white); }
.hero__cta:hover .btn__icon { background: var(--c-sun); }
.hero__cta:hover .btn__icon::before { background: var(--c-iris); }

/* Secondary CTA — 21:146 (w 650, h 78) */
.btn.hero__secondary,
.hero__secondary {
  width: 650px;
  border-radius: var(--r-sm);
  --ripple-bg: var(--c-white);
  transition: color 0.3s ease;
}
.hero__secondary:hover { color: var(--c-ink); }

/* ======================================================================
   Buttons
   ====================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font: 500 16px/1 var(--ff-sans);
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  white-space: nowrap;
  cursor: pointer;
}

/* 21:139 */
.btn--primary {
  flex: 1;
  height: 78px;
  padding: 15px;
  background: var(--c-sun);
  color: var(--c-ink);
}

/* 39:201 — iris icon square */
.btn--icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  padding: 17px;
  border-radius: var(--r-xs);
  background: var(--c-iris);
  color: var(--c-white);
  justify-content: flex-end;
  text-decoration: none;
}
.btn--icon img { width: 24px; height: 24px; }
.btn--icon:hover { background: #6862ef; }

/* 21:146 */
.btn--outline {
  height: 78px;
  padding: 15px;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

/* ======================================================================
   Responsive — below 1024px the JS zoom is disabled. Layout switches
   from absolute-positioned 1440 canvas to fluid stacks.
   ====================================================================== */
@media (max-width: 1023px) {
  .page {
    width: 100%;
    max-width: 100%;
  }

  /* Header — flex row, compact */
  .header {
    height: 64px;
    margin-bottom: -64px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    position: static;
    width: 70px;
    height: 20px;
  }
  .header__nav { display: none; }
  .header__book {
    position: relative;
    right: auto;
    top: auto;
    height: 44px;
    padding: 0 14px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
  }
  .header__burger { display: flex; }

  /* Hero — auto height, content stacks naturally */
  .hero {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 48px;
    display: flex;
    align-items: flex-end;
  }
  .hero__divider { width: 100%; }
  .hero__stack {
    position: relative;
    left: auto;
    top: auto;
    z-index: 2;
    width: 100%;
    gap: 28px;
  }
  .hero__bg video,
  .hero__bg img {
    object-position: 72% center;
  }
  .hero__copy { gap: 20px; }
  .hero__title {
    width: 100%;
    font-size: 48px;
    letter-spacing: -1.6px;
  }
  .hero__subtitle {
    width: 100%;
    font-size: 16px;
  }

  /* Buttons — full width */
  .hero__buttons { width: 100%; }
  .btn.hero__cta,
  .hero__cta,
  .btn.hero__secondary,
  .hero__secondary {
    width: 100%;
    height: 64px;
    font-size: 14px;
  }
  .hero__cta .btn__icon {
    width: 44px;
    height: 44px;
  }
}

/* Mobile — tighten further */
@media (max-width: 640px) {
  .hero { padding: 100px 16px 32px; }
  .header { padding: 10px 16px; }
  .hero__title {
    font-size: 36px;
    letter-spacing: -1.2px;
  }
  .hero__subtitle { font-size: 15px; }
  .btn.hero__cta,
  .hero__cta,
  .btn.hero__secondary,
  .hero__secondary {
    height: 56px;
    font-size: 13px;
  }
  .hero__cta .btn__icon { width: 40px; height: 40px; }
  .header__book {
    font-size: 10px;
    padding: 7px 10px;
  }
}

/* ======================================================================
   PROBLEM — Figma 54:260
   Iris-bg block with two-column head (title + intro), three photo cards
   on frosted stacks, and a closing uppercase statement with gradient
   flank-lines. 1440 design width inherited from .page zoom wrapper.
   ====================================================================== */
.problem {
  position: relative;
  width: 1440px;
  padding: 60px 60px 72px;
  background: var(--c-iris, #4F48EC);
  color: var(--c-white, #F3F0EB);
  overflow: visible;
  isolation: isolate;
}

/* Top iris dome — convex half-ellipse bulging UP into the hero with a
   soft iris outer glow (Figma 28:192). Rendered as a pseudo-element so
   its flat bottom edge butts up against the section's flat top edge,
   giving a pixel-perfect seam (SVG approach left a transparent gutter
   under the ellipse). border-radius 50%/100% on just the top corners
   carves the half-ellipse shape from a solid iris rectangle.          */
.problem__arc {
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
  height: 87px;
  background: var(--c-iris, #4F48EC);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -6px 40px 20px rgba(79, 72, 236, 0.45);
  pointer-events: none;
  z-index: 3;
}
/* Img inside is a legacy hook for the original SVG; no longer rendered.  */
.problem__arc img { display: none; }

/* Decorative curved lines graphic, opacity 0.15, behind everything.
   Wrapper clips own overflow so the SVG can bleed past the section
   bounds without needing overflow:hidden on the section (which would
   also eat the top dome arc).                                       */
.problem__deco {
  position: absolute;
  inset: 337px 0 auto 0;
  height: 644px;
  opacity: 0.15;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.problem__deco img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.problem > *:not(.problem__deco):not(.problem__arc) { position: relative; z-index: 1; }

/* ---- Head: 48px title | gradient divider | 22px intro ---- */
.problem__head {
  display: grid;
  grid-template-columns: 834px 126px 1fr;
  column-gap: 22px;
  align-items: start;
  margin-top: -60px;
}
.problem__title {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--c-white, #F3F0EB);
}
.problem__head-divider {
  display: block;
  height: 1px;
  width: 126px;
  margin-top: 38px;
  background: linear-gradient(90deg, #4F48EC 0%, #EDEAE1 100%);
}
.problem__intro {
  margin: 16px 0 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--c-white, #F3F0EB);
  max-width: 410px;
}

/* ---- Cards row ---- */
.problem__cards {
  margin-top: 112px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ---- Statement: left-aligned text w/ gradient flank-lines at viewport edges
       The lines sit at the absolute left/right of the 1440 canvas, cutting
       through the padding, hence the negative offsets that counter the
       section's horizontal padding.                                        */
.problem__statement {
  position: relative;
  margin-top: 108px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.problem__statement-line {
  position: absolute;
  top: 50%;
  height: 1px;
  width: 55px;
}
.problem__statement-line--l {
  left: -60px;
  background: linear-gradient(90deg, #4F48EC 0%, #EDEAE1 100%);
}
.problem__statement-line--r {
  right: -60px;
  background: linear-gradient(270deg, #4F48EC 0%, #EDEAE1 100%);
}
.problem__statement-text {
  margin: 0;
  padding-left: 5px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 43px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.45px;
  text-transform: uppercase;
  color: var(--c-white, #F3F0EB);
  white-space: nowrap;
}
.problem__statement-thin {
  font-weight: 100;
}

/* ======================================================================
   CHRONOBIOLOGY — Figma 77:30
   Cream panel with dome-up top edge (cream pokes into iris above), big
   100px Light headline, subtitle, three molecule cells on a flowing
   curve and a floating testimonial card. Layout mirrors Figma absolute
   positions (1440 canvas). Section bg is iris so the top-corner
   shoulders of the Union shape blend into the Problem section above.
   ====================================================================== */
.chrono {
  position: relative;
  width: 1440px;
  height: 949px;
  background: var(--c-iris, #4F48EC);
  overflow: hidden;
  isolation: isolate;
  color: var(--c-ink, #100E34);
}
.chrono__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.chrono__bg img {
  width: 100%;
  height: 100%;
  display: block;
}
.chrono__flow {
  position: absolute;
  left: -2.5px;
  top: 157px;
  width: 1445px;
  height: 491px;
  z-index: 1;
  pointer-events: none;
}
.chrono__flow img {
  width: 100%;
  height: 100%;
  display: block;
}

.chrono__title,
.chrono__sub {
  position: absolute;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-ink, #100E34);
  white-space: nowrap;
  z-index: 2;
}
.chrono__title {
  top: 163px;
  left: calc(50% - 416px);
  transform: translateY(-50%);
  font-size: 100px;
  letter-spacing: -4px;
}
.chrono__sub {
  top: 264px;
  left: calc(50% - 448px);
  transform: translateY(-50%);
  font-size: 45px;
}

/* ---- Molecule cells ---- */
.chrono__mol {
  position: absolute;
  z-index: 2;
}
.chrono__mol--cortisol {
  left: 60px;
  top: 359px;
  width: 343px;
  height: 246px;
}
.chrono__mol--metabolism {
  left: calc(25% + 109px);
  top: 411px;
  width: 475px;
  height: 356px;
}
.chrono__mol--melatonin {
  left: calc(62.5% + 137px);
  top: 359px;
  width: 343px;
  height: 246px;
}

.chrono__mol-img {
  position: absolute;
  top: 0;
  display: block;
  pointer-events: none;
  object-fit: contain;
}
.chrono__mol--cortisol .chrono__mol-img {
  left: 14.58%;
  right: 12.54%;
  aspect-ratio: 960 / 669;
}
.chrono__mol--metabolism .chrono__mol-img {
  left: 5.68%;
  right: 0;
  aspect-ratio: 1100 / 655;
}
.chrono__mol--melatonin .chrono__mol-img {
  left: 14.58%;
  right: 23.32%;
  aspect-ratio: 213 / 160;
}

.chrono__accent {
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, #F3F0EB 0%, #4F48EC 100%);
}
.chrono__mol--cortisol .chrono__accent { top: 186px; }
.chrono__mol--metabolism .chrono__accent { top: 273px; }
.chrono__mol--melatonin .chrono__accent { top: 185px; }

.chrono__mol-label {
  position: absolute;
  left: 50px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--c-ink, #100E34);
  white-space: nowrap;
}
.chrono__mol--cortisol .chrono__mol-label { top: 179px; }
.chrono__mol--metabolism .chrono__mol-label { top: 267px; }
.chrono__mol--melatonin .chrono__mol-label { top: 179px; }

.chrono__mol-body {
  position: absolute;
  left: 50px;
  margin: 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--c-ink, #100E34);
}
.chrono__mol--cortisol .chrono__mol-body {
  top: 212px;
  right: 0;
}
.chrono__mol--metabolism .chrono__mol-body {
  top: 300px;
  right: 27.79%;
}
.chrono__mol--melatonin .chrono__mol-body {
  top: 212px;
  right: 0;
}

/* ---- Floating testimonial card ---- */
.chrono__quote {
  position: absolute;
  left: calc(62.5% + 109px);
  top: 675px;
  width: 380px;
  height: 97px;
  z-index: 3;
}
.chrono__quote-card {
  position: absolute;
  top: 7px;
  left: 0;
  right: 9px;
  bottom: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.chrono__quote-avatar {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.chrono__quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chrono__quote-text {
  flex: 1;
  width: 261px;
  color: var(--c-ink, #100E34);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chrono__quote-name {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
}
.chrono__quote-body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}
.chrono__quote-mark {
  position: absolute;
  right: 0;
  top: -6px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--c-ink, #100E34);
}

/* ======================================================================
   ABOUT — Figma 67:308
   Iris block introducing Alexandr. Dome-up top arc dips into Chrono's
   cream band. Big justified quote headline, left-side cream "[" bracket
   decoration, three icon+copy rows under a section heading, photo card
   with frosted paper-stack layers and cream name plate at the
   bottom-left cutout, + Instagram / Facebook pill buttons.
   ====================================================================== */
.about {
  position: relative;
  width: 1440px;
  height: 796px;
  background: var(--c-iris, #4F48EC);
  overflow: visible;
  isolation: isolate;
  color: var(--c-white, #F3F0EB);
}
.about__arc {
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
  height: 100px;
  background: var(--c-iris, #4F48EC);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -3px 25px 15px rgba(79, 72, 236, 0.25);
  pointer-events: none;
  z-index: 3;
}

.about__bracket-outer,
.about__bracket-inner {
  position: absolute;
  top: 256px;
  height: 465px;
  border-radius: 20px;
  z-index: 1;
}
.about__bracket-outer {
  left: 60px;
  width: 79px;
  background: var(--c-white, #F3F0EB);
}
.about__bracket-inner {
  left: 90px;
  width: 49px;
  background: var(--c-iris, #4F48EC);
}

.about__quote {
  position: absolute;
  left: 60px;
  top: 124.5px;
  transform: translateY(-50%);
  width: 1320px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--c-white, #F3F0EB);
  text-align: justify;
  white-space: pre-wrap;
  z-index: 2;
}

.about__heading {
  position: absolute;
  left: 160px;
  top: 328.5px;
  transform: translateY(-50%);
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--c-white, #F3F0EB);
  white-space: nowrap;
  z-index: 2;
}

.about__row {
  position: absolute;
  left: 160px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.about__row--1 { top: 375px; }
.about__row--2 { top: 475px; }
.about__row--3 { top: 575px; }

.about__row-icon {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(243, 240, 235, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 0 0 1px rgba(243, 240, 235, 0.2);
  overflow: hidden;
}
.about__row-icon-crop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  overflow: hidden;
}
.about__row-icon-crop img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}
.about__row--1 .about__row-icon-crop img {
  width: 328.33px;
  height: 246.25px;
  left: -222.5px;
  top: -16px;
}
.about__row--2 .about__row-icon-crop img {
  width: 284.47px;
  height: 213.35px;
  left: -21.5px;
  top: -8.6px;
}
.about__row--3 .about__row-icon-crop img {
  width: 351.32px;
  height: 263.48px;
  left: -238.76px;
  top: -93.24px;
}

.about__row-text {
  width: 506px;
  margin: 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--c-white, #F3F0EB);
}
.about__row-text a,
.about__row-text .about__link {
  color: #FFBF18;
  text-decoration: underline;
}

/* ---- Photo card: frosted paper stack + photo + cream name plate ---- */
.about__photo {
  position: absolute;
  left: 893px;
  top: 216px;
  width: 487px;
  height: 580px;
  z-index: 2;
}
.about__photo-back,
.about__photo-mid {
  position: absolute;
  border-radius: 20px;
}
.about__photo-back {
  top: 10.34%;
  right: 0;
  bottom: 10.34%;
  left: 64.27%;
  background: rgba(243, 240, 235, 0.05);
}
.about__photo-mid {
  top: 5.17%;
  right: 6.16%;
  bottom: 5.17%;
  left: 58.11%;
  background: rgba(243, 240, 235, 0.25);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.about__photo-card {
  position: absolute;
  top: 0;
  right: 12.32%;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  overflow: hidden;
}
.about__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-name {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 18px 31px 19px 30px;
  background: var(--c-white, #F3F0EB);
  border-top-right-radius: 10px;
  border-bottom-left-radius: 20px;
  text-transform: uppercase;
  color: var(--c-ink, #100E34);
}
.about__photo-name p {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.about__photo-name-title { font-size: 18px; }
.about__photo-name-sub { font-size: 13px; }

/* ---- Social buttons ---- */
.about__social {
  position: absolute;
  top: 762px;
  padding: 10px;
  border: 1px solid var(--c-white, #F3F0EB);
  border-radius: 5px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-white, #F3F0EB);
  background: transparent;
  z-index: 2;
  --ripple-bg: var(--c-white);
  transition: color 0.3s ease;
}
.about__social:hover { color: var(--c-ink); }
.about__social--ig { left: 60px; }
.about__social--fb { left: 159px; }
.about__social--wa { left: 258px; }

/* ======================================================================
   WORKSHOP — Figma 256:340
   Iris section, two full-width cream hairlines (top + mid), 48px headline
   on the left, 22px Futura body on the right, and a 1320×700 rounded
   photo slider with dark gradient overlay, centered caption, 5-dot
   pagination, and a pair of circular arrow controls that sit in the
   iris gutter outside the card.
   ====================================================================== */
.workshop {
  position: relative;
  width: 1440px;
  height: 1072px;
  background: var(--c-iris, #4F48EC);
  overflow: hidden;
  isolation: isolate;
  color: var(--c-white, #F3F0EB);
}
.workshop__hairline {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(79, 72, 236, 0) 0%,
    #F3F0EB 50%,
    rgba(79, 72, 236, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.workshop__hairline--top { top: 97px; }
.workshop__hairline--mid { top: 670px; }

.workshop__title {
  position: absolute;
  top: 238px;
  left: calc(50% - 660px);
  transform: translateY(-50%);
  width: 640px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--c-white, #F3F0EB);
  z-index: 2;
}
.workshop__lede {
  position: absolute;
  top: 232.5px;
  left: 874px;
  transform: translateY(-50%);
  width: 506px;
  margin: 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  color: var(--c-white, #F3F0EB);
  z-index: 2;
}

/* ---- Slide card ---- */
.workshop__slider {
  position: absolute;
  top: 319px;
  left: 60px;
  width: 1320px;
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
.workshop__slide {
  position: absolute;
  inset: 0;
  border-radius: 20px;
}
.workshop__slide-img {
  position: absolute;
  top: -6.13%;
  left: -0.02%;
  width: 100%;
  height: 125.71%;
  object-fit: cover;
}
.workshop__slide-shade {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.5) 15%,
    rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.workshop__slide-caption {
  position: absolute;
  top: 633px;
  left: calc(50% - 4.5px);
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.workshop__dots {
  position: absolute;
  top: 670px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}
.workshop__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.workshop__dot.is-active {
  background: #fff;
}

/* ---- Arrow controls ---- */
.workshop__arrow {
  position: absolute;
  top: 644px;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  cursor: pointer;
  z-index: 3;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.workshop__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.workshop__arrow:active {
  transform: scale(0.96);
}
.workshop__arrow img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.workshop__arrow--prev { left: 35px; }
.workshop__arrow--next { left: 1355px; }

/* ======================================================================
   ECOSYSTEM — Figma 259:364
   Cream section with bottom convex arc over iris bg, centered title,
   three cards: Shop (ink), Personal Consulting (iris, wide+dropped),
   For Business (sun).
   ====================================================================== */
.ecosystem {
  position: relative;
  width: 1440px;
  height: 950px;
  background: var(--c-iris, #4F48EC);
  overflow: visible;
  isolation: isolate;
  color: var(--c-ink, #100E34);
}
.ecosystem__seam {
  position: absolute;
  left: 0;
  top: -93px;
  width: 1440px;
  height: 180px;
  background: url("assets/img/ecosystem/seam-ellipse.svg") center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}
.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/ecosystem/bg-union.svg") center / 100% 100% no-repeat;
  z-index: 0;
}
.ecosystem__title {
  position: absolute;
  left: 50%;
  top: 143px;
  transform: translateX(-50%);
  width: 640px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  color: var(--c-ink, #100E34);
  z-index: 1;
}

/* ---- Card base ---- */
.eco-card {
  position: absolute;
  height: 525px;
  border-radius: 20px;
  corner-shape: squircle;
  -webkit-corner-shape: squircle;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
}
.eco-card__media {
  position: absolute;
  top: 0;
  left: 9.52%;
  right: 9.52%;
  height: 280px;
  border-radius: 20px;
  corner-shape: squircle;
  -webkit-corner-shape: squircle;
  overflow: hidden;
}
.eco-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eco-card__kicker {
  position: absolute;
  top: 310px;
  left: 9.52%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.eco-card__desc {
  position: absolute;
  top: 343px;
  left: 9.52%;
  right: 9.52%;
  margin: 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
}
.eco-card__btn {
  position: absolute;
  left: 9.52%;
  right: 9.52%;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--c-ink, #100E34);
  border-radius: 10px;
  corner-shape: squircle;
  -webkit-corner-shape: squircle;
  background: transparent;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.32px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--c-ink, #100E34);
  box-sizing: border-box;
  --ripple-bg: var(--c-ink);
  transition: color 0.3s ease;
}
.eco-card__btn:hover { color: var(--c-white); }
.eco-card__btn--outline-white {
  border-color: var(--c-white, #F3F0EB);
  color: var(--c-white, #F3F0EB);
  --ripple-bg: var(--c-white);
}
.eco-card__btn--outline-white:hover { color: var(--c-ink); }
.eco-card__btn--outline-dark {
  border-color: var(--c-ink, #100E34);
  color: var(--c-ink, #100E34);
}
.eco-card__btn--solid {
  background: var(--c-white, #F3F0EB);
  border-color: var(--c-white, #F3F0EB);
  color: var(--c-ink, #100E34);
}

/* ---- Shop (dark) ---- */
.eco-card--shop {
  left: 60px;
  top: 272px;
  width: 315px;
  background: var(--c-ink, #100E34);
  color: var(--c-white, #F3F0EB);
}

/* ---- B2B (sun) ---- */
.eco-card--b2b {
  left: 1065px;
  top: 272px;
  width: 315px;
  background: var(--c-sun, #FFBF18);
  color: var(--c-ink, #100E34);
}

/* ---- Personal Consulting (iris, wide, dropped) ---- */
.eco-card--consulting {
  left: 395px;
  top: 322px;
  width: 650px;
  background: var(--c-iris, #4F48EC);
  color: var(--c-white, #F3F0EB);
}
.eco-card--consulting .eco-card__media--wide {
  left: 4.62%;
  right: 4.62%;
}
.eco-card--consulting .eco-card__kicker {
  left: 5.23%;
}
.eco-card--consulting .eco-card__desc--wide {
  top: 343px;
  left: 5.23%;
  right: 49.69%;
}
.eco-card--consulting .eco-card__price-label {
  position: absolute;
  top: 310px;
  right: 4.62%;
  margin: 0;
  width: 98px;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-align: right;
  opacity: 0.6;
}
.eco-card--consulting .eco-card__price {
  position: absolute;
  top: 340px;
  right: 4.62%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 40px;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}
.eco-card--consulting .eco-card__btn {
  left: 4.62%;
  right: 4.62%;
}

/* ======================================================================
   TESTIMONIALS — Figma 261:383
   Iris section, white headline top-left, right-top slider arrows,
   horizontal track of paper-stack quote cards.
   ====================================================================== */
.testimonials {
  position: relative;
  width: 1440px;
  height: 650px;
  background: var(--c-iris, #4F48EC);
  overflow: hidden;
  isolation: isolate;
  color: var(--c-white, #F3F0EB);
}
.testimonials__title {
  position: absolute;
  left: 60px;
  top: 143px;
  width: 729px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--c-white, #F3F0EB);
  z-index: 1;
}
.testimonials__track {
  position: absolute;
  top: 292px;
  left: 0;
  width: 100%;
  height: 286px;
  display: flex;
  gap: 20px;
  padding: 0 60px;
  box-sizing: border-box;
  z-index: 1;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 60px;
  scrollbar-width: none;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonials__arrow {
  position: absolute;
  top: 150px;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  cursor: pointer;
  z-index: 2;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.testimonials__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.testimonials__arrow:active { transform: scale(0.96); }
.testimonials__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
.testimonials__arrow--prev { left: 1270px; }
.testimonials__arrow--next { left: 1330px; }

/* ---- Card ---- */
.tt-card {
  position: relative;
  flex: 0 0 483px;
  width: 483px;
  height: 286px;
  scroll-snap-align: start;
}
.tt-card__stack {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 246px;
  height: 40px;
  background: rgba(243, 240, 235, 0.05);
  border-radius: 20px;
  z-index: 1;
}
.tt-card__stack--mid {
  left: 20px;
  right: 20px;
  top: 246px;
  height: 20px;
  background: rgba(243, 240, 235, 0.25);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: 2;
}
.tt-card__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 246px;
  background: var(--c-white, #F3F0EB);
  border-radius: 20px;
  z-index: 3;
  color: var(--c-ink, #100E34);
}
.tt-card__avatar {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.tt-card__name {
  position: absolute;
  left: 148px;
  top: 40px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.tt-card__role {
  position: absolute;
  left: 148px;
  top: 63px;
  margin: 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.5;
  white-space: nowrap;
}
.tt-card__pill {
  position: absolute;
  left: 148px;
  top: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--c-ink, #100E34);
  border-radius: 5px;
  background: transparent;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-ink, #100E34);
  text-decoration: none;
}
.tt-card__quote {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 160px;
  margin: 0;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
}

/* ======================================================================
   FAQ — Figma 261:394
   Cream section with top concave arc + rounded bottom corners over iris.
   Centered headline, stacked iris accordion rows (DS ds-faq).
   ====================================================================== */
.faq {
  position: relative;
  width: 1440px;
  height: 747px;
  background: var(--c-iris, #4F48EC);
  overflow: visible;
  isolation: isolate;
  color: var(--c-ink, #100E34);
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/faq/bg-union.svg") center / 100% 100% no-repeat;
  z-index: 0;
}
.faq__title {
  position: absolute;
  left: 50%;
  top: 93px;
  transform: translateX(-50%);
  width: 770px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  color: var(--c-ink, #100E34);
  z-index: 1;
}
.faq__list {
  position: absolute;
  left: 60px;
  top: 242px;
  width: 1320px;
  gap: 2px;
  z-index: 1;
}
.faq .ds-faq__row {
  width: 1320px;
  max-width: 1320px;
  padding: 25px 30px;
}
/* Figma toggle icon — local plus svg on closed, × svg on open. */
.faq .ds-faq__toggle {
  width: 18px;
  height: 18px;
  background: url("assets/img/faq/icon-plus.svg") center / contain no-repeat;
  transition: width 220ms ease, height 220ms ease, background-image 220ms ease;
}
.faq .ds-faq__toggle::before,
.faq .ds-faq__toggle::after {
  display: none;
}
.faq .ds-faq__row[open] .ds-faq__toggle {
  width: 24px;
  height: 24px;
  background-image: url("assets/img/faq/icon-x-large.svg");
}

/* JS-driven smooth accordion — see inline script in index.html.
   CSS only handles padding/icon transitions; height is animated via JS for
   reliable cross-browser behavior (native <details> snap is avoided). */
.faq .ds-faq__row {
  overflow: hidden;
  transition: padding 320ms ease;
}
.faq .ds-faq__row.is-animating {
  will-change: height;
}
.faq .ds-faq__answer {
  transition: opacity 220ms ease;
}
.faq .ds-faq__row:not([open]) .ds-faq__answer {
  opacity: 0;
}
.faq .ds-faq__row[open] .ds-faq__answer {
  opacity: 1;
}

/* ======================================================================
   CLOSER — Figma 263:408
   Iris wrapper with sun CTA card (photo bg + dark overlay) and dark
   gradient footer (mandala neon rings, contacts, social, watermark).
   ====================================================================== */
.closer {
  position: relative;
  width: 1440px;
  height: 1400px;
  background: var(--c-iris, #4F48EC);
  overflow: hidden;
  isolation: isolate;
  color: var(--c-white, #F3F0EB);
}

/* ---- CTA card ---- */
.cta {
  position: absolute;
  top: 130px;
  left: 60px;
  width: 1320px;
  height: 393px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-sun, #FFBF18);
}
.cta__media {
  position: absolute;
  left: 30px;
  top: 0;
  width: 1260px;
  height: 393px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}
.cta__media img {
  position: absolute;
  left: 0;
  top: -61.07%;
  width: 100%;
  height: 223.92%;
  object-fit: cover;
}
.cta__shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 52, 0.6);
  border-radius: 20px;
}
.cta__title {
  position: absolute;
  left: 50%;
  top: 77px;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--c-white, #F3F0EB);
  white-space: nowrap;
  z-index: 2;
}
.cta__desc {
  position: absolute;
  left: 643.5px;
  top: 169.5px;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 557px;
  font-family: "Futura PT", Futura, "Century Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  text-align: center;
  color: var(--c-white, #F3F0EB);
  z-index: 2;
}
.cta__cta-btn {
  position: absolute;
  left: 50%;
  top: 245px;
  transform: translateX(-50%);
  z-index: 2;
}
.cta__cta-btn .btn__label {
  white-space: normal;
  text-align: center;
}

/* ---- Footer ---- */
.site-footer {
  position: absolute;
  top: 623px;
  left: 58px;
  width: 1320px;
  height: 777px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  color: var(--c-ink, #100E34);
  background:
    radial-gradient(
      ellipse 99.414% 58.519% at 50% 0%,
      rgba(138, 77, 243, 0)     0%,
      rgba(197, 134, 134, 0.5)  30.769%,
      rgba(226, 163, 79, 0.75)  46.154%,
      rgba(240, 177, 51, 0.875) 53.846%,
      rgba(255, 191, 24, 1)     61.538%,
      rgba(195, 147, 31, 1)     71.154%,
      rgba(136, 103, 38, 1)     80.769%,
      rgba(106, 80,  42, 1)     85.577%,
      rgba(76,  58,  45, 1)     90.385%,
      rgba(46,  36,  49, 1)     95.192%,
      rgba(31,  25,  50, 1)     97.596%,
      rgba(16,  14,  52, 1)     100%
    ),
    var(--c-ink, #100E34);
}
.site-footer__mandala {
  position: absolute;
  left: 4.17%;
  right: 4.54%;
  top: -105.02%;
  bottom: 71.14%;
  pointer-events: none;
  z-index: 0;
}
.site-footer__mandala img {
  width: 100%;
  height: 100%;
  display: block;
}
.site-footer__col {
  position: absolute;
  z-index: 2;
}
.site-footer__col--left {
  left: 60px;
  top: 60px;
  width: 229px;
}
.site-footer__col--right {
  left: 1090px;
  top: 60px;
  width: 170px;
}
.site-footer__label,
.site-footer__addr,
.site-footer__phone,
.site-footer__copyright {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  margin: 0;
  color: var(--c-ink, #100E34);
}
.site-footer__addr { margin-top: 16px; }
.site-footer__phone {
  display: inline-block;
  margin-top: 10px;
  color: var(--c-ink, #100E34);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.site-footer__social {
  position: absolute;
  left: 0;
  width: 170px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--c-white, #F3F0EB);
  border-radius: 10px;
  background: transparent;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.32px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--c-white, #F3F0EB);
  --ripple-bg: var(--c-iris);
  transition: color 0.3s ease;
}
.site-footer__social:hover { color: var(--c-white); }
.site-footer__social--ig { top: 0; }
.site-footer__social--fb { top: 55px; }
.site-footer__watermark {
  position: absolute;
  left: 60px;
  top: 602px;
  width: 1200px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 135px;
  line-height: 1;
  color: var(--c-white, #F3F0EB);
  opacity: 0.15;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
.site-footer__copyright {
  position: absolute;
  left: 60px;
  top: 574px;
  color: var(--c-paper, #FFFBEF);
  z-index: 3;
}
.site-footer__privacy {
  position: absolute;
  right: 60px;
  top: 574px;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  text-align: right;
  color: var(--c-paper, #FFFBEF);
  text-decoration: none;
  z-index: 3;
}

/* ======================================================================
   MOBILE — all sections ≤1023px
   Converts absolute-positioned 1440 canvas sections to fluid vertical
   stacks. Desktop pixel coords all reset; flow layout takes over.
   ====================================================================== */
@media (max-width: 1023px) {

  /* ── PROBLEM ────────────────────────────────────────────────────── */
  .problem {
    width: 100%;
    padding: 100px 20px 60px;
  }
  .problem__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
  }
  .problem__head-divider { display: none; }
  .problem__title { font-size: 32px; letter-spacing: -0.5px; }
  .problem__intro  { max-width: 100%; font-size: 17px; margin-top: 0; }

  .problem__cards {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 12px;
  }
  .ds-card--problem {
    width: 100%;
    max-width: 420px;
    height: 360px;
  }
  .ds-card--problem__label { font-size: 14px; }
  /* parallax on problem cards: off on mobile */
  .problem__cards .ds-card:nth-child(1),
  .problem__cards .ds-card:nth-child(2),
  .problem__cards .ds-card:nth-child(3) {
    animation: none;
  }

  .problem__statement { margin-top: 40px; justify-content: center; }
  .problem__statement-line--l { left: -20px; }
  .problem__statement-line--r { right: -20px; }
  .problem__statement-text {
    font-size: 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .problem__statement-thin { display: block; }

  /* ── CHRONO ─────────────────────────────────────────────────────── */
  .chrono {
    width: 100%;
    height: auto;
    min-height: unset;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
  }
  .chrono__bg {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: -1;
  }
  .chrono__bg img { object-fit: cover; height: 100%; }
  .chrono__flow { display: none; }

  .chrono__title {
    position: static;
    transform: none;
    font-size: 52px;
    letter-spacing: -2px;
    text-align: center;
    white-space: normal;
  }
  .chrono__sub {
    position: static;
    transform: none;
    font-size: 22px;
    text-align: center;
    white-space: normal;
    margin-top: 8px;
  }

  .chrono__mol {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .chrono__mol--cortisol,
  .chrono__mol--metabolism,
  .chrono__mol--melatonin { left: auto; top: auto; }
  .chrono__mol-img {
    position: static;
    width: 60%;
    max-width: 240px;
    height: auto;
    align-self: center;
    aspect-ratio: auto;
  }
  .chrono__mol--cortisol .chrono__mol-img,
  .chrono__mol--metabolism .chrono__mol-img,
  .chrono__mol--melatonin .chrono__mol-img {
    left: auto; right: auto;
  }
  .chrono__accent { position: static; display: block; margin: 16px 0 4px; }
  .chrono__mol-label { position: static; top: auto; left: auto; }
  .chrono__mol-body  { position: static; top: auto; left: auto; right: auto; margin-top: 4px; }

  .chrono__quote {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 40px;
    left: auto; top: auto;
  }
  .chrono__quote-card { position: static; flex-direction: column; gap: 12px; align-items: flex-start; }
  .chrono__quote-mark { display: none; }
  /* parallax off */
  .chrono__mol--cortisol,
  .chrono__mol--metabolism,
  .chrono__mol--melatonin { animation: none; }

  /* ── ABOUT ──────────────────────────────────────────────────────── */
  .about {
    width: 100%;
    height: auto;
    padding-bottom: 60px;
    overflow: visible;
    margin-top: -60px;
  }
  .about__arc { height: 80px; }
  .about__bracket-outer,
  .about__bracket-inner { display: none; }

  .about__quote {
    position: static;
    width: auto;
    transform: none;
    font-size: 28px;
    margin: 80px 20px 40px;
    text-align: left;
    white-space: normal;
  }
  .about__heading {
    position: static;
    transform: none;
    white-space: normal;
    font-size: 18px;
    margin: 0 20px 24px;
  }
  .about__row {
    position: static;
    left: auto; top: auto;
    margin: 0 20px 16px;
  }
  .about__row-text { width: auto; font-size: 16px; }

  .about__photo {
    position: relative;
    top: auto; left: auto; right: auto;
    z-index: auto;
    width: calc(100% - 40px);
    height: 420px;
    margin: 40px 20px 0;
  }
  .about__photo-back,
  .about__photo-mid { display: none; }
  .about__photo-card { right: 0; }

  .about__socials {
    display: flex;
    gap: 8px;
    margin: 24px 20px 0;
  }
  .about__social {
    position: static;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
  }

  /* parallax off */
  .about__photo-back,
  .about__photo-mid { animation: none; }

  /* ── WORKSHOP ───────────────────────────────────────────────────── */
  .workshop {
    width: 100%;
    height: auto;
    padding: 60px 0 60px;
    overflow: visible;
  }
  .workshop__hairline { display: none; }
  .workshop__hairline--top { display: block; top: 0; }

  .workshop__title {
    position: static;
    transform: none;
    font-size: 32px;
    padding: 0 20px;
    margin: 0 0 20px;
    width: auto;
  }
  .workshop__lede {
    position: static;
    transform: none;
    font-size: 17px;
    padding: 0 20px;
    margin: 0 0 32px;
    width: auto;
  }

  .workshop__slider {
    position: relative;
    top: auto; left: auto;
    z-index: auto;
    width: calc(100% - 32px);
    margin: 0 16px;
    height: 320px;
    overflow: hidden;
  }
  .workshop__slide-caption {
    position: absolute;
    top: auto;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    white-space: normal;
    text-align: center;
    width: 80%;
  }
  .workshop__dots {
    top: auto;
    bottom: 16px;
  }
  .workshop__arrow {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  .workshop__arrow--prev { margin-left: 20px; margin-right: 8px; }
  .workshop__arrow--next { margin-right: 20px; }

  /* ── ECOSYSTEM ──────────────────────────────────────────────────── */
  .ecosystem {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
  }
  .ecosystem__seam {
    width: 100%;
    top: -60px;
    height: 120px;
  }
  .ecosystem__title {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    font-size: 32px;
    text-align: center;
    padding: 80px 20px 0;
    margin-bottom: 32px;
  }

  .eco-card {
    position: relative;
    z-index: 1;
    top: auto; left: auto; right: auto;
    width: calc(100% - 40px);
    height: auto;
    min-height: 480px;
    margin: 0 20px 16px;
    display: flex;
    flex-direction: column;
  }
  .eco-card__media {
    position: relative;
    left: auto; right: auto;
    height: 200px;
    border-radius: 16px;
    margin: 0 9.52%;
  }
  .eco-card__kicker {
    position: static;
    display: block;
    margin: 16px 9.52% 0;
  }
  .eco-card__desc {
    position: static;
    display: block;
    margin: 8px 9.52% 0;
    right: auto;
  }
  .eco-card__btn {
    position: static;
    display: flex;
    width: calc(100% - 19.04%);
    margin: auto 9.52% 9.52%;
    height: 52px;
  }
  .eco-card--shop,
  .eco-card--b2b,
  .eco-card--consulting { top: auto; left: auto; right: auto; width: calc(100% - 40px); }
  .eco-card--consulting { min-height: 520px; order: 1; }
  .eco-card--shop { order: 2; }
  .eco-card--b2b { order: 3; }
  .eco-card--consulting .eco-card__media--wide {
    left: auto;
    right: auto;
    margin: 0 9.52%;
  }
  .eco-card--consulting .eco-card__desc--wide {
    right: auto;
  }
  .eco-card--consulting .eco-card__price,
  .eco-card--consulting .eco-card__price-label {
    position: static;
    display: block;
    text-align: left;
    margin: 0 9.52%;
  }
  .eco-card--consulting .eco-card__price { font-size: 32px; margin-top: 4px; }
  .eco-card--consulting .eco-card__btn {
    left: auto; right: auto;
    width: calc(100% - 19.04%);
    margin: 16px 9.52% 9.52%;
  }

  /* ── TESTIMONIALS ───────────────────────────────────────────────── */
  .testimonials {
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 0 0 60px;
  }
  .testimonials__title {
    position: static;
    font-size: 32px;
    width: auto;
    padding: 60px 20px 32px;
  }
  .testimonials__arrow {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: auto; left: auto;
  }
  /* arrows row below track */
  .testimonials__arrow--prev { margin-left: 20px; margin-right: 8px; margin-top: 20px; }
  .testimonials__arrow--next { margin-top: 20px; }

  .testimonials__track {
    position: static;
    flex-direction: row;
    height: auto;
    gap: 16px;
    padding: 0 20px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .testimonials__track::-webkit-scrollbar { display: none; }
  .tt-card {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    height: auto;
    min-height: 280px;
    scroll-snap-align: start;
  }
  .tt-card__body { height: auto; min-height: 260px; padding-bottom: 24px; }
  .tt-card__quote {
    position: static;
    padding: 0 30px;
    margin-top: 160px;
  }

  /* ── FAQ ────────────────────────────────────────────────────────── */
  .faq {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-bottom: 20px;
  }
  .faq__title {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    transform: none;
    font-size: 32px;
    width: auto;
    text-align: center;
    padding: 80px 20px 0;
    margin-bottom: 32px;
  }
  .faq__list {
    position: relative;
    z-index: 1;
    left: auto; top: auto;
    width: auto;
    padding: 0 16px;
  }
  .faq .ds-faq__row {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
  }

  /* ── CLOSER / CTA ───────────────────────────────────────────────── */
  .closer {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .cta {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 40px);
    margin: 20px 20px 0;
    height: auto;
    min-height: 380px;
    overflow: hidden;
  }
  .cta__media {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .cta__media img { position: static; width: 100%; height: 100%; object-fit: cover; }
  .cta__title {
    position: relative;
    z-index: 2;
    left: auto; top: auto;
    transform: none;
    font-size: 32px;
    text-align: center;
    padding: 60px 20px 16px;
    white-space: normal;
    width: auto;
  }
  .cta__desc {
    position: relative;
    z-index: 2;
    left: auto; top: auto;
    transform: none;
    width: auto;
    font-size: 18px;
    padding: 0 20px;
    text-align: center;
  }
  .cta .cta__cta-btn {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% - 40px);
    height: 56px;
    margin: 24px 20px 40px;
  }

  /* ── FOOTER ─────────────────────────────────────────────────────── */
  .site-footer {
    position: static;
    width: calc(100% - 40px);
    margin: 40px 20px 0;
    height: auto;
    padding: 60px 30px 60px;
    border-radius: 20px 20px 0 0;
  }
  .site-footer__col { position: static; width: auto; }
  .site-footer__col--left { margin-bottom: 40px; }
  .site-footer__col--right {
    position: static;
    left: auto;
    top: auto;
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .site-footer__social {
    position: static;
    display: flex;
    flex: 1;
    width: auto;
    margin-top: 0;
  }
  .site-footer__social--fb { margin-left: 0; top: auto; }
  .site-footer__watermark {
    position: static;
    font-size: 48px;
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .site-footer__copyright {
    position: static;
    margin-top: 16px;
  }
  .site-footer__privacy {
    position: static;
    display: block;
    margin-top: 8px;
    text-align: left;
  }
  .site-footer__mandala { display: none; }
}

/* ── 640px tighten ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .chrono__title { font-size: 40px; }
  .about__quote { font-size: 22px; }
  .workshop__slider { height: 260px; }
  .eco-card { min-height: 440px; }
  .tt-card { min-height: 260px; }
  .cta__title { font-size: 26px; }
  .site-footer__watermark { font-size: 32px; }
}

/* ======================================================================
   Parallax — scroll-driven transform on foreground elements only.
   Strictly no backgrounds: depth comes from content layers drifting at
   different speeds. animation-timeline: view() per element.
   ====================================================================== */
@supports (animation-timeline: view()) {
  @keyframes parallax-up-sm {
    from { transform: translateY(80px); }
    to   { transform: translateY(-80px); }
  }
  @keyframes parallax-up-md {
    from { transform: translateY(140px); }
    to   { transform: translateY(-140px); }
  }
  @keyframes parallax-up-lg {
    from { transform: translateY(200px); }
    to   { transform: translateY(-200px); }
  }

  /* Chrono — outer molecules slow, center drifts more for depth. */
  .chrono__mol--cortisol,
  .chrono__mol--melatonin {
    animation: parallax-up-sm linear both;
    animation-timeline: view();
    animation-range: cover;
  }
  .chrono__mol--metabolism {
    animation: parallax-up-md linear both;
    animation-timeline: view();
    animation-range: cover;
  }

  /* About — photo stack depth layers. */
  .about__photo-back {
    animation: parallax-up-lg linear both;
    animation-timeline: view();
    animation-range: cover;
  }
  .about__photo-mid {
    animation: parallax-up-md linear both;
    animation-timeline: view();
    animation-range: cover;
  }

  /* Problem — 3 photo cards in alternating wave (gentle: paper stack
     under each card must stay aligned, so amplitudes are moderate). */
  @keyframes parallax-up-xs {
    from { transform: translateY(35px); }
    to   { transform: translateY(-35px); }
  }
  .problem__cards .ds-card:nth-child(1),
  .problem__cards .ds-card:nth-child(3) {
    animation: parallax-up-xs linear both;
    animation-timeline: view();
    animation-range: cover;
  }
  .problem__cards .ds-card:nth-child(2) {
    animation: parallax-up-sm linear both;
    animation-timeline: view();
    animation-range: cover;
  }

  /* Workshop — slide image drifts inside slider frame (sm — image has
     only ~25% vertical headroom inside overflow:hidden slider). */
  .workshop__slide-img {
    animation: parallax-up-sm linear both;
    animation-timeline: view();
    animation-range: cover;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chrono__mol--cortisol,
  .chrono__mol--metabolism,
  .chrono__mol--melatonin,
  .about__photo-back,
  .about__photo-mid,
  .problem__cards .ds-card,
  .workshop__slide-img {
    animation: none !important;
  }
}

/* ======================================================================
   BOOKING MODAL
   ====================================================================== */
.book-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: none;
  border-radius: 20px;
  padding: 0;
  background: var(--c-white);
  color: var(--c-ink);
  box-shadow: 0 24px 80px rgba(16, 14, 52, 0.25);
  overscroll-behavior: contain;
}

.book-modal::backdrop {
  background: rgba(16, 14, 52, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Prevent .page zoom from affecting modal */
.book-modal { zoom: 1; }

.book-modal__inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.book-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(16, 14, 52, 0.2);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.book-modal__close:hover {
  background: rgba(16, 14, 52, 0.06);
  border-color: var(--c-ink);
}

.book-modal__title {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  padding-right: 40px;
}

.book-modal__subtitle {
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(16, 14, 52, 0.6);
  margin-top: -8px;
}

.book-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.book-modal__label {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(16, 14, 52, 0.5);
}
.book-modal__label span { color: var(--c-iris); }

.book-modal__input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(16, 14, 52, 0.18);
  border-radius: 10px;
  background: #fff;
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.book-modal__input::placeholder { color: rgba(16, 14, 52, 0.32); }
.book-modal__input:focus {
  border-color: var(--c-iris);
  box-shadow: 0 0 0 3px rgba(79, 72, 236, 0.14);
}
.book-modal__input:user-invalid {
  border-color: #e0433a;
  box-shadow: 0 0 0 3px rgba(224, 67, 58, 0.12);
}

.book-modal__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23100E34' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.book-modal__textarea {
  resize: vertical;
  min-height: 80px;
}

.book-modal__submit {
  margin-top: 4px;
  padding: 15px 24px;
  border-radius: 10px;
  border: none;
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.book-modal__submit:hover { background: var(--c-iris); }
.book-modal__submit:active { transform: scale(0.98); }

.book-modal__success {
  text-align: center;
  padding: 40px 0 20px;
}
.book-modal__success-text {
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--c-ink);
}

@media (max-width: 600px) {
  .book-modal__inner { padding: 28px 20px; }
  .book-modal__title { font-size: 22px; }
}

/* ======================================================================
   CHRONOTYPE QUIZ MODAL
   ====================================================================== */
.quiz-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: none;
  border-radius: 20px;
  padding: 0;
  background: var(--c-white);
  color: var(--c-ink);
  box-shadow: 0 24px 80px rgba(16, 14, 52, 0.25);
  overscroll-behavior: contain;
  zoom: 1;
}
.quiz-modal::backdrop {
  background: rgba(16, 14, 52, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quiz-modal__inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  min-height: 420px;
}

.quiz-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(16, 14, 52, 0.2);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.quiz-modal__close:hover { background: rgba(16, 14, 52, 0.06); border-color: var(--c-ink); }

.quiz-modal__progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}
.quiz-modal__progress-track {
  flex: 1;
  height: 3px;
  background: rgba(16, 14, 52, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.quiz-modal__progress-fill {
  height: 100%;
  background: var(--c-iris);
  border-radius: 2px;
  width: 0%;
  transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.quiz-modal__progress-label {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(16, 14, 52, 0.4);
  white-space: nowrap;
}

.quiz-modal__screen { display: none; flex-direction: column; gap: 16px; }
.quiz-modal__screen:not([hidden]) { display: flex; }
.quiz-modal__progress[hidden] { display: none; }
.quiz-modal__progress { display: flex; }

.quiz-modal__intro-icon { font-size: 48px; line-height: 1; }

.quiz-modal__title {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  padding-right: 40px;
  margin: 0;
}
.quiz-modal__subtitle {
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(16, 14, 52, 0.6);
  margin: 0;
}

.quiz-modal__start {
  margin-top: 8px;
  padding: 15px 24px;
  border-radius: 10px;
  border: none;
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}
.quiz-modal__start:hover { background: var(--c-iris); }

.quiz-modal__question {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 4px 0;
  padding-right: 40px;
}

.quiz-modal__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-modal__option {
  padding: 16px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(16, 14, 52, 0.15);
  background: transparent;
  color: var(--c-ink);
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.quiz-modal__option:hover { border-color: var(--c-iris); background: rgba(79, 72, 236, 0.05); }
.quiz-modal__option:active { transform: scale(0.97); background: var(--c-iris); color: #fff; border-color: var(--c-iris); }

.quiz-modal__email-form { display: flex; flex-direction: column; gap: 12px; }
.quiz-modal__email-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(16, 14, 52, 0.18);
  border-radius: 10px;
  background: #fff;
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.quiz-modal__email-input::placeholder { color: rgba(16, 14, 52, 0.32); }
.quiz-modal__email-input:focus { border-color: var(--c-iris); box-shadow: 0 0 0 3px rgba(79, 72, 236, 0.14); }

.quiz-modal__submit {
  padding: 15px 24px;
  border-radius: 10px;
  border: none;
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s;
}
.quiz-modal__submit:hover { background: var(--c-iris); }

.quiz-modal__result { display: flex; flex-direction: column; gap: 14px; }

.quiz-modal__type-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 100px;
  color: #fff;
  align-self: flex-start;
}
.quiz-modal__type-icon { font-size: 24px; line-height: 1; }
.quiz-modal__type-name {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quiz-modal__type-tagline {
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16, 14, 52, 0.45);
  margin: 0;
}
.quiz-modal__type-desc {
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.quiz-modal__tips {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(16, 14, 52, 0.1);
}
.quiz-modal__tips li {
  font-family: var(--ff-body, 'Helvetica Neue', sans-serif);
  font-size: 14px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  color: rgba(16, 14, 52, 0.8);
}
.quiz-modal__tips li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-iris);
  font-size: 12px;
}

.quiz-modal__book {
  margin-top: 4px;
  padding: 15px 24px;
  border-radius: 10px;
  border: 2px solid var(--c-ink);
  background: transparent;
  color: var(--c-ink);
  --ripple-bg: var(--c-ink);
  transition: color 0.3s ease;
  font-family: var(--ff-ui, 'Helvetica Neue', sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.quiz-modal__book:hover { color: var(--c-white); }

@media (max-width: 600px) {
  .quiz-modal__inner { padding: 28px 20px; }
  .quiz-modal__title { font-size: 20px; }
  .quiz-modal__question { font-size: 17px; padding-right: 36px; }
  .quiz-modal__options { grid-template-columns: 1fr; }
}
