:root {
  --bg: #fffaf4;
  --ink: #1f241d;
  --muted: #657067;
  --line: rgba(60, 78, 58, 0.15);
  --leaf: #778c5a;
  --leaf-deep: #45583b;
  --bronze: #b6844d;
  --rose: #cf725f;
  --ember: #b84c3d;
  --apricot: #e7a66d;
  --screen-ink: #181715;
  --screen-brown: #5c4837;
  --screen-bronze: #a9733f;
  --screen-rose: #9d675d;
  --screen-taupe: #7a6b61;
  --mist: #eef3ea;
  --white: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(42, 50, 38, 0.13);
  --radius: 8px;
  --display-font: Manrope, Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 9%, rgba(207, 114, 95, 0.23), transparent 34rem),
    radial-gradient(circle at 48% 14%, rgba(231, 166, 109, 0.17), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(119, 140, 90, 0.16), transparent 34rem),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 52%, #f6f4eb 100%);
  font-family: Inter, system-ui, sans-serif;
}

body.high-contrast {
  --bg: #fff;
  --ink: #050805;
  --muted: #1f2a1f;
  --line: rgba(0, 0, 0, 0.34);
}

body.large-font {
  font-size: 18px;
}

body.reduce-motion *,
@media (prefers-reduced-motion: reduce) {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.mobile-break {
  display: none;
}

button,
input {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.62;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}

.ambient-a {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 8rem;
  background: rgba(183, 132, 77, 0.22);
}

.ambient-b {
  width: 24rem;
  height: 24rem;
  left: -9rem;
  bottom: 12rem;
  background: rgba(119, 140, 90, 0.2);
  animation-delay: -5s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(70px, 7.2vw, 132px);
  border-bottom: 1px solid rgba(60, 78, 58, 0.1);
  background: rgba(255, 254, 250, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(119, 140, 90, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 32%, rgba(183, 132, 77, 0.6) 0 10%, transparent 11%),
    conic-gradient(from 20deg, transparent 0 18%, rgba(119, 140, 90, 0.72) 18% 32%, transparent 32% 100%);
  box-shadow: 0 0 30px rgba(119, 140, 90, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

nav {
  display: flex;
  gap: 22px;
  color: #394238;
  font-size: 0.88rem;
  font-weight: 650;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--leaf), var(--bronze));
  transition: right 220ms ease;
}

nav a:hover::after {
  right: 0;
}

.kraft-page .site-header {
  min-height: 92px;
  grid-template-columns: minmax(360px, 1fr) auto auto;
  padding: 14px clamp(46px, 6vw, 124px);
}

.kraft-brand {
  display: grid;
  gap: 0;
}

.kw-wordmark {
  color: #263037;
  font-size: clamp(1.9rem, 2.2vw, 2.65rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.kw-orb {
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin: 0 -0.02em;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.7) 0 20%, transparent 22%),
    conic-gradient(from 210deg, #293542, #b9844f, #d49962, #293542);
  vertical-align: -0.02em;
  color: transparent;
}

.kw-tagline {
  display: block;
  margin-left: 56px;
  color: #333c45;
  font-family: var(--display-font);
  font-size: clamp(0.92rem, 1.05vw, 1.18rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.kraft-page nav {
  gap: clamp(22px, 2.2vw, 34px);
  font-size: 1rem;
  font-weight: 560;
}

.kraft-page .nav-cta {
  background: linear-gradient(135deg, #a87546, #bf8156);
}

.practice-page {
  color: #1d1a18;
  background: #fffaf4;
}

.practice-page .ambient {
  display: none;
}

.practice-page .site-header {
  min-height: 92px;
  grid-template-columns: minmax(430px, 1fr) auto auto;
  gap: clamp(24px, 2.4vw, 42px);
  padding: 16px clamp(76px, 7vw, 142px);
  border-bottom: 1px solid rgba(80, 66, 54, 0.08);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 16px 38px rgba(55, 42, 31, 0.035);
}

.practice-page .brand {
  gap: 14px;
}

.practice-page .brand-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(129, 118, 106, 0.22);
  background:
    radial-gradient(circle at 66% 35%, rgba(177, 128, 80, 0.55) 0 6%, transparent 7%),
    conic-gradient(from 18deg, rgba(122, 113, 103, 0.12), rgba(122, 113, 103, 0.02) 24%, rgba(122, 113, 103, 0.28) 38%, transparent 46%, rgba(122, 113, 103, 0.18) 68%, transparent 100%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.66);
}

.practice-page .brand strong {
  color: #1c1b1a;
  font-size: clamp(1.05rem, 1.18vw, 1.36rem);
  font-weight: 820;
  letter-spacing: 0;
}

.practice-page .brand small {
  margin-top: 3px;
  color: #7a6b61;
  font-size: clamp(0.62rem, 0.7vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.practice-page nav {
  gap: clamp(24px, 2.6vw, 44px);
  color: #292625;
  font-size: clamp(0.9rem, 1vw, 1.07rem);
  font-weight: 660;
}

.practice-page nav a::after {
  background: linear-gradient(90deg, #a9733f, #9d675d);
}

.practice-page .nav-cta {
  min-height: 56px;
  padding-inline: clamp(20px, 2vw, 30px);
  background: linear-gradient(135deg, #9f6f3c 0%, #b58550 52%, #a77546 100%);
  box-shadow: 0 18px 34px rgba(129, 87, 42, 0.18);
}

.reference-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(620px, 0.95fr) minmax(540px, 1.05fr);
  align-items: center;
  overflow: hidden;
  padding: 62px clamp(96px, 7.9vw, 158px) 76px;
  isolation: isolate;
  background: #f7f0eb;
}

.reference-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    url("assets/praxis-portrait.png") calc(100% + 220px) center / auto 104% no-repeat;
  filter: saturate(0.92) contrast(0.98);
}

.reference-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 63% 41%, rgba(255, 244, 231, 0.18), transparent 34rem),
    linear-gradient(90deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.94) 23%, rgba(255, 253, 250, 0.64) 41%, rgba(255, 253, 250, 0.06) 61%, rgba(255, 253, 250, 0) 100%),
    linear-gradient(0deg, rgba(255, 253, 250, 0.38) 0%, rgba(255, 253, 250, 0) 18%);
}

.reference-copy {
  position: relative;
  z-index: 2;
  max-width: 910px;
  padding: 10px 0 30px;
}

.reference-kicker {
  margin: 0 0 26px;
  color: #9d675d;
  font-size: clamp(0.82rem, 0.96vw, 1rem);
  font-weight: 830;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.reference-copy h1 {
  margin: 0;
  width: max-content;
  max-width: min(58vw, 980px);
  padding-bottom: 0.06em;
  color: transparent;
  background-image:
    linear-gradient(
      110deg,
      #181715 0%,
      #211f1c 26%,
      #5c4837 44%,
      #a9733f 58%,
      #9d675d 72%,
      #7a6b61 84%,
      #181715 100%
    );
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display-font);
  font-size: clamp(3rem, 3.3vw, 4.25rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.14;
  animation: titleFlow 14s ease-in-out infinite;
}

.reference-copy h1 span {
  display: block;
  padding-bottom: 0.01em;
  white-space: nowrap;
}

.reference-rule {
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 30px;
  background: linear-gradient(90deg, #a9733f, #c18a5b);
  box-shadow: 0 0 20px rgba(177, 128, 80, 0.22);
}

.reference-lead {
  margin: 34px 0 0;
  color: #24211f;
  font-size: clamp(1.05rem, 1.22vw, 1.32rem);
  line-height: 1.62;
}

.reference-lead strong,
.reference-lead span {
  display: block;
}

.reference-lead strong {
  font-weight: 750;
}

.reference-lead span {
  margin-top: 6px;
  font-weight: 600;
}

.reference-proof {
  display: grid;
  width: min(660px, 100%);
  grid-template-columns: auto auto 1px auto auto;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.reference-google {
  color: #4285f4;
  font-size: 2.3rem;
  font-weight: 860;
  line-height: 1;
}

.reference-jameda {
  color: #506a72;
  font-size: 1.66rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.reference-rating strong {
  display: block;
  color: #9d6b36;
  font-size: clamp(0.92rem, 0.98vw, 1.03rem);
  font-weight: 790;
  letter-spacing: 0.03em;
}

.reference-rating small {
  display: block;
  margin-top: 4px;
  color: #6d635b;
  font-size: clamp(0.82rem, 0.9vw, 0.96rem);
  font-weight: 620;
}

.reference-divider {
  width: 1px;
  min-height: 48px;
  background: rgba(108, 92, 78, 0.2);
}

.reference-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(510px, 100%);
  min-height: 78px;
  margin-top: 38px;
  padding: 0 25px 0 28px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #9d6d3a, #bd8b56 55%, #a87546);
  box-shadow: 0 22px 48px rgba(114, 79, 42, 0.22);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 820;
}

.reference-cta svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reference-cta-icon,
.reference-arrow {
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.reference-arrow svg {
  width: 32px;
  height: 32px;
}

.reference-awards-peek {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 70px;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 250, 0.84);
  box-shadow: 0 -22px 46px rgba(65, 54, 43, 0.05);
  backdrop-filter: blur(12px);
}

.reference-awards-peek span {
  color: #292725;
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.nav-cta {
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-deep), var(--bronze));
  box-shadow: 0 12px 30px rgba(86, 86, 52, 0.18);
}

.button {
  padding: 0 26px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #55683f, #b7854d 54%, #c77f68);
  box-shadow: 0 18px 42px rgba(95, 85, 48, 0.22);
}

.hero .button.primary {
  width: 420px;
  min-height: 70px;
  justify-content: space-between;
  padding: 0 24px 0 30px;
  font-size: 1.05rem;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--leaf-deep);
  background: rgba(255, 255, 255, 0.72);
}

.magnetic:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(95, 85, 48, 0.24);
}

main {
  width: 100%;
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(690px, 0.95fr) minmax(540px, 0.9fr);
  align-items: center;
  gap: clamp(26px, 2.7vw, 48px);
  padding: 64px clamp(70px, 7.2vw, 132px) 34px;
}

.practice-hero {
  position: relative;
  overflow: hidden;
}

.practice-hero::before {
  position: absolute;
  inset: 9% 47% 6% -12%;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184, 76, 61, 0.12), transparent 62%),
    radial-gradient(circle at 22% 68%, rgba(119, 140, 90, 0.1), transparent 50%);
  filter: blur(24px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.hero-kicker {
  margin: 0 0 22px;
  color: #9d675d;
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gradient-title {
  margin: 0;
  padding-bottom: 0.08em;
  color: transparent;
  background-image:
    linear-gradient(
      108deg,
      var(--screen-ink) 0%,
      #211f1c 22%,
      var(--screen-brown) 42%,
      var(--screen-bronze) 58%,
      var(--screen-rose) 72%,
      var(--screen-taupe) 84%,
      var(--screen-ink) 100%
    );
  background-size: 210% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 3.45vw, 4.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
  animation: titleFlow 12s ease-in-out infinite;
}

.gradient-title.small {
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
}

.lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: #22261f;
  font-size: clamp(1.05rem, 1.32vw, 1.22rem);
  font-weight: 650;
  line-height: 1.78;
}

.hero-rule {
  display: block;
  width: 88px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--bronze), var(--rose));
  box-shadow: 0 0 20px rgba(207, 114, 95, 0.35);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.proof {
  display: grid;
  width: min(560px, 100%);
  grid-template-columns: auto auto 1px auto auto;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: #7b7166;
  font-size: 0.82rem;
}

.proof span {
  padding-top: 0;
  border-top: 0;
}

.proof strong {
  display: block;
  color: #8f612f;
  font-size: 0.9rem;
}

.proof small {
  display: block;
  margin-top: 2px;
}

.google-mark {
  color: #4285f4;
  font-size: 2.05rem;
  font-weight: 850;
}

.jameda-mark {
  color: #5a8791;
  font-size: 1.55rem;
  font-weight: 850;
}

.proof-divider {
  align-self: stretch;
  width: 1px;
  min-height: 38px;
  background: var(--line);
}

.hero-media {
  position: relative;
  min-height: min(760px, 76vh);
  border-radius: 0;
}

.portrait-stage {
  isolation: isolate;
}

.portrait-stage::before,
.portrait-stage::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.portrait-stage::before {
  inset: -7% -8vw -5% -3vw;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98), rgba(255, 250, 244, 0.82) 12%, rgba(255, 250, 244, 0.18) 34%),
    url("assets/praxis-portrait.png") center / cover no-repeat;
  border-radius: 0;
  opacity: 0.76;
  filter: saturate(0.82) blur(0.2px);
}

.portrait-stage::after {
  right: -7vw;
  bottom: -5vh;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(184, 76, 61, 0.22), transparent 62%);
  filter: blur(26px);
}

