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

:root {
  --ink: #20252d;
  --muted: #5f6a75;
  --bg: #f2f0ec;
  --teal: #2f8085;
  --teal-dark: #236166;
  --blush: #f29aa6;
  --blush-deep: #da6e87;
  --cream: #fff7ee;
  --mint-soft: #dff4ed;
  --cute-shadow: 0 16px 36px rgba(173, 88, 112, 0.22);
  --heart-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 55.4 8.5 33.2C3.3 28.3 3.2 20 8.1 14.9c4.9-5.1 13.1-5.2 18.2-.3L32 20l5.7-5.4c5.1-4.9 13.3-4.8 18.2.3 4.9 5.1 4.8 13.4-.4 18.3z'/%3E%3C/svg%3E");
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 540px at 10% -10%, #fff4de 0%, transparent 70%),
    radial-gradient(1100px 540px at 100% 0%, #ffe7ef 0%, transparent 70%),
    linear-gradient(180deg, #f9f8f5 0%, var(--bg) 100%);
}

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
[id] { scroll-margin-top: 96px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(248, 247, 243, 0.8);
}
.topbar-inner { min-height: 92px; display: flex; align-items: center; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; font-weight: 800; }
.logo-mark { width: 56px; height: 56px; border-radius: 50%; object-fit: contain; }
.logo-mark.small { width: 34px; height: 34px; }
.topbar nav { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.topbar nav a,
.topbar-more-toggle {
  position: relative;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  font-size: .86rem;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  background-image: linear-gradient(145deg, rgba(255,255,255,.9), rgba(238,248,243,.9));
  background-size: 180% 100%;
  background-position: 100% 50%;
  transition: color .2s ease, background-position .2s ease, box-shadow .2s ease, transform .2s ease;
}
.topbar nav a::after,
.topbar-more-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45,120,124,.75), rgba(102,192,165,.82));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}
.topbar nav a:hover,
.topbar nav a:focus-visible,
.topbar nav a.is-active,
.topbar-more-toggle:hover,
.topbar-more-toggle:focus-visible,
.topbar-more-toggle.is-active {
  color: #1f4f58;
  background-position: 0 50%;
  box-shadow: 0 8px 18px rgba(26, 43, 53, 0.12);
  transform: translateY(-1px);
}
.topbar nav a:hover::after,
.topbar nav a:focus-visible::after,
.topbar nav a.is-active::after,
.topbar-more-toggle:hover::after,
.topbar-more-toggle:focus-visible::after,
.topbar-more-toggle.is-active::after {
  transform: scaleX(1);
}
.topbar-more {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.topbar-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  z-index: 150;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(46, 108, 112, 0.18);
  background: linear-gradient(165deg, rgba(255,255,255,.98), rgba(246, 252, 249, .95));
  box-shadow: 0 14px 28px rgba(22, 35, 46, 0.18);
}
.topbar-more-menu[hidden] {
  display: none;
}
.topbar-more-menu a {
  text-align: left;
}
.topbar-social {
  width: 38px;
  height: 38px;
  margin-left: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 8px 20px rgba(50, 67, 105, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.topbar-social:hover,
.topbar-social:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(50, 67, 105, 0.28);
}
.topbar-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.motif {
  width: 24px;
  height: 24px;
  display: inline-block;
  fill: currentColor;
}
.motif-bear { color: rgba(255, 230, 194, 0.76); }
.motif-heart { color: rgba(255, 186, 206, 0.84); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid #ffe6a9;
  outline-offset: 2px;
}
.btn-primary { background: linear-gradient(145deg, var(--teal), #4299a0); color: #fff; box-shadow: 0 12px 32px rgba(47, 128, 133, 0.25); }
.btn-soft { background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(248,245,240,.87)); color: var(--ink); }
.btn-link { border: 0; background: transparent; color: var(--teal); font-weight: 700; }

.home-page .btn-primary--cute {
  position: relative;
  overflow: hidden;
  padding-right: 38px;
  border: 1px solid rgba(255, 250, 244, 0.64);
  background: linear-gradient(145deg, #2d8e96 0%, #4bb4b6 48%, #5dc2b5 100%);
  box-shadow: var(--cute-shadow);
}
.home-page .btn-primary--cute::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: linear-gradient(170deg, #ffe1ef, #ffd0e5);
  -webkit-mask-image: var(--heart-mask);
  mask-image: var(--heart-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-page .btn-primary--cute:hover {
  filter: brightness(1.04);
}

.hero-video {
  position: relative;
  min-height: 52vh;
  margin-bottom: 18px;
  overflow: hidden;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 18, 25, 0.46) 0%, rgba(10, 18, 25, 0.2) 52%, rgba(10, 18, 25, 0.32) 100%);
}
.hero-bg {
  position: absolute;
  inset: -14% 0;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: center 44%;
  background: linear-gradient(140deg, #d9d3c8, #e5e0d8);
  opacity: 1;
  transition: opacity .28s ease-in-out;
}
.hero-bg.is-fading {
  opacity: .08;
}
.hero-motifs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.motif-hero-bear {
  position: absolute;
  right: 6.5%;
  top: 22%;
  width: clamp(72px, 10vw, 122px);
  height: clamp(72px, 10vw, 122px);
  color: rgba(255, 229, 190, 0.46);
  animation: rybFloat 10s ease-in-out infinite;
}
.motif-hero-heart {
  position: absolute;
  color: rgba(255, 183, 207, 0.44);
  animation: rybPulse 7s ease-in-out infinite;
}
.motif-hero-heart-a {
  right: 12%;
  top: 17%;
  width: clamp(28px, 4vw, 42px);
  height: clamp(28px, 4vw, 42px);
}
.motif-hero-heart-b {
  right: 4.5%;
  top: 35%;
  width: clamp(24px, 3vw, 34px);
  height: clamp(24px, 3vw, 34px);
  animation-delay: 1.4s;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 54px;
  padding-bottom: 12px;
  max-width: 1200px;
  color: #f6f3ee;
}
.hero-product-peek {
  position: absolute;
  top: auto;
  right: 12px;
  bottom: 20px;
  width: clamp(180px, 22vw, 282px);
  z-index: 5;
  pointer-events: none;
}
.hero-product-peek-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 236, 205, 0.58);
  background: rgba(24, 32, 41, 0.2);
  box-shadow: 0 14px 30px rgba(11, 16, 24, 0.34);
}
.hero-made-stamp {
  position: absolute;
  top: 4px;
  right: 0;
  margin: 0;
  width: clamp(88px, 9.8vw, 122px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  font-size: clamp(.72rem, .95vw, .84rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff5df;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 236, 199, .46), rgba(230, 174, 99, .14) 44%, rgba(91, 59, 30, .24) 100%),
    linear-gradient(155deg, rgba(56, 42, 29, .78), rgba(125, 86, 48, .74));
  border: 2px solid rgba(255, 227, 178, .8);
  box-shadow: 0 12px 28px rgba(14, 19, 28, .34);
  z-index: 6;
}
.hero-made-stamp--in-card {
  top: -16px;
  left: -16px;
  right: auto;
  bottom: auto;
  width: clamp(72px, 8vw, 98px);
  padding: 8px;
  font-size: clamp(.56rem, .72vw, .7rem);
}
.hero-made-stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1.6px dashed rgba(255, 225, 172, .72);
  pointer-events: none;
}
.hero-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: 16px;
  align-items: end;
}
.hero-main-layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}
.hero-copy {
  max-width: 700px;
}
.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: .76rem;
  color: #d8f4ee;
  background: linear-gradient(145deg, rgba(45,120,124,.28), rgba(102,192,165,.34));
}
h1, h2, h3 { margin: 0; line-height: 1.13; }
h1 { font-size: clamp(1.85rem, 3.9vw, 3.15rem); margin: 10px 0; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.4rem); }
.lead { color: #eef0f2; font-size: clamp(1rem, 1.45vw, 1.24rem); max-width: 650px; }
.trust-strip {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.trust-strip li {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .82rem;
  color: #f8f4ef;
  border: 1px solid rgba(224, 241, 245, 0.35);
  background: linear-gradient(145deg, rgba(12,22,30,.55), rgba(21,37,48,.48));
}
.hero-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-actions--single {
  justify-content: flex-start;
}
.hero-points {
  margin-top: 10px;
  padding: 10px 12px 10px 28px;
  display: grid;
  gap: 8px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(13, 23, 31, 0.52), rgba(23, 35, 45, 0.42));
  border: 1px solid rgba(231, 243, 249, 0.24);
  box-shadow: 0 12px 28px rgba(11, 16, 24, 0.24);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.35;
}
.hero-points li {
  text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
}
.hero-use-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(229, 240, 244, 0.34);
  background: linear-gradient(145deg, rgba(17, 28, 36, 0.52), rgba(24, 40, 51, 0.44));
  box-shadow: 0 16px 32px rgba(9, 14, 20, 0.25);
}
.hero-use-card picture {
  display: block;
}
.hero-use-image {
  width: 100%;
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.hero-use-caption {
  margin: 0;
  padding: 10px 12px;
  color: #f4f1ec;
  font-size: .9rem;
  line-height: 1.35;
  background: linear-gradient(145deg, rgba(12,20,27,.76), rgba(18,30,39,.7));
}
.hero-audio {
  margin-top: 12px;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(145deg, rgba(18, 30, 39, 0.72), rgba(24, 39, 50, 0.66));
  border: 1px solid rgba(243, 226, 212, 0.26);
  box-shadow: 0 12px 24px rgba(12, 18, 29, 0.2);
}
.hero-audio-stage {
  margin-top: 14px;
  margin-bottom: 14px;
}
.hero-audio-stage .hero-audio {
  margin-top: 0;
}
.home-core {
  padding-top: clamp(14px, 2.2vw, 24px);
}
.home-core-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-core-card {
  margin: 0;
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,241,233,.86));
  box-shadow: 0 16px 30px rgba(34, 42, 56, 0.1);
  display: grid;
  align-content: space-between;
  gap: 10px;
}
.home-core-card img {
  width: 100%;
  height: clamp(150px, 20vw, 220px);
  object-fit: contain;
  display: block;
}
.home-core-card figcaption {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: #334654;
  text-align: center;
}
.home-core-card--text {
  align-content: center;
}
.home-core-card--text ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #30424f;
  font-weight: 700;
}