.hero-media img {
  position: absolute;
  inset: -2% -7vw 0 auto;
  width: min(62vw, 860px);
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 0 0 0 120px;
  box-shadow: 0 42px 110px rgba(73, 46, 30, 0.18);
  animation: imageFloat 7s ease-in-out infinite;
}

.portrait-stage .practice-cutout {
  inset: auto -7vw -3.5vh auto;
  width: min(44vw, 690px);
  height: min(78vh, 780px);
  object-fit: contain;
  object-position: bottom right;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 42px 70px rgba(73, 46, 30, 0.22));
  -webkit-mask-image: linear-gradient(180deg, #000 0 86%, rgba(0,0,0,0.78) 93%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 86%, rgba(0,0,0,0.78) 93%, transparent 100%);
}

.hypnosis-rings {
  position: absolute;
  inset: 8% -4vw 8% auto;
  width: min(46vw, 700px);
  z-index: -1;
  opacity: 0.22;
}

.hypnosis-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 76, 61, 0.16);
  border-radius: 50%;
  transform: rotate(-10deg);
  animation: avatarRingFloat 10s ease-in-out infinite;
}

.hypnosis-rings i:nth-child(2) {
  inset: 9% 8%;
  border-color: rgba(119, 140, 90, 0.2);
  animation-delay: -3s;
}