.ryb-experience {
  --ryb-stage-shift: 0px;
  --ryb-stage-tilt: 0deg;
  --ryb-scene-warmth: 0;
  --ryb-scene-calm: 0;
}
.ryb-experience-layout {
  display: grid;
  gap: 16px;
}
.ryb-experience-copy {
  display: grid;
  gap: 10px;
}
.ryb-experience-subline {
  margin: 0;
  color: #425260;
  max-width: 66ch;
  line-height: 1.5;
}
.ryb-experience-help,
.ryb-experience-status {
  margin: 0;
  font-size: .9rem;
  line-height: 1.4;
}
.ryb-experience-help {
  color: #5e6f7b;
}
.ryb-experience-status {
  color: #2e4e5a;
  font-weight: 700;
  min-height: 1.2em;
}
.ryb-experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ryb-experience-actions .btn {
  min-height: 44px;
}
.ryb-experience-stage-shell {
  width: 100%;
}
.ryb-experience-stage {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(204, 187, 167, .55);
  background: linear-gradient(155deg, #fefaf4 0%, #f4eee6 48%, #ece6de 100%);
  box-shadow: 0 18px 32px rgba(36, 44, 59, 0.12);
  overflow: hidden;
  min-height: 300px;
  aspect-ratio: 1 / 1;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.ryb-experience.is-active .ryb-experience-stage,
.ryb-experience.is-intro .ryb-experience-stage {
  cursor: grabbing;
}
.ryb-scene-backdrop,
.ryb-scene-rocker {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ryb-backdrop-glow {
  position: absolute;
  width: 130%;
  aspect-ratio: 1 / 1;
  left: -18%;
  top: -26%;
  border-radius: 50%;
  opacity: calc(0.52 + var(--ryb-scene-warmth) * .18);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 235, 204, .92) 0%, rgba(246, 224, 190, .42) 44%, rgba(239, 226, 210, 0) 74%);
  transition: opacity .25s ease;
}
.ryb-backdrop-floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  height: 26%;
  border-radius: 999px;
  opacity: calc(0.52 + var(--ryb-scene-calm) * .22);
  background: linear-gradient(180deg, rgba(205, 189, 170, .18), rgba(170, 153, 134, .36));
  filter: blur(1px);
  transition: opacity .25s ease;
}
.ryb-scene-rocker {
  transform: translate3d(var(--ryb-stage-shift), 0, 0) rotate(var(--ryb-stage-tilt));
  transform-origin: 50% 84%;
  transition: transform .12s linear;
}
.ryb-rocker-shadow {
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 15%;
  height: 12%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(116, 94, 72, .28), rgba(116, 94, 72, 0) 74%);
  filter: blur(2px);
}
.ryb-rocker-shell {
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 24%;
  height: 42%;
  border-radius: 55% 55% 42% 42% / 64% 64% 36% 36%;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 24%),
    linear-gradient(135deg, #d8c8b7 0%, #ccb8a4 46%, #b9a18a 100%);
  box-shadow:
    inset 0 -10px 16px rgba(113, 88, 66, .2),
    0 14px 24px rgba(62, 50, 39, .15);
}
.ryb-rocker-shell::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 10%;
  bottom: 14%;
  border-radius: 54% 54% 42% 42% / 62% 62% 38% 38%;
  border: 1px solid rgba(255, 250, 241, .42);
}
.ryb-rocker-blanket {
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 36%;
  height: 16%;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(135deg, #f7e5d4 0%, #f3dac5 100%);
  box-shadow: 0 8px 14px rgba(131, 98, 72, .12);
}
.ryb-gesture-hint {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: min(70%, 280px);
  height: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.ryb-experience.show-gesture-hint .ryb-gesture-hint {
  opacity: .95;
}
.ryb-gesture-line {
  position: absolute;
  inset: 10px 8px auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 78, 90, .12), rgba(46, 78, 90, .44), rgba(46, 78, 90, .12));
}
.ryb-gesture-dot {
  position: absolute;
  top: 5px;
  left: 12%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, #f5f0eb, #c7b5a0);
  box-shadow: 0 3px 6px rgba(62, 50, 39, .2);
  animation: rybGestureLoop 1.55s ease-in-out infinite;
}
.ryb-session-overlay {
  position: absolute;
  inset: auto 12px 12px;
  border-radius: 12px;
  padding: 9px 11px;
  color: #2b3f49;
  font-weight: 700;
  font-size: .89rem;
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(249,244,237,.72));
  border: 1px solid rgba(211, 194, 176, .6);
}
.ryb-session-overlay p {
  margin: 0;
}
.ryb-experience-reveal {
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(198, 180, 162, .62);
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,241,233,.87));
  padding: 12px;
  display: grid;
  gap: 8px;
}
.ryb-reveal-message,
.ryb-reveal-bridge,
.ryb-reveal-note {
  margin: 0;
}
.ryb-reveal-message {
  color: #334754;
  font-weight: 800;
  line-height: 1.5;
}
.ryb-reveal-bridge {
  color: #254753;
  font-weight: 700;
}
.ryb-reveal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ryb-reveal-actions .btn {
  min-height: 44px;
}
.ryb-reveal-note {
  color: #5b6d79;
  font-size: .8rem;
  line-height: 1.4;
}
.ryb-restart-link {
  justify-self: start;
  padding-left: 0;
  padding-right: 0;
}
.ryb-experience.state-good {
  --ryb-scene-warmth: 1;
  --ryb-scene-calm: 1;
}
.ryb-experience.state-too-fast .ryb-experience-stage {
  filter: saturate(1.03);
}
.ryb-experience.state-too-slow .ryb-experience-stage {
  filter: saturate(.97);
}
.ryb-experience.is-complete .ryb-experience-actions,
.ryb-experience.is-abandon .ryb-experience-actions {
  display: none;
}
.ryb-experience.is-static .ryb-experience-actions {
  display: none;
}
.ryb-experience.is-static .ryb-experience-status {
  color: #4f6070;
  font-weight: 600;
}
.ryb-experience-noscript {
  margin-top: 10px;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,241,233,.86));
  border: 1px solid rgba(205, 189, 170, .62);
  display: grid;
  gap: 8px;
}
@media (min-width: 980px) {
  .ryb-experience-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
    align-items: center;
  }
  .ryb-experience-stage {
    aspect-ratio: 4 / 3;
    min-height: 340px;
  }
}