.hypnosis-rings i:nth-child(3) {
  inset: 18% 16%;
  border-color: rgba(231, 166, 109, 0.2);
  animation-delay: -6s;
}

.image-glow {
  position: absolute;
  inset: auto 8% -22px 8%;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 132, 77, 0.25), transparent 68%);
  filter: blur(16px);
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 44px rgba(43, 51, 37, 0.12);
  backdrop-filter: blur(16px);
  animation: noteFloat 5.5s ease-in-out infinite;
}

.awards-reviews {
  position: relative;
  padding: 26px clamp(70px, 7.2vw, 132px) 34px;
  border-top: 1px solid rgba(60, 78, 58, 0.1);
  border-bottom: 1px solid rgba(60, 78, 58, 0.1);
  background:
    radial-gradient(circle at 82% 0%, rgba(183, 132, 77, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 240, 0.68));
}

.section-kicker {
  margin: 0 0 20px;
  color: #3b332c;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.26em;
  text-align: center;
  text-transform: uppercase;
}

.award-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(60, 78, 58, 0.11);
  border-bottom: 1px solid rgba(60, 78, 58, 0.11);
}

.award-rail article {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 18px 24px;
  border-right: 1px solid rgba(60, 78, 58, 0.11);
}

.award-rail article:last-child {
  border-right: 0;
}

.award-rail span,
.review-strip span {
  color: var(--screen-bronze);
  font-size: 0.71rem;
  font-weight: 860;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.award-rail strong {
  display: block;
  max-width: 260px;
  margin-top: 7px;
  color: #22211f;
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.22;
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.review-strip article {
  position: relative;
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid rgba(60, 78, 58, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 46px rgba(73, 46, 30, 0.07);
}

.review-strip article::before {
  position: absolute;
  right: 18px;
  top: 10px;
  content: "★★★★★";
  color: rgba(169, 115, 63, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.review-strip strong {
  display: block;
  margin-top: 9px;
  color: #22211f;
  font-size: 1.02rem;
}

.review-strip p {
  max-width: 34rem;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.practice-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(34px, 6vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--leaf-deep);
  background: linear-gradient(90deg, rgba(255,255,255,0.52), rgba(231,166,109,0.12), rgba(255,255,255,0.52));
}

.practice-flow p {
  margin: 0;
  font-size: clamp(0.86rem, 1vw, 1.04rem);
  font-weight: 800;
  white-space: nowrap;
}

.practice-flow span {
  height: 1px;
  background: linear-gradient(90deg, rgba(119,140,90,0.12), rgba(184,76,61,0.45), rgba(119,140,90,0.12));
}

.service-atlas {
  position: relative;
  padding: 86px clamp(34px, 6vw, 92px) 76px;
  overflow: hidden;
  border-top: 1px solid rgba(60, 78, 58, 0.08);
  background:
    radial-gradient(circle at 14% 18%, rgba(231, 166, 109, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 30%, rgba(207, 114, 95, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 244, 0.72), rgba(255, 253, 248, 0.94));
}

.atlas-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(420px, 1fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 32px;
}

.atlas-intro p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.atlas-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.service-card {
  position: relative;
  min-height: 384px;
  display: grid;
  grid-template-rows: 184px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 14%, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 239, 0.58));
  box-shadow:
    0 28px 80px rgba(73, 46, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  isolation: isolate;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.service-card::before,
.service-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-card::before {
  inset: -28% -16% auto auto;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 44%, rgba(231, 166, 109, 0.24), transparent 44%),
    radial-gradient(circle, rgba(207, 114, 95, 0.24), transparent 70%);
  filter: blur(16px);
  opacity: 0.82;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-card::after {
  inset: auto 18px 18px 18px;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(183, 132, 77, 0.14), transparent 68%);
  filter: blur(18px);
  opacity: 0.65;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.96);
  background:
    radial-gradient(circle at 24% 14%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 235, 0.72));
  box-shadow:
    0 36px 100px rgba(73, 46, 30, 0.14),
    0 0 48px rgba(183, 132, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.service-card:hover::before {
  opacity: 1;
  transform: translate3d(-16px, 14px, 0) scale(1.08);
}

.service-card:hover .hypno-orbit {
  opacity: 0.58;
  filter: saturate(1.08);
}

.service-card:hover .children-cluster {
  opacity: 0.58;
  transform: translate3d(-4px, -3px, 0);
}

.service-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(207, 114, 95, 0.28), transparent 45%),
    radial-gradient(circle at 20% 90%, rgba(119, 140, 90, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(248,236,226,0.74));
}

.service-card figure::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(255, 250, 244, 0.54) 100%),
    radial-gradient(circle at 50% 38%, transparent 0 36%, rgba(255, 255, 255, 0.28) 72%);
}

.service-card img {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: -6%;
  width: 58%;
  height: 104%;
  object-fit: contain;
  opacity: 0.58;
  filter: saturate(0.9) drop-shadow(0 22px 36px rgba(73, 46, 30, 0.12));
  transition: transform 280ms ease, opacity 280ms ease;
}

.service-card:hover img {
  opacity: 0.62;
  transform: translate3d(-8px, -4px, 0) scale(1.04);
}

.hypno-orbit {
  position: absolute;
  left: 9%;
  top: 19%;
  z-index: 1;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  opacity: 0.48;
  background:
    radial-gradient(circle, rgba(255,255,255,0.9) 0 13%, transparent 14%),
    repeating-conic-gradient(from 0deg, rgba(169, 115, 63, 0.8) 0 11deg, rgba(157, 103, 93, 0.16) 12deg 28deg, transparent 29deg 47deg);
  box-shadow:
    0 0 34px rgba(183, 132, 77, 0.18),
    inset 0 0 34px rgba(255, 255, 255, 0.58);
  animation: hypnoSpin 18s linear infinite, hypnoBreathe 4.8s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(circle, transparent 0 16%, #000 17% 68%, transparent 69%);
  mask-image: radial-gradient(circle, transparent 0 16%, #000 17% 68%, transparent 69%);
}

.hypno-orbit span {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(169, 115, 63, 0.32);
  border-radius: inherit;
}

.hypno-orbit span:nth-child(2) {
  inset: 27%;
  border-color: rgba(119, 140, 90, 0.26);
}

.hypno-orbit span:nth-child(3) {
  inset: 40%;
  border-color: rgba(207, 114, 95, 0.22);
}

.service-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px 24px 24px;
}

.service-analyse img,
.service-coaching img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 16%;
  opacity: 0.34;
}

.service-hypnose img {
  right: 8%;
  bottom: -6%;
  width: 62%;
  height: 102%;
}

.service-selbst img {
  right: 7%;
  bottom: -5%;
  width: 68%;
  height: 104%;
  opacity: 0.54;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.04) 16%, rgba(0,0,0,0.26) 32%, rgba(0,0,0,0.82) 52%, #000 68%, rgba(0,0,0,0.58) 84%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.82) 24%, #000 68%, rgba(0,0,0,0.34) 86%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.04) 16%, rgba(0,0,0,0.26) 32%, rgba(0,0,0,0.82) 52%, #000 68%, rgba(0,0,0,0.58) 84%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.82) 24%, #000 68%, rgba(0,0,0,0.34) 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.service-selbst figure::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 18%, transparent 48%, transparent 72%, rgba(255,248,241,0.72)),
    linear-gradient(180deg, rgba(255,255,255,0.5), transparent 28%, transparent 62%, rgba(255,250,244,0.72));
}

.service-familie img {
  right: 6%;
  bottom: -4%;
  width: 46%;
  height: 102%;
  opacity: 0.5;
}

.children-cluster {
  position: absolute;
  left: 10%;
  bottom: 19%;
  z-index: 1;
  width: 170px;
  height: 104px;
  opacity: 0.5;
  filter: blur(0.1px) drop-shadow(0 18px 28px rgba(73, 46, 30, 0.08));
  transition: opacity 260ms ease, transform 260ms ease;
}

.children-cluster::before {
  position: absolute;
  inset: 26% 4% 0;
  content: "";
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(183, 132, 77, 0.16), transparent 70%);
  filter: blur(12px);
}

.child {
  position: absolute;
  bottom: 7px;
  width: 42px;
  height: 58px;
  border-radius: 20px 20px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(246, 217, 198, 0.42)),
    radial-gradient(circle at 50% -6px, rgba(92, 72, 55, 0.32) 0 18px, transparent 19px);
}

.child::before {
  position: absolute;
  left: 50%;
  top: -25px;
  width: 34px;
  height: 34px;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 232, 209, 0.92), rgba(211, 157, 122, 0.46) 72%),
    #edc7aa;
  transform: translateX(-50%);
  box-shadow: inset 0 -8px 12px rgba(92, 72, 55, 0.08);
}

.child::after {
  position: absolute;
  inset: 8px 8px auto;
  height: 22px;
  content: "";
  border-radius: 999px 999px 16px 16px;
  background: rgba(119, 140, 90, 0.22);
}

.child-a {
  left: 8px;
  transform: rotate(-4deg) scale(0.92);
}

.child-b {
  left: 58px;
  bottom: 10px;
  transform: scale(1.08);
}

.child-c {
  left: 112px;
  transform: rotate(5deg) scale(0.88);
}

.service-audio img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.service-card div > span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.atlas-stage h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.38rem, 1.65vw, 1.82rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.atlas-stage p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
  font-size: 0.92rem;
}

.breath-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(420px, 1fr);
  align-items: center;
  gap: 52px;
  margin-top: 72px;
  padding: 30px clamp(10px, 2vw, 34px);
  overflow: hidden;
}

.breath-visual::before {
  position: absolute;
  inset: 8% 24% 0 4%;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 44%, rgba(119, 140, 90, 0.24), transparent 42%),
    radial-gradient(circle at 72% 42%, rgba(207, 114, 95, 0.22), transparent 46%);
  filter: blur(24px);
}

.breath-visual img {
  position: relative;
  z-index: 1;
  width: min(46vw, 660px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(73, 46, 30, 0.16));
}

.breath-visual div {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.breath-visual p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.floating-note strong {
  font-size: 0.86rem;
}

.floating-note small {
  color: var(--muted);
  font-size: 0.72rem;
}

.note-a {
  left: -18px;
  bottom: 14%;
}

.note-b {
  right: 18px;
  top: 15%;
  animation-delay: -2s;
}

.assist-strip,
.kraft,
.booking-crm {
  border-top: 1px solid var(--line);
}

.assist-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 36px clamp(34px, 6vw, 92px);
}

.assist-strip p {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.assist-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.assist-preview span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--leaf-deep);
  font-size: 0.82rem;
  font-weight: 750;
  box-shadow: 0 14px 36px rgba(43, 51, 37, 0.06);
}