.ryb-sim {
  --ryb-sim-x: 0px;
  --ryb-sim-tilt: 0deg;
}
.ryb-sim-head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.ryb-sim-intro {
  margin: 0;
  color: #425361;
  line-height: 1.5;
  max-width: 76ch;
}
.ryb-sim-layout {
  display: grid;
  gap: 14px;
  grid-template-areas:
    "stage"
    "panel"
    "audio";
}
.ryb-sim-audio-col {
  grid-area: audio;
  align-self: start;
}
.ryb-sim-audio-col .hero-audio {
  margin-top: 0;
  border-radius: 18px;
  padding: 10px 12px;
  background: linear-gradient(145deg, rgba(36, 53, 64, .9), rgba(48, 67, 77, .88));
}
.ryb-sim-audio-col .audio-strip {
  justify-content: flex-start;
  text-align: left;
}
.ryb-sim-audio-col .hero-audio-kicker {
  white-space: normal;
  line-height: 1.25;
}
.ryb-sim-audio-col .audio-strip-buttons {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: start;
  gap: 8px;
  width: auto;
}
.ryb-sim-audio-col .audio-now-playing--inline {
  white-space: normal;
}
.ryb-sim-stage-wrap {
  grid-area: stage;
}
.ryb-sim-stage-wrap {
  width: 100%;
}
.ryb-sim-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(196, 181, 160, .64);
  box-shadow: 0 18px 36px rgba(28, 35, 48, 0.14);
  background: linear-gradient(160deg, #f8f2ea 0%, #f3ece3 100%);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  cursor: grab;
  isolation: isolate;
}
.ryb-sim[data-sim-phase="holding_brake"] .ryb-sim-stage {
  cursor: grabbing;
}
.ryb-sim-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: .42;
  filter: saturate(.86) brightness(.96);
  pointer-events: none;
}
.ryb-sim-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% -6%, rgba(255, 244, 222, 0.78), rgba(255, 244, 222, 0) 60%),
    linear-gradient(180deg, rgba(245, 236, 224, 0.56), rgba(234, 225, 212, 0.86));
  pointer-events: none;
}
.ryb-sim-floor {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 12%;
  height: 17%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 44%, rgba(100, 79, 58, .24), rgba(100, 79, 58, 0) 72%);
  filter: blur(2px);
  pointer-events: none;
}
.ryb-sim-seat-wrap {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: min(296px, 58%);
  transform: translate3d(calc(-50% + var(--ryb-sim-x)), 0, 0) rotate(var(--ryb-sim-tilt));
  transform-origin: 50% 92%;
  transition: transform 85ms linear;
  will-change: transform;
  pointer-events: none;
}
.ryb-sim-seat {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(44, 39, 36, 0.28));
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.ryb-sim-timer {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  min-width: 66px;
  text-align: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #2a3d48;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(246,240,232,.88));
  border: 1px solid rgba(196, 181, 160, .64);
  box-shadow: 0 6px 14px rgba(29, 39, 53, .12);
}
.ryb-sim[data-ryb-auto="true"] .ryb-sim-timer {
  color: #1f4f58;
}
.ryb-sim[data-ryb-running="true"] .ryb-sim-timer {
  background: linear-gradient(145deg, rgba(222, 245, 238, .9), rgba(244, 255, 252, .86));
}
.ryb-sim-hint {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  border-radius: 12px;
  padding: 8px 11px;
  font-size: .86rem;
  line-height: 1.35;
  color: #2c3e49;
  background: linear-gradient(145deg, rgba(255,255,255,.84), rgba(248,243,236,.78));
  border: 1px solid rgba(206, 189, 169, .62);
  pointer-events: none;
}
.ryb-sim-panel {
  grid-area: panel;
  display: grid;
  gap: 8px;
  align-content: start;
}
.ryb-sim-phase,
.ryb-sim-status,
.ryb-sim-note {
  margin: 0;
}
.ryb-sim-phase {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #647584;
  font-weight: 800;
}
.ryb-sim-status {
  color: #2f4450;
  font-weight: 700;
  line-height: 1.45;
}
.ryb-sim-note {
  font-size: .84rem;
  color: #5a6d79;
  line-height: 1.42;
}
.ryb-sim-on {
  justify-self: start;
  min-height: 44px;
  padding-inline: 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #5e6974, #7b8794);
  box-shadow: 0 10px 22px rgba(36, 45, 58, 0.2);
}
.ryb-sim-on.is-booting {
  background: linear-gradient(145deg, #2f69c8, #4e85df);
  box-shadow: 0 10px 24px rgba(40, 82, 152, 0.28);
}
.ryb-sim-on.is-active {
  background: linear-gradient(145deg, #2f8a63, #44b27f);
  box-shadow: 0 10px 24px rgba(38, 110, 80, 0.3);
}
.ryb-sim-on:disabled {
  cursor: default;
  opacity: 1;
}
.ryb-sim-off {
  justify-self: start;
  min-height: 44px;
  border-radius: 999px;
}
.ryb-sim-off:disabled {
  opacity: .55;
  cursor: default;
}
.ryb-sim-reset {
  justify-self: start;
  padding: 0;
}
.ryb-sim-strength {
  display: grid;
  gap: 6px;
}
.ryb-sim-strength-label {
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #5f7381;
  font-weight: 700;
}
.ryb-sim-strength-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ryb-sim-strength-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(169, 154, 136, .76);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(244,237,228,.9));
  color: #2f4450;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}
.ryb-sim-strength-btn:disabled {
  opacity: .48;
  cursor: default;
}
.ryb-sim-strength-value {
  min-width: 112px;
  text-align: center;
  font-weight: 700;
  color: #304651;
}
.ryb-sim-cta-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ryb-sim-cta-row .btn {
  min-height: 44px;
}
.ryb-sim-compat {
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 84ch;
  color: #445865;
  line-height: 1.5;
  font-size: .92rem;
}
.ryb-sim-noscript {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(204, 187, 167, .62);
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,241,233,.86));
  padding: 12px;
  display: grid;
  gap: 8px;
}
.ryb-sim-noscript p {
  margin: 0;
  color: #445663;
}
@media (min-width: 980px) {
  .ryb-sim-layout {
    grid-template-columns: minmax(220px, .56fr) minmax(0, 1.02fr) minmax(300px, .9fr);
    grid-template-areas: "audio stage panel";
    align-items: start;
  }
  .ryb-sim-stage {
    aspect-ratio: 4 / 3;
    min-height: 350px;
  }
  .ryb-sim-seat-wrap {
    width: min(312px, 58%);
    bottom: 17%;
  }
}