.kraft {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: 56px;
  padding: 70px clamp(34px, 6vw, 92px) 120px;
}

.product-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(560px, 0.76fr) minmax(720px, 1.24fr);
  align-items: center;
  gap: clamp(20px, 3.2vw, 58px);
  overflow: hidden;
  padding: 0 0 0 clamp(70px, 7.2vw, 132px);
  background:
    radial-gradient(circle at 74% 8%, rgba(184, 76, 61, 0.18), transparent 38rem),
    radial-gradient(circle at 12% 78%, rgba(119, 140, 90, 0.18), transparent 34rem),
    linear-gradient(90deg, rgba(255, 250, 244, 0.98), rgba(255, 250, 244, 0.74) 46%, rgba(255, 245, 235, 0.36));
}

.sleep-bg-hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vh, 94px) clamp(70px, 7.2vw, 132px);
  color: #fffaf4;
  background:
    linear-gradient(90deg, rgba(16, 22, 34, 0.78) 0%, rgba(34, 32, 40, 0.52) 38%, rgba(34, 32, 40, 0.16) 64%, rgba(13, 18, 30, 0.34) 100%),
    radial-gradient(circle at 24% 72%, rgba(231, 166, 109, 0.28), transparent 34rem),
    url("assets/schlaf-hero-full.png") 78% center / 112% auto no-repeat;
}

.sleep-bg-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 26vw;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(9, 14, 24, 0.28));
  pointer-events: none;
}

.product-hero::before {
  position: absolute;
  inset: 0 38% 0 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 22% 74%, rgba(119, 140, 90, 0.18), transparent 31rem),
    radial-gradient(circle at 72% 16%, rgba(183, 132, 77, 0.16), transparent 28rem);
  filter: blur(18px);
  pointer-events: none;
}

.sleep-bg-hero::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 28, 0.16), transparent 30%, rgba(11, 16, 28, 0.28)),
    radial-gradient(ellipse at 56% 49%, rgba(255, 188, 105, 0.36), rgba(207, 114, 95, 0.16) 25%, transparent 48%),
    radial-gradient(ellipse at 68% 63%, rgba(231, 166, 109, 0.2), transparent 42%),
    radial-gradient(circle at 23% 48%, rgba(255, 250, 244, 0.13), transparent 28rem);
  filter: saturate(1.08);
}

.product-hero .hero-copy {
  align-self: center;
  max-width: 650px;
  padding: clamp(58px, 8vh, 100px) 0 clamp(54px, 7vh, 88px);
}

.sleep-bg-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0;
}

.product-hero .gradient-title {
  font-size: clamp(3.35rem, 4.85vw, 5.85rem);
  line-height: 1.08;
  padding-bottom: 0.08em;
}

.sleep-bg-hero .gradient-title {
  background-image:
    linear-gradient(
      108deg,
      #fffaf4 0%,
      #f4ded0 24%,
      #e7a66d 48%,
      #cf725f 68%,
      #fffaf4 100%
    );
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.fireflies {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.fireflies i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffdca3;
  box-shadow: 0 0 11px rgba(255, 218, 157, 0.9), 0 0 28px rgba(231, 166, 109, 0.38);
  opacity: 0.38;
  animation: fireflyDrift 8s ease-in-out infinite;
}

.fireflies i:nth-child(1) { left: 48%; top: 44%; animation-delay: -1s; }
.fireflies i:nth-child(2) { left: 58%; top: 58%; width: 4px; height: 4px; animation-delay: -4s; }
.fireflies i:nth-child(3) { left: 70%; top: 52%; opacity: 0.28; animation-delay: -6s; }
.fireflies i:nth-child(4) { left: 82%; top: 63%; width: 3px; height: 3px; opacity: 0.32; animation-delay: -2s; }
.fireflies i:nth-child(5) { left: 37%; top: 67%; width: 3px; height: 3px; opacity: 0.24; animation-delay: -7s; }

.product-hero .lead {
  max-width: 610px;
  margin-top: 30px;
  font-size: clamp(1.1rem, 1.36vw, 1.28rem);
  line-height: 1.68;
}

.sleep-bg-hero .lead {
  color: rgba(255, 250, 244, 0.92);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.product-hero .button.primary {
  min-width: 305px;
  min-height: 58px;
  justify-content: center;
}

.product-hero .button.secondary {
  min-width: 186px;
  min-height: 58px;
}

.sleep-bg-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fffaf4;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.audio-panel.hero-audio-player {
  position: relative !important;
  overflow: hidden;
  left: auto;
  right: auto;
  bottom: auto;
  grid-template-columns: 58px minmax(0, 1fr) 132px;
  width: min(720px, 100%);
  min-height: 126px;
  margin-top: 30px;
  padding: 18px 20px;
  border-color: rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(circle at 14% 18%, rgba(231, 166, 109, 0.24), transparent 22rem),
    linear-gradient(135deg, rgba(27, 30, 33, 0.68), rgba(24, 27, 31, 0.38));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.audio-panel.hero-audio-player::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent 38%, rgba(231, 166, 109, 0.09));
  pointer-events: none;
}

.player-play {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fffaf4;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.26), transparent 40%),
    linear-gradient(135deg, rgba(119, 140, 90, 0.95), rgba(199, 127, 104, 0.95));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(231, 166, 109, 0.22);
  cursor: pointer;
}

.player-play span {
  margin-left: 3px;
  color: inherit;
  font-size: 1rem;
}

.player-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-audio-player .player-copy span {
  display: block;
  color: rgba(255, 250, 244, 0.68);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-audio-player .player-copy strong {
  display: block;
  margin-top: 6px;
  color: #fffaf4;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-audio-player .player-copy small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 244, 0.64);
  font-size: 0.78rem;
}

.player-progress {
  position: relative;
  height: 5px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.player-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f7d5b4, #cf725f, #778c5a);
  box-shadow: 0 0 18px rgba(231, 166, 109, 0.4);
}

.player-side {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.hero-audio-player .player-side span {
  color: rgba(255, 250, 244, 0.7);
  font-size: 0.78rem;
  font-weight: 780;
}

.hero-audio-player .wave {
  grid-column: auto;
  grid-row: auto;
  height: 32px;
}

.player-cover {
  position: absolute;
  right: 18px;
  bottom: -24px;
  z-index: 0;
  width: 265px;
  height: 178px;
  object-fit: contain;
  opacity: 0.28;
  filter: saturate(0.86) blur(0.2px);
  transform: scaleX(-1);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,0.8) 22%, #000 72%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,0.8) 22%, #000 72%, transparent 100%);
}

.hero-audio-player .player-side {
  padding-right: 10px;
}

.kraft-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.kraft-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.kraft-copy li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  color: #3d493a;
}