.home-page-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}
.home-link-tile {
  position: relative;
  border-radius: 16px;
  padding: 12px 58px 12px 14px;
  text-decoration: none;
  color: #24333e;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,248,245,.86));
  border: 1px solid rgba(220, 230, 236, .78);
  box-shadow: 0 10px 22px rgba(36, 44, 59, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.home-link-tile::after {
  content: "\2192";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #1f636a;
  background: linear-gradient(145deg, rgba(232, 247, 242, .94), rgba(244, 252, 250, .92));
  border: 1px solid rgba(153, 201, 196, .62);
  transform: translateY(-50%);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.home-link-tile strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #1f4f58;
}
.home-link-tile span {
  display: block;
  font-size: .87rem;
  line-height: 1.35;
  color: #4d5d6a;
}
.home-link-tile:hover,
.home-link-tile:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(32, 43, 59, 0.12);
  border-color: rgba(125, 181, 188, .55);
}
.home-link-tile:hover::after,
.home-link-tile:focus-visible::after {
  transform: translate(2px, -50%);
  background: linear-gradient(145deg, rgba(208, 239, 232, .96), rgba(233, 249, 244, .94));
  border-color: rgba(108, 174, 167, .66);
}
.audio-strip {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
}
.hero-audio-kicker {
  margin: 0;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #f5dfe9;
  white-space: nowrap;
}
.audio-strip-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.audio-track-round {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(244, 228, 214, 0.34);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  color: #fff7ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.audio-track-round:hover,
.audio-track-round:focus-visible {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(255, 228, 197, 0.72);
  box-shadow: 0 8px 16px rgba(8, 12, 20, 0.22);
}
.audio-track-round.is-active {
  border-color: rgba(255, 226, 198, 0.85);
  background: linear-gradient(145deg, rgba(255, 226, 205, 0.28), rgba(218, 248, 239, 0.2));
}
.audio-track-round.is-playing {
  box-shadow: 0 0 0 2px rgba(255, 191, 217, 0.58), 0 10px 18px rgba(10, 14, 22, 0.2);
}
.audio-now-playing {
  margin: 0;
  color: #f5efe8;
  font-weight: 600;
  font-size: .88rem;
}
.audio-now-playing--inline {
  opacity: .95;
  white-space: nowrap;
}
.audio-status {
  margin: 0;
  color: #dbe7f1;
  font-size: .86rem;
}
.audio-status.is-warning { color: #ffd7b2; }

.audio-controls,
.audio-control,
.audio-control-play,
.audio-track-list,
.audio-track-list > li,
.audio-track-slot--calm-1,
.audio-track-slot--calm-2,
.audio-track-slot--play,
.audio-track-slot--sleep,
.audio-track-slot--rain,
.audio-track-slot--brown,
.audio-track,
.audio-track-title,
.audio-track-duration,
.hero-audio-layout,
.hero-audio-panel,
.hero-audio-head,
.audio-device-copy,
.hero-audio-device,
.hero-audio-device picture,
.hero-audio-device img,
.hero-audio-device figcaption,
.device-notes,
.device-notes .note,
.note-a,
.note-b,
.note-c,
.note-d {
  display: none;
}
.hero-audio.is-playing .audio-track-round.is-playing {
  display: inline-flex;
}


.section {
  margin-bottom: 14px;
  padding: clamp(18px, 2.3vw, 30px);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255,255,255,.82), rgba(248,244,237,.75) 55%, rgba(238,245,245,.68));
  box-shadow: 0 20px 60px rgba(35, 40, 56, 0.08);
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #7f776e; margin: 0 0 4px; }
.section-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.section-title-motifs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-title-motifs .motif {
  width: 20px;
  height: 20px;
}
.section-title-motifs .motif-bear {
  color: rgba(209, 168, 122, 0.56);
}
.section-title-motifs .motif-heart {
  color: rgba(233, 133, 167, 0.62);
}
.why-grid,
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.why-grid article,
.evidence-grid article {
  border-radius: var(--radius-md);
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(246,241,233,.84));
  color: #675d53;
}
.why-grid p,
.evidence-grid p {
  margin: 8px 0 0;
  line-height: 1.45;
}
.why-linkline {
  margin: 12px 0 0;
  color: #495764;
}
.why-linkline a {
  color: #1f6168;
  font-weight: 700;
  text-decoration: none;
}
.why-linkline a:hover,
.why-linkline a:focus-visible {
  text-decoration: underline;
}

.benefit-chip,
.grid-3 article,
.media-grid > div,
.media-grid figure,
.about-media-grid figure,
.investor-media-grid figure,
.grid-2 > div,
.book-note,
details,
.testimonial,
.audience-view > div,
.audience-view.grid-2 > div {
  border-radius: var(--radius-md);
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(246,241,233,.84));
  color: #675d53;
}