.kraft-copy li::before {
  content: "✓";
  color: var(--bronze);
  font-weight: 900;
}

.sleep-card {
  position: relative;
  min-height: 410px;
}

.hero-sleep {
  align-self: stretch;
  min-height: calc(100vh - 92px);
  overflow: visible;
}

.sleep-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-sleep img {
  height: 100%;
}

.hero-sleep > img:first-child {
  position: absolute;
  inset: 0 0 0 -2vw;
  width: calc(100% + 8vw);
  height: 100%;
  min-height: 100%;
  filter: saturate(1.05) contrast(1.02);
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,0.9) 12%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,0.9) 12%, #000 100%);
}

.hero-sleep .sleep-cutout {
  position: absolute;
  left: -11%;
  right: auto;
  bottom: -4%;
  z-index: 2;
  width: min(58vw, 900px);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 38px 80px rgba(45, 28, 22, 0.3));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  animation: imageFloat 7.5s ease-in-out infinite;
}

.audio-panel {
  position: absolute;
  left: clamp(250px, 26vw, 420px);
  right: clamp(32px, 7vw, 114px);
  bottom: clamp(58px, 8vh, 94px);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(34, 39, 35, 0.48);
  backdrop-filter: blur(18px);
}

.audio-panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.audio-panel strong {
  grid-column: 1;
  font-size: 1.1rem;
}

.wave {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: end;
  gap: 4px;
  height: 32px;
}

.wave i {
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #d9c19b);
  animation: wave 1.2s ease-in-out infinite;
}

.wave i:nth-child(2) { animation-delay: 0.12s; }
.wave i:nth-child(3) { animation-delay: 0.24s; }
.wave i:nth-child(4) { animation-delay: 0.36s; }
.wave i:nth-child(5) { animation-delay: 0.48s; }

.product-markers {
  display: grid;
  width: min(650px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sleep-bg-hero .product-markers {
  margin-top: 24px;
  color: rgba(255, 250, 244, 0.82);
}

.product-markers span {
  min-width: 160px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.sleep-bg-hero .product-markers span {
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.sleep-bg-hero .product-markers strong {
  color: #f2bf84;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 36px clamp(34px, 6vw, 92px) 72px;
  border-top: 1px solid var(--line);
}

.audio-console {
  padding: 84px clamp(34px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(184,76,61,0.16), transparent 32rem),
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(231,166,109,0.08));
}

.console-copy {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(440px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.console-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.console-player {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(60, 78, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 80px rgba(73, 46, 30, 0.12);
  backdrop-filter: blur(18px);
}

.track-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.track-list button {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--leaf-deep);
  background: rgba(255,255,255,0.64);
  font-weight: 800;
  cursor: pointer;
}

.track-list button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--leaf-deep), var(--ember), var(--apricot));
  box-shadow: 0 18px 42px rgba(184, 76, 61, 0.18);
}

.track-list span {
  color: inherit;
  opacity: 0.72;
  font-size: 0.78rem;
}

.now-playing {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background: #232820;
}

.now-playing::after {
  position: absolute;
  inset: -20% -8% auto 42%;
  height: 70%;
  content: "";
  background: radial-gradient(circle, rgba(231,166,109,0.42), transparent 64%);
  filter: blur(24px);
}

.now-playing img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 26px 56px rgba(0, 0, 0, 0.26));
}

.now-playing div {
  position: relative;
  z-index: 1;
}

.now-playing span {
  color: rgba(255,255,255,0.68);
  font-weight: 750;
}

.now-playing strong {
  display: block;
  margin: 8px 0 22px;
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
  line-height: 0.92;
}

.wide-wave {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 7px;
  height: 92px;
  margin: 0 0 28px;
}

.wide-wave i {
  min-width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8ddbd, #cf725f, #778c5a);
  animation: wave 1.25s ease-in-out infinite;
}

.wide-wave i:nth-child(1) { height: 26px; }
.wide-wave i:nth-child(2) { height: 52px; animation-delay: .08s; }
.wide-wave i:nth-child(3) { height: 76px; animation-delay: .16s; }
.wide-wave i:nth-child(4) { height: 38px; animation-delay: .24s; }
.wide-wave i:nth-child(5) { height: 88px; animation-delay: .32s; }
.wide-wave i:nth-child(6) { height: 58px; animation-delay: .40s; }
.wide-wave i:nth-child(7) { height: 74px; animation-delay: .48s; }
.wide-wave i:nth-child(8) { height: 44px; animation-delay: .56s; }
.wide-wave i:nth-child(9) { height: 86px; animation-delay: .64s; }
.wide-wave i:nth-child(10) { height: 60px; animation-delay: .72s; }
.wide-wave i:nth-child(11) { height: 34px; animation-delay: .80s; }
.wide-wave i:nth-child(12) { height: 70px; animation-delay: .88s; }

.program-step {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(43, 51, 37, 0.07);
}

.program-step span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 850;
}

.program-step h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 2rem;
}

.program-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.checkout-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  padding: 66px clamp(34px, 6vw, 92px) 132px;
  border-top: 1px solid var(--line);
}

.checkout-copy p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.68;
}

.checkout-box {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(60, 78, 58, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.checkout-box strong {
  font-family: var(--display-font);
  font-size: 2rem;
}

.checkout-box span,
.checkout-box small {
  color: var(--muted);
  line-height: 1.45;
}

.chat-widget {
  position: fixed;
  right: 0;
  top: 270px;
  z-index: 45;
  width: auto;
}

.chat-toggle,
.access-toggle {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-deep), var(--bronze));
  box-shadow: 0 18px 44px rgba(74, 67, 42, 0.22);
  cursor: pointer;
}

.chat-toggle {
  width: 56px;
  min-height: 202px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 9px;
  padding: 9px 6px 12px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-weight: 800;
  text-align: center;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), rgba(231, 166, 109, 0.2));
  box-shadow: 0 8px 22px rgba(73, 46, 30, 0.22);
}