.benefits-orbit {
  padding-top: clamp(20px, 2.8vw, 34px);
  padding-bottom: clamp(20px, 2.8vw, 34px);
}
.benefits-orbit h2 {
  font-weight: 900;
  color: #263844;
}
.benefits-top-claim {
  margin: -4px 0 16px;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: .01em;
  color: #1f4f58;
}
.benefits-orbit-wrap {
  position: relative;
  min-height: 760px;
}
.benefits-arrow-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.benefits-arrow {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#benefitsArrowHead);
  opacity: .94;
}
.benefits-arrow--1 { stroke: #2c6c75; }
.benefits-arrow--2 { stroke: #2f717a; stroke-width: 3; }
.benefits-arrow--3 { stroke: #336f79; }
.benefits-arrow--4 { stroke: #396a75; stroke-width: 3.4; }
.benefits-arrow--5 { stroke: #2f6973; }
.benefits-arrow--6 { stroke: #336a74; stroke-width: 3; }
.benefits-arrow--7 { stroke: #2e6770; }
.benefits-arrow--8 { stroke: #2f6e77; stroke-width: 3.4; }
.benefits-arrow-layer marker path {
  fill: #2f6e77;
}
.benefits-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(416px, 44vw);
  aspect-ratio: 1 / 1;
  margin: 0;
  z-index: 4;
}
.benefits-center picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245, 246, 248, 0.84);
  box-shadow: 0 18px 42px rgba(24, 32, 46, 0.2);
}
.benefits-center img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
  transform: scale(1);
}
.benefits-center figcaption {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #274855;
  white-space: nowrap;
}
.benefits-orbit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 760px;
  position: relative;
}
.benefit-chip {
  position: absolute;
  width: min(260px, 26vw);
  line-height: 1.33;
  font-weight: 900;
  font-size: 1.14rem;
  color: #20303a;
  border: 1px solid rgba(252, 252, 253, 0.72);
  box-shadow: 0 18px 34px rgba(41, 46, 58, 0.16);
  border-radius: 20px;
  z-index: 3;
}
.chip-1,
.chip-5 {
  background: linear-gradient(145deg, rgba(195, 238, 241, .96), rgba(223, 247, 249, .93));
}
.chip-2,
.chip-6 {
  background: linear-gradient(145deg, rgba(255, 226, 234, .96), rgba(255, 241, 245, .93));
}
.chip-3,
.chip-7 {
  background: linear-gradient(145deg, rgba(255, 239, 212, .96), rgba(255, 247, 232, .93));
}
.chip-4,
.chip-8 {
  background: linear-gradient(145deg, rgba(222, 236, 255, .96), rgba(238, 244, 255, .93));
}
.chip-1 { top: 3%; left: 14%; }
.chip-2 { top: 3%; right: 14%; }
.chip-3 { top: 24%; right: 1.2%; }
.chip-4 { top: 51%; right: 0; }
.chip-5 { bottom: 3%; right: 14%; }
.chip-6 { bottom: 3%; left: 14%; }
.chip-7 { top: 51%; left: 0; }
.chip-8 { top: 24%; left: 1.2%; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.media-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-media-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.investor-media-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }

.media-grid figure,
.about-media-grid figure,
.investor-media-grid figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.media-grid picture,
.about-media-grid picture,
.investor-media-grid picture {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.media-grid img,
.about-media-grid img,
.investor-media-grid img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

.media-grid figcaption,
.about-media-grid figcaption,
.investor-media-grid figcaption {
  font-size: .84rem;
  line-height: 1.35;
  color: #5f574e;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-md);
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,241,233,.86));
  box-shadow: 0 14px 28px rgba(35, 40, 56, 0.07);
}
.faq-topic {
  margin: 0 0 6px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6f7f8b;
}
.faq-item h2 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.28;
  color: #2a3944;
}
.faq-item p {
  margin: 0 0 8px;
  color: #50606d;
  line-height: 1.52;
}
.faq-item p:last-child {
  margin-bottom: 0;
}
.faq-item a {
  color: #1f6168;
  font-weight: 700;
  text-decoration: none;
}
.faq-item a:hover,
.faq-item a:focus-visible {
  text-decoration: underline;
}

.faq-category + .faq-category { margin-top: 14px; }
.faq-category h3 { margin: 0 0 8px; }
details { margin-bottom: 8px; }
summary { cursor: pointer; font-weight: 600; color: var(--ink); }

.warning {
  margin-top: 12px;
  border-radius: 10px;
  padding: 10px 12px;
  background: linear-gradient(145deg, rgba(255,245,234,.9), rgba(252,238,223,.88));
  color: #6e5740;
  font-size: .86rem;
}

.testimonial-slider { min-height: 130px; }
.testimonial { display: none; }
.testimonial.active { display: block; }
.slider-controls { display: flex; gap: 8px; margin-top: 10px; }

.tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(245,242,236,.88)); }
.tabs button { border: 0; border-radius: 999px; background: transparent; padding: 8px 12px; cursor: pointer; }
.tabs button.active { background: linear-gradient(145deg, rgba(45,120,124,.16), rgba(102,192,165,.2)); color: #1f555a; }
.audience-view { display: none; }
.audience-view.active { display: grid; }
.b2b-intro {
  margin: 0;
  color: #4e5f6c;
  line-height: 1.5;
}
.b2b-view {
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
}
.b2b-cta-card,
.b2b-proof-card {
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,241,233,.87));
  box-shadow: 0 16px 30px rgba(34, 42, 56, 0.1);
  border: 1px solid rgba(239, 242, 247, 0.72);
}
.b2b-kicker {
  margin: 0 0 6px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6f7f8b;
}
.b2b-cta-card h3,
.b2b-proof-card h3 {
  margin: 0 0 8px;
  color: #2b3d49;
}
.b2b-cta-card p {
  margin: 0;
  color: #4c5e6b;
  line-height: 1.48;
}
.b2b-cta-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.b2b-cta-note {
  margin-top: 10px !important;
  font-size: .86rem;
  color: #5f7080 !important;
}
.b2b-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.b2b-check-list li {
  position: relative;
  padding-left: 26px;
  color: #4f5f6c;
  line-height: 1.45;
}
.b2b-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3d9da5, #65c8bf);
  box-shadow: 0 5px 10px rgba(47, 128, 133, 0.26);
}
.b2b-check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: .62em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.haendler-koop-page .haendler-koop-grid {
  margin-top: 16px;
  gap: 16px;
}
.haendler-koop-page .haendler-koop-card {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,241,233,.87));
  box-shadow: 0 16px 30px rgba(34, 42, 56, 0.1);
  border: 1px solid rgba(239, 242, 247, 0.72);
  color: #4f5f6c;
}
.haendler-koop-page .haendler-koop-card h2 {
  margin: 0;
  color: #2b3d49;
}
.haendler-koop-page .haendler-koop-card .b2b-check-list {
  margin-top: 12px;
}
.haendler-koop-page .haendler-koop-card p {
  margin: 0;
  line-height: 1.5;
}
.haendler-koop-page .b2b-cta-card {
  margin-top: 18px !important;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}
.contact-card {
  border-radius: var(--radius-md);
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,241,233,.86));
  box-shadow: 0 14px 28px rgba(35, 40, 56, 0.07);
}
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}
.newsletter-card p {
  margin: 0 0 10px;
  color: #5a6772;
}
.contact-form {
  display: grid;
  gap: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-field {
  display: grid;
  gap: 6px;
}
.form-field span {
  font-size: .84rem;
  font-weight: 700;
  color: #41505c;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(138, 154, 166, 0.36);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: #24323d;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,244,237,.92));
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(74, 186, 177, 0.4);
  border-color: rgba(50, 145, 143, 0.62);
}
.form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: #475864;
  font-size: .84rem;
  line-height: 1.4;
}
.form-check input {
  margin-top: 2px;
}
.form-check a {
  color: #1f6168;
  font-weight: 700;
  text-decoration: none;
}
.form-check a:hover,
.form-check a:focus-visible {
  text-decoration: underline;
}
.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: .84rem;
  color: #4a5a66;
}
.form-status.is-success {
  color: #1f775f;
}
.form-status.is-error {
  color: #9a3f46;
}

.footer { display: grid; gap: 8px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.footer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-ctas .btn {
  flex: 1 1 230px;
  min-height: 44px;
}
.footer-support {
  margin: 0;
  color: #4a5965;
}
.footer-copyright {
  margin: 0;
  color: #5d6a75;
  font-size: .88rem;
}
.footer-support a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
}
.footer-support a:hover,
.footer-support a:focus-visible {
  text-decoration: underline;
}
.legal-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}
.legal-nav a {
  text-decoration: none;
  color: #2d3c48;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,242,234,.85));
}
.legal-nav a:hover { background: linear-gradient(145deg, rgba(250,255,251,.95), rgba(234,247,240,.9)); }
.legal-nav .legal-easter-egg {
  font-size: .78rem;
  opacity: .68;
  letter-spacing: .02em;
}
.legal-nav .legal-easter-egg:hover,
.legal-nav .legal-easter-egg:focus-visible {
  opacity: 1;
}

.legal-page {
  width: min(980px, calc(100% - 40px));
  margin: 26px auto 40px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255,255,255,.82), rgba(248,244,237,.75) 55%, rgba(238,245,245,.68));
  box-shadow: 0 20px 60px rgba(35, 40, 56, 0.08);
}
.legal-page h1 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.legal-page h2 { margin: 18px 0 8px; font-size: 1.1rem; color: #2f3f49; }
.legal-page p, .legal-page li { color: #4a5965; line-height: 1.55; }
.legal-page ul { margin: 8px 0 0 18px; }

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(248,242,235,.9));
  box-shadow: 0 16px 38px rgba(31, 45, 50, 0.15);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, opacity .2s ease;
}
.sticky-cta-toggle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(133, 171, 178, .62);
  background: linear-gradient(145deg, rgba(248,255,252,.95), rgba(231, 244, 239, .94));
  color: #295a62;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.sticky-cta-toggle:hover,
.sticky-cta-toggle:focus-visible {
  background: linear-gradient(145deg, rgba(236, 250, 246, .96), rgba(216, 239, 232, .95));
  border-color: rgba(109, 161, 167, .72);
}
.sticky-cta.is-collapsed {
  gap: 6px;
  padding: 7px 8px;
}
.sticky-cta.is-collapsed .logo-mark.small,
.sticky-cta.is-collapsed > span {
  display: none;
}
.sticky-cta.is-collapsed .btn {
  min-width: auto;
}
.sticky-cta.is-collapsed .btn-primary--cute {
  padding-right: 14px;
}
.sticky-cta.is-collapsed .btn-primary--cute::after {
  display: none;
}
.sticky-cta.is-collapsed .sticky-cta-toggle {
  transform: rotate(180deg);
}
.sticky-cta.is-lifted {
  transform: translateY(-82px);
}
.sticky-cta.is-hidden-at-end,
.sticky-cta.is-hidden-at-end.is-lifted {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cmp-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 220;
}
.cmp-inner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(25, 32, 41, .96), rgba(37, 49, 61, .94));
  color: #f4f1ea;
  box-shadow: 0 16px 36px rgba(10, 12, 20, 0.34);
}
.cmp-title { margin: 0; font-weight: 700; }
.cmp-copy { margin: 8px 0 0; color: #d9dbe0; font-size: .92rem; }
.cmp-actions { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }

@keyframes rybFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
@keyframes rybPulse {
  0%, 100% { transform: scale(1); opacity: .58; }
  50% { transform: scale(1.05); opacity: .84; }
}
@keyframes noteFloat {
  0% { transform: translateY(16px) scale(.84); opacity: 0; }
  15% { opacity: .95; }
  75% { opacity: .95; }
  100% { transform: translateY(-66px) scale(1.12); opacity: 0; }
}
@keyframes rybGestureLoop {
  0% { transform: translateX(0); opacity: .85; }
  48% { transform: translateX(178px); opacity: .95; }
  52% { transform: translateX(178px); opacity: .95; }
  100% { transform: translateX(0); opacity: .85; }
}

.book-main {
  padding-bottom: 24px;
}

.book-hero {
  padding-top: 16px;
}

.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.book-kicker {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #2b6d72;
}

.book-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
}