.chat-toggle span {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.chat-toggle strong {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.chat-toggle small {
  display: none;
}

.chat-toggle[aria-expanded="false"] {
  border-radius: var(--radius) 0 0 var(--radius);
}

.chat-toggle[aria-expanded="true"] {
  border-radius: var(--radius) 0 0 0;
}

.chat-widget:has(.chat-panel:not([hidden])) {
  width: min(310px, calc(100vw - 58px));
}

.chat-widget:has(.chat-panel:not([hidden])) .chat-toggle {
  position: absolute;
  right: 100%;
  top: 0;
}

.chat-widget:has(.chat-panel:not([hidden])) .chat-toggle strong {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.chat-panel {
  width: 310px;
  margin-right: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chat-toggle small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 650;
}

.chat-panel[hidden],
.access-panel[hidden],
.crm-row[hidden] {
  display: none;
}

.chat-head {
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
}

.chat-head small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.message {
  width: fit-content;
  max-width: 88%;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.74rem;
  line-height: 1.45;
}

.message.assistant {
  color: #334031;
  background: #eef3ea;
}

.message.user {
  margin-left: auto;
  color: #fff;
  background: #6b7c50;
}

.chat-panel form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin-top: 12px;
}

.chat-panel input {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.7);
}

.chat-panel form button {
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--leaf-deep);
}

.accessibility {
  position: fixed;
  right: 0;
  top: 492px;
  z-index: 42;
}

.access-toggle {
  width: 48px;
  min-height: 166px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 10px 6px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1.1rem;
}

.access-toggle strong {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.access-panel {
  position: absolute;
  right: 58px;
  bottom: auto;
  top: 0;
  width: min(310px, calc(100vw - 42px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.access-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.access-head button,
.access-panel > button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.access-head button {
  width: 32px;
  height: 32px;
}

.access-panel > button {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  text-align: left;
  padding: 0 12px;
}

.access-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.booking-crm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 28px;
  align-items: start;
  padding: 72px clamp(34px, 6vw, 92px) 132px;
}

.booking-panel,
.crm-panel {
  border: 1px solid rgba(60, 78, 58, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 56px rgba(43, 51, 37, 0.08);
  backdrop-filter: blur(18px);
}

.booking-panel {
  padding: clamp(22px, 3.2vw, 36px);
}

.booking-panel p {
  max-width: 640px;
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #3f4a3d;
  font-size: 0.82rem;
  font-weight: 750;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(119, 140, 90, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(119, 140, 90, 0.12);
}

.booking-form .wide {
  grid-column: 1 / -1;
}

.booking-form .consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 550;
  line-height: 1.45;
}

.booking-form .consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
}

.crm-panel {
  position: sticky;
  top: 98px;
  padding: 18px;
}

.crm-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.crm-head h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.7rem;
}

.crm-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.crm-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: rgba(119, 140, 90, 0.13);
  font-size: 0.74rem;
  font-weight: 800;
}

.crm-toolbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.crm-toolbar button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.crm-toolbar button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--leaf-deep), var(--bronze));
}

.crm-list {
  display: grid;
  gap: 10px;
}

.crm-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(60, 78, 58, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.crm-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(43, 51, 37, 0.08);
}

.crm-row strong,
.crm-row small {
  grid-column: 2;
}

.crm-row small {
  color: var(--muted);
  line-height: 1.45;
}

.status {
  grid-row: 1 / span 2;
  min-width: 84px;
  padding: 6px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 850;
}

.status.new {
  color: #31502e;
  background: rgba(119, 140, 90, 0.18);
}

.status.follow {
  color: #7b5121;
  background: rgba(183, 132, 77, 0.18);
}

.status.done {
  color: #6b3f35;
  background: rgba(199, 127, 104, 0.16);
}