.book-page .book-hero .lead {
  color: #1b2f39;
  max-width: 760px;
}

.book-hero-actions {
  margin-top: 10px;
}

.book-download-card {
  background: linear-gradient(145deg, rgba(255,255,255,.93), rgba(250,248,244,.86));
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(26, 43, 53, 0.1);
}

.book-download-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.book-download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.book-reading-toggle {
  margin-top: 10px;
  padding: 0;
}
.book-rights-note {
  margin: 10px 0 0;
  color: #4a5965;
  font-size: .92rem;
  line-height: 1.5;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.book-toc {
  position: sticky;
  top: 110px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(49, 88, 98, 0.15);
  border-radius: 18px;
  padding: 16px;
  max-height: calc(100vh - 130px);
  overflow: auto;
}

.book-toc h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.book-toc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: .95rem;
  line-height: 1.5;
}

.book-toc a {
  display: block;
  padding-block: 2px;
  color: #204f58;
  text-decoration: none;
}

.book-toc a:hover,
.book-toc a:focus-visible {
  text-decoration: underline;
}

.book-content {
  display: grid;
  gap: 20px;
}

.book-part,
.book-chapter {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,244,239,.84));
  border-radius: 18px;
  border: 1px solid rgba(47, 128, 133, 0.14);
  padding: 18px;
}

.book-part h2,
.book-chapter h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.book-chapter p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.book-note-box {
  border-radius: 12px;
  border: 1px dashed rgba(47, 128, 133, 0.45);
  background: rgba(231, 248, 241, 0.75);
  padding: 10px;
}

.endnote-ref a {
  text-decoration: none;
  font-size: .78em;
}

.endnote-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.endnote-label {
  font-weight: 700;
}

.book-backlog-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.book-sources {
  margin-top: 10px;
  border: 1px solid rgba(47, 128, 133, 0.22);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  padding: 8px 10px;
}
.book-sources > summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f5d64;
}
.book-sources-list {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.faq-inline-downloads {
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
}

.faq-inline-downloads a {
  color: #1f6870;
}

.book-page--reading .book-content {
  max-width: 78ch;
}

.book-page--reading .book-content .book-chapter,
.book-page--reading .book-content .book-part {
  font-size: 1.06rem;
  line-height: 1.72;
}

.book-page--reading .book-layout {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}
.book-page--reading .book-toc {
  display: none;
}

@media (max-width: 1100px) {
  .book-hero-grid,
  .book-layout,
  .book-page--reading .book-layout {
    grid-template-columns: 1fr;
  }
  .book-toc {
    position: static;
    max-height: none;
  }
  .book-content {
    gap: 16px;
  }
  .topbar-inner {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .topbar nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    overflow: visible;
    padding-bottom: 4px;
  }
  .topbar nav a,
  .topbar-more-toggle {
    flex: 0 0 auto;
    font-size: .8rem;
    padding: 7px 11px;
  }
  .topbar-more {
    position: static;
  }
  .topbar-more-menu {
    right: auto;
    left: 0;
    min-width: min(300px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    width: min(320px, calc(100vw - 40px));
  }
  .topbar-more-menu a {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .topbar-social {
    order: 2;
    margin-left: auto;
  }
  .hero-video { min-height: 48vh; }
  .hero-content { padding-top: 62px; padding-bottom: 12px; }
  .hero-product-peek {
    right: 8px;
    top: auto;
    bottom: 14px;
    width: clamp(150px, 22vw, 236px);
  }
  .hero-made-stamp--in-card {
    top: -12px;
    left: -12px;
    right: auto;
    bottom: auto;
    width: clamp(62px, 12vw, 82px);
    padding: 7px;
    font-size: .56rem;
    letter-spacing: .03em;
  }
  .hero-main-layout { grid-template-columns: 1fr; gap: 12px; }
  .hero-copy { max-width: 100%; }
  .grid-3,
  .grid-2,
  .why-grid,
  .evidence-grid,
  .contact-layout,
  .form-grid,
  .about-media-grid,
  .media-grid,
  .audience-view.active { grid-template-columns: 1fr; }
  .sticky-cta { left: 10px; right: 10px; justify-content: space-between; }
  .sticky-cta-toggle {
    width: 28px;
    height: 28px;
    font-size: .92rem;
  }
  .sticky-cta.is-collapsed {
    left: auto;
    right: 10px;
    justify-content: flex-end;
  }
  .sticky-cta.is-lifted { transform: translateY(-74px); }
  .cmp-banner { left: 10px; right: 10px; }
  .cmp-actions { display: grid; grid-template-columns: 1fr; }
  .audio-strip { gap: 8px; }
  .audio-strip-buttons { gap: 6px; }
  .audio-track-round { width: 34px; height: 34px; font-size: .95rem; }
  .audio-now-playing--inline { width: 100%; white-space: normal; font-size: .82rem; }
  .home-core-visuals,
  .home-page-links {
    grid-template-columns: 1fr;
  }
  .ryb-experience-stage {
    aspect-ratio: 16 / 10;
    min-height: 260px;
  }
  .ryb-gesture-hint {
    width: min(76%, 320px);
  }
  .ryb-gesture-dot {
    animation-duration: 1.7s;
  }
  .ryb-sim-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "panel"
      "audio";
  }
  .ryb-sim-stage {
    aspect-ratio: 16 / 10;
    min-height: 270px;
  }
  .ryb-sim-seat-wrap {
    width: min(242px, 54%);
  }
  .hero-audio-stage {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .trust-strip { grid-template-columns: 1fr; }
  .motif-hero-bear { right: 4%; top: 18%; }
  .motif-hero-heart-a { right: 14%; top: 14%; }
  .motif-hero-heart-b { display: none; }
  .benefits-top-claim {
    margin: 2px 0 14px;
    font-size: clamp(1.05rem, 5.2vw, 1.4rem);
  }
  .benefits-orbit-wrap,
  .benefits-orbit-list {
    min-height: 0;
  }
  .benefits-arrow-layer {
    display: none;
  }
  .benefits-center {
    position: static;
    transform: none;
    width: min(280px, 100%);
    aspect-ratio: auto;
    margin: 0 auto 12px;
  }
  .benefits-center picture {
    aspect-ratio: 1 / 1;
  }
  .benefits-center figcaption {
    position: static;
    transform: none;
    margin-top: 10px;
    white-space: normal;
  }
  .benefits-orbit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .benefit-chip {
    position: static;
    width: 100%;
    font-size: 1.02rem;
  }
  .b2b-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-bg {
    inset: -12% 0;
    height: 124%;
    object-position: center 42%;
  }
}

@media (max-width: 760px) {
  .book-hero,
  .book-layout {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .book-part,
  .book-chapter,
  .book-toc {
    border-radius: 14px;
    padding: 12px;
  }
  .book-toc-list {
    font-size: .89rem;
    gap: 9px;
  }
  .container {
    width: min(1200px, calc(100% - 24px));
  }
  .topbar {
    backdrop-filter: blur(8px);
  }
  .topbar-inner {
    padding-top: 8px;
    row-gap: 6px;
  }
  .logo-mark {
    width: 46px;
    height: 46px;
  }
  .brand span {
    font-size: 1.4rem;
    line-height: 1;
  }
  .topbar-social {
    width: 34px;
    height: 34px;
  }
  .topbar-social svg {
    width: 17px;
    height: 17px;
  }
  .hero-video {
    min-height: 0;
    height: clamp(280px, 52vh, 430px);
    margin-bottom: 12px;
  }
  .hero-video::after {
    background: linear-gradient(90deg, rgba(10, 18, 25, 0.34) 0%, rgba(10, 18, 25, 0.16) 52%, rgba(10, 18, 25, 0.26) 100%);
  }
  .hero-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }
  .hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 10px;
    min-height: 100%;
  }
  .hero-main-layout {
    order: 1;
    padding-right: clamp(96px, 28vw, 128px);
  }
  .hero-copy {
    position: relative;
    z-index: 5;
    padding-right: 0;
  }
  .hero-main-layout--single {
    max-width: 100%;
  }
  .hero-copy h1 {
    font-size: clamp(1.45rem, 8vw, 2.05rem);
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: 1.16;
  }
  .lead {
    font-size: clamp(.94rem, 3.9vw, 1.02rem);
    line-height: 1.4;
  }
  .hero-actions {
    margin-top: 12px;
  }
  .hero-points {
    margin-top: 8px;
    padding: 9px 10px 9px 24px;
    gap: 7px;
    font-size: .95rem;
  }
  .hero-product-peek {
    position: absolute;
    top: auto;
    right: 8px;
    bottom: 10px;
    margin: 0;
    width: clamp(108px, 31vw, 152px);
    z-index: 4;
    opacity: 1;
    display: block;
  }
  .hero-made-stamp--in-card {
    top: -10px;
    right: -10px;
    left: auto;
    bottom: auto;
    width: 58px;
    padding: 6px;
    font-size: .48rem;
    letter-spacing: .03em;
  }
  .hero-audio {
    border-radius: 20px;
    padding: 10px 10px 8px;
  }
  .audio-strip {
    gap: 7px;
  }
  .audio-strip-buttons {
    gap: 5px;
  }
  .audio-track-round {
    width: 32px;
    height: 32px;
    font-size: .9rem;
  }
  .home-core {
    padding-top: 8px;
  }
  .home-core-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .home-core-card {
    padding: 9px;
    gap: 7px;
    border-radius: 14px;
  }
  .home-core-card img {
    height: clamp(120px, 33vw, 152px);
  }
  .home-core-card figcaption {
    font-size: .82rem;
  }
  .home-core-card--text {
    grid-column: 1 / -1;
  }
  .home-core-card--text ul {
    gap: 6px;
    font-size: .93rem;
  }
  .home-page-links {
    gap: 8px;
    padding-top: 8px;
  }
  .ryb-experience-layout {
    gap: 12px;
  }
  .ryb-experience-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ryb-reveal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ryb-experience-stage {
    aspect-ratio: 4 / 5;
    min-height: 300px;
    border-radius: 16px;
  }
  .ryb-session-overlay {
    inset: auto 10px 10px;
  }
  .ryb-sim-head {
    margin-bottom: 10px;
  }
  .ryb-sim-intro {
    font-size: .94rem;
  }
  .ryb-sim-panel {
    gap: 7px;
  }
  .ryb-sim-phase {
    font-size: .74rem;
  }
  .ryb-sim-status {
    font-size: .93rem;
  }
  .ryb-sim-stage {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    border-radius: 16px;
  }
  .ryb-sim-seat-wrap {
    width: min(226px, 60%);
    bottom: 20%;
  }
  .ryb-sim-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ryb-sim-strength-controls {
    justify-content: flex-start;
  }
  .ryb-sim-strength-value {
    min-width: 100px;
    font-size: .92rem;
  }
  .ryb-sim-audio-col .hero-audio {
    border-radius: 16px;
    padding: 9px 10px;
  }
  .home-link-tile {
    padding: 10px 45px 10px 11px;
    border-radius: 14px;
  }
  .home-link-tile::after {
    right: 10px;
    width: 26px;
    height: 26px;
    font-size: .92rem;
  }
  .home-link-tile strong {
    font-size: .95rem;
    margin-bottom: 3px;
  }
  .home-link-tile span {
    font-size: .8rem;
  }
  .section {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .sticky-cta {
    padding: 7px 9px 7px 10px;
    gap: 8px;
  }
  .sticky-cta-toggle {
    width: 24px;
    height: 24px;
    font-size: .85rem;
  }
  .sticky-cta.is-collapsed {
    padding: 6px 8px;
    gap: 6px;
  }
  .sticky-cta.is-lifted { transform: translateY(-66px); }
  .sticky-cta span {
    font-size: .82rem;
    white-space: nowrap;
  }
  .footer-ctas {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motif-hero-bear,
  .motif-hero-heart {
    animation: none;
  }
  .audio-track-round {
    transition: none;
  }
  .ryb-scene-rocker,
  .ryb-experience-stage,
  .ryb-session-overlay,
  .ryb-gesture-hint {
    transition: none;
  }
  .ryb-gesture-dot {
    animation: none;
  }
  .ryb-sim-seat-wrap {
    transition: none;
  }
}