.crm-note {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.crm-note strong {
  color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes titleFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hypnoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hypnoBreathe {
  0%, 100% { opacity: 0.42; filter: saturate(0.92); }
  50% { opacity: 0.56; filter: saturate(1.12); }
}

@keyframes noteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes wave {
  0%, 100% { height: 10px; opacity: 0.65; }
  50% { height: 28px; opacity: 1; }
}

@keyframes fireflyDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.22;
  }
  45% {
    transform: translate3d(18px, -14px, 0) scale(1.45);
    opacity: 0.46;
  }
  70% {
    transform: translate3d(-8px, 9px, 0) scale(0.82);
    opacity: 0.3;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .practice-page .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 28px;
  }

  .kraft-page .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .product-hero,
  .award-rail,
  .review-strip,
  .assist-strip,
  .kraft,
  .checkout-section,
  .booking-crm {
    grid-template-columns: 1fr;
  }

  .awards-reviews {
    padding-inline: 28px;
  }

  .atlas-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .atlas-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-rail article {
    border-right: 0;
    border-bottom: 1px solid rgba(60, 78, 58, 0.11);
  }

  .award-rail article:last-child {
    border-bottom: 0;
  }

  .crm-panel {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .reference-hero {
    min-height: calc(100svh - 92px);
    grid-template-columns: 1fr;
    align-items: end;
    padding: 54px 30px 86px;
  }

  .reference-hero::before {
    background-position: 66% center;
    background-size: auto 100%;
  }

  .reference-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 250, 0.97) 0%, rgba(255, 253, 250, 0.85) 34%, rgba(255, 253, 250, 0.2) 68%, rgba(255, 253, 250, 0.54) 100%),
      linear-gradient(90deg, rgba(255, 253, 250, 0.96) 0%, rgba(255, 253, 250, 0.52) 56%, rgba(255, 253, 250, 0) 100%);
  }

  .reference-copy {
    width: 100%;
    max-width: 700px;
    padding-top: 0;
    min-width: 0;
  }

  .reference-copy h1 {
    width: auto;
    max-width: 100%;
    font-size: clamp(3.15rem, 10vw, 5rem);
    line-height: 1.14;
  }

  .reference-copy h1 span {
    white-space: normal;
  }

  .reference-awards-peek {
    height: 58px;
  }

  .product-hero {
    width: 100vw;
    min-height: auto;
    margin-inline: calc(50% - 50vw);
    padding: 58px 42px 0;
  }

  .sleep-bg-hero {
    min-height: calc(100vh - 92px);
    padding-bottom: 48px;
    background-position: 70% center;
    background-size: auto 112%;
  }

  .sleep-bg-hero::after {
    right: 0;
    bottom: 0;
    width: 34vw;
    height: 100%;
    opacity: 1;
  }

  .product-hero .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0;
  }

  .product-hero .gradient-title {
    font-size: clamp(3rem, 10vw, 4.4rem);
    line-height: 1;
  }

  .product-hero .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .product-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-hero .button.primary,
  .product-hero .button.secondary {
    width: 100%;
    min-width: 0;
  }

  .product-markers {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-audio-player {
    width: 100%;
  }

  .audio-panel.hero-audio-player {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 13px;
    min-height: 130px;
    padding: 15px;
  }

  .player-cover {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    opacity: 0.18;
    transform: scaleX(-1);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,0.55) 20%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,0.55) 20%, #000 100%);
  }

  .player-play {
    width: 48px;
    height: 48px;
  }

  .player-side {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero-sleep {
    min-height: 560px;
    margin: 20px -42px 0;
  }

  .hero-sleep > img:first-child {
    inset: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.92) 18%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.92) 18%, #000 100%);
  }

  .hero-sleep .sleep-cutout {
    left: -18vw;
    bottom: -1vh;
    width: min(118vw, 620px);
  }

  .audio-panel {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .hero-audio-player {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .assist-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main {
    width: min(100% - 28px, 1180px);
  }

  .practice-page main {
    width: 100%;
  }

  .practice-page .site-header {
    min-height: 80px;
    padding: 12px 16px;
  }

  .practice-page .brand {
    gap: 10px;
  }

  .practice-page .brand-mark {
    width: 44px;
    height: 44px;
  }

  .practice-page .brand strong {
    font-size: 0.96rem;
  }

  .reference-hero {
    min-height: calc(100svh - 80px);
    padding: 38px 20px 74px;
    width: 100vw;
    max-width: 100vw;
  }

  .reference-hero::before {
    background-position: 70% bottom;
    background-size: auto 100%;
  }

  .reference-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.86) 46%, rgba(255, 253, 250, 0.24) 72%, rgba(255, 253, 250, 0.62) 100%),
      linear-gradient(90deg, rgba(255, 253, 250, 0.96) 0%, rgba(255, 253, 250, 0.55) 66%, rgba(255, 253, 250, 0) 100%);
  }

  .reference-kicker {
    margin-bottom: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .reference-copy {
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  .reference-copy h1 {
    font-size: clamp(1.78rem, 7.9vw, 2.24rem);
    line-height: 1.15;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    overflow-wrap: break-word;
  }

  .reference-copy h1 span {
    display: block;
  }

  .mobile-break {
    display: block;
  }

  .reference-rule {
    width: 72px;
    margin-top: 22px;
  }

  .reference-lead {
    width: min(100%, 320px);
    margin-top: 24px;
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .reference-proof {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    margin-top: 24px;
  }

  .reference-divider {
    display: none;
  }

  .reference-jameda {
    font-size: 1.42rem;
  }

  .reference-cta {
    min-height: 64px;
    margin-top: 28px;
    padding-inline: 18px;
  }

  .reference-cta svg {
    width: 24px;
    height: 24px;
  }

  .reference-awards-peek span {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .service-atlas {
    padding: 58px 20px 56px;
  }

  .atlas-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 360px;
    grid-template-rows: 166px 1fr;
    border-radius: 16px;
  }

  .service-card div {
    padding: 22px 22px 24px;
  }

  .kraft-page main {
    width: 100%;
  }

  .kraft-page .product-hero {
    width: 100%;
    margin-inline: 0;
    padding: 58px 34px 48px;
    align-items: flex-start;
    overflow: hidden;
  }

  .kraft-page .sleep-bg-hero .hero-copy,
  .kraft-page .sleep-bg-hero .gradient-title,
  .kraft-page .sleep-bg-hero .lead,
  .kraft-page .sleep-bg-hero .actions,
  .kraft-page .hero-audio-player,
  .kraft-page .product-markers {
    max-width: calc(100vw - 68px);
  }

  .kraft-page .sleep-bg-hero .hero-copy {
    flex: 0 1 auto;
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    min-width: 0;
  }

  .kraft-page .sleep-bg-hero .actions,
  .kraft-page .sleep-bg-hero .button,
  .kraft-page .hero-audio-player,
  .kraft-page .product-markers,
  .kraft-page .product-markers span {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    min-width: 0;
  }

  .kraft-page .sleep-bg-hero .gradient-title {
    font-size: clamp(2.6rem, 11vw, 3.45rem);
    line-height: 1.1;
    padding-bottom: 0.08em;
  }

  .kraft-page .sleep-bg-hero .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .site-header {
    padding-inline: 14px;
  }

  .kw-wordmark {
    font-size: 1.55rem;
  }

  .kw-tagline {
    margin-left: 38px;
    font-size: 0.82rem;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .gradient-title {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .awards-reviews {
    padding-inline: 18px;
  }

  .award-rail article,
  .review-strip article {
    padding-inline: 16px;
  }

  .hero-media {
    min-height: 430px;
  }

  .floating-note {
    position: relative;
    inset: auto;
    margin-top: 10px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    right: 0;
    top: 188px;
    bottom: auto;
  }

  .accessibility {
    right: 0;
    left: auto;
    top: 404px;
    bottom: auto;
  }
}

@media (max-width: 430px) {
  .kraft-page .sleep-bg-hero .hero-copy,
  .kraft-page .sleep-bg-hero .actions,
  .kraft-page .sleep-bg-hero .button,
  .kraft-page .hero-audio-player,
  .kraft-page .product-markers,
  .kraft-page .product-markers span {
    width: 300px !important;
    max-width: 300px !important;
  }

  .kraft-page .sleep-bg-hero .gradient-title,
  .kraft-page .sleep-bg-hero .lead {
    max-width: 300px !important;
  }

  .kraft-page .sleep-bg-hero .gradient-title {
    font-size: 2.45rem;
  }

  .kraft-page .hero-audio-player {
    min-height: 132px;
  }

  .kraft-page .hero-audio-player .player-copy small {
    display: none;
  }
}
