.neurowellness-page main {
  background: var(--neutral-lightest);
}

.neurowellness-hero {
  display: grid;
  min-height: 100svh;
  padding: clamp(170px, 16vh, 210px) clamp(24px, 7vw, 110px) clamp(70px, 8vh, 96px);
  place-items: center;
  background: #0b0b0a;
}

.neurowellness-hero-media {
  background: #11100f;
}

.neurowellness-background-video {
  transform: scale(1.035);
}

.neurowellness-page .hero-controls {
  z-index: 6;
}

.neurowellness-pillars {
  padding: clamp(92px, 11vw, 164px) clamp(24px, 6vw, 96px);
  color: var(--neutral-dark);
  background: var(--neutral-lightest);
}

.neurowellness-pillars-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.neurowellness-pillars-description {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  color: #171717;
  font-family: var(--font-description);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-align: center;
}

.neurowellness-pillar-tools {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 44px;
  margin: 0 0 26px;
}

.neurowellness-filter-summary {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--rdf-crimson);
  font-family: var(--font-description);
  font-size: 14px;
  letter-spacing: 0.015em;
}

.neurowellness-intensity-legend-item {
  display: grid;
  min-width: 68px;
  justify-items: center;
  gap: 8px;
  transition: opacity 180ms ease;
}

.neurowellness-intensity-legend-item.is-inactive {
  opacity: 0.3;
}

.neurowellness-intensity-legend-separator {
  line-height: 1;
}

.neurowellness-intensity-legend-icons {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.neurowellness-intensity-legend-icons img {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.neurowellness-filter {
  position: relative;
}

.neurowellness-filter-trigger {
  min-width: 88px;
  min-height: 44px;
  border: 1px solid rgba(23, 23, 23, 0.2);
  border-radius: 999px;
  padding: 10px 20px;
  color: #171717;
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-description);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.neurowellness-filter-trigger:hover,
.neurowellness-filter-trigger[aria-expanded="true"] {
  border-color: var(--rdf-crimson);
  color: var(--rdf-crimson);
  background: #fff;
}

.neurowellness-filter-trigger:focus-visible,
.neurowellness-filter-option input:focus-visible {
  outline: 2px solid var(--rdf-crimson);
  outline-offset: 3px;
}

.neurowellness-filter-panel {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 260px;
  margin: 0;
  border: 1px solid rgba(23, 23, 23, 0.12);
  padding: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(35, 26, 20, 0.16);
}

.neurowellness-filter-panel[hidden] {
  display: none;
}

.neurowellness-filter-panel legend {
  padding: 0 0 10px;
  color: #171717;
  font-family: var(--font-description);
  font-size: 13px;
  font-weight: 600;
}

.neurowellness-filter-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #171717;
  font-family: var(--font-description);
  font-size: 14px;
  cursor: pointer;
}

.neurowellness-filter-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--rdf-crimson);
  cursor: pointer;
}

.neurowellness-filter-rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.neurowellness-filter-rating img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.neurowellness-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.neurowellness-pillars-grid[data-visible-count="1"] {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 340px);
  margin-inline: auto;
}

.neurowellness-pillars-grid[data-visible-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 720px);
  margin-inline: auto;
}

.neurowellness-pillars-grid[data-visible-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1080px);
  margin-inline: auto;
}

.neurowellness-filter-empty {
  margin: 54px 0 0;
  color: rgba(23, 23, 23, 0.76);
  font-family: var(--font-description);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.neurowellness-pillar-card {
  min-width: 0;
  text-align: center;
}

.neurowellness-pillar-card figure {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #e8e1d8;
}

.neurowellness-pillar-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neurowellness-pillar-card:nth-child(1) img {
  object-position: 52% center;
}

.neurowellness-pillar-card:nth-child(2) img {
  object-position: 50% 8%;
}

.neurowellness-pillar-card:nth-child(3) img {
  object-position: 48% center;
}

.neurowellness-pillar-card:nth-child(4) img {
  object-position: 50% 54%;
  transform: scale(1.22);
}

.neurowellness-pillar-card h3 {
  margin: clamp(22px, 2.2vw, 32px) 0 0;
  color: var(--rdf-crimson);
  font-family: var(--font-title);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.neurowellness-cinematic {
  position: relative;
  display: flex;
  min-height: auto;
  padding: 0 0 clamp(88px, 9vw, 136px);
  overflow: hidden;
  flex-direction: column;
  background: var(--neutral-lightest);
  isolation: isolate;
}

.neurowellness-cinematic-media {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  inset: auto;
  overflow: hidden;
  background: #11100f;
}

.neurowellness-cinematic-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

.neurowellness-cinematic-copy {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 50%;
  width: min(calc(100% - 48px), 820px);
  margin: 0;
  color: #fff;
  font-family: var(--font-description);
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  transform: translate(-50%, -50%);
}

.neurowellness-slide-seven {
  padding-top: clamp(88px, 9vw, 136px);
}

.neurowellness-slide-seven-intro {
  position: relative;
  z-index: 2;
  color: #171717;
  font-family: var(--font-description);
  font-size: clamp(18px, 1.65vw, 25px);
  letter-spacing: 0.012em;
  line-height: 1.2;
  padding-inline: clamp(24px, 6vw, 96px);
  text-align: center;
}

.neurowellness-slide-seven-intro p {
  margin: 0;
}

.neurowellness-slide-seven-intro strong {
  font-weight: 700;
}

.neurowellness-slide-seven .neurowellness-cinematic-media {
  margin-top: clamp(52px, 6vw, 84px);
}

.neurowellness-slide-seven-copy {
  top: 52%;
}

.neurowellness-slide-nine {
  padding-bottom: 0;
}

.neurowellness-slide-nine-copy p {
  margin: 0;
}

.neurowellness-slide-nine-copy p + p {
  margin-top: clamp(18px, 2.2vw, 34px);
}

.neurowellness-begin-here {
  padding: clamp(42px, 4.5vw, 72px) clamp(24px, 3vw, 58px) clamp(94px, 8vw, 132px);
  color: #171717;
  background: var(--neutral-lightest);
}

.neurowellness-begin-here-header {
  text-align: center;
}

.neurowellness-begin-here-header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 2.3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.neurowellness-begin-here-header p {
  max-width: 840px;
  margin: clamp(28px, 2.7vw, 42px) auto 0;
  font-family: var(--font-description);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.25;
}

.neurowellness-begin-here-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 40px);
  width: min(100%, 1800px);
  margin: clamp(44px, 4.8vw, 72px) auto 0;
}

.neurowellness-begin-here-card {
  min-width: 0;
  text-align: center;
}

.neurowellness-begin-here-media {
  aspect-ratio: 16 / 25;
  overflow: hidden;
  background: #fff;
}

.neurowellness-begin-here-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.neurowellness-begin-here-card h3 {
  margin: clamp(24px, 2vw, 32px) 0 0;
  font-family: var(--font-title);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.neurowellness-begin-here-watch {
  min-width: 136px;
  min-height: 32px;
  margin-top: 14px;
  border: 1px solid var(--rdf-crimson);
  border-radius: 999px;
  padding: 5px 22px;
  color: var(--rdf-crimson);
  background: #fff;
  font-family: var(--font-description);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.neurowellness-begin-here-watch:hover:not(:disabled),
.neurowellness-begin-here-watch:focus-visible {
  border-color: var(--rdf-crimson-deep);
  color: var(--rdf-crimson-deep);
  background: #fff;
}

.neurowellness-begin-here-watch:focus-visible {
  outline: 2px solid var(--rdf-crimson);
  outline-offset: 3px;
}

.neurowellness-cinematic-controls {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 24px;
}

.neurowellness-slide-video-toggle.is-paused .control-symbol {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 0;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.neurowellness-appointment {
  padding: clamp(96px, 10vw, 154px) clamp(24px, 6vw, 96px) clamp(104px, 11vw, 168px);
  color: #171717;
  background: #f7f5f1;
}

.neurowellness-appointment-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.neurowellness-appointment-header {
  text-align: center;
}

.neurowellness-appointment-header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.neurowellness-appointment-header p {
  max-width: 920px;
  margin: clamp(30px, 3.8vw, 52px) auto 0;
  color: rgba(23, 23, 23, 0.9);
  font-family: var(--font-description);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.neurowellness-calendly {
  width: 100%;
  min-width: 280px;
  height: 760px;
  margin: clamp(48px, 6vw, 82px) auto 0;
  overflow: hidden;
  background: #f7f5f1;
}

.neurowellness-calendly iframe {
  width: 100% !important;
  min-height: 760px;
}

.wKVnbiJhcPutKB97Xm9w {
  background-color: #a5a5a3 !important;
}

.neurowellness-calendly-fallback {
  margin: 36px auto 0;
  text-align: center;
}

.neurowellness-calendly-fallback a {
  color: var(--rdf-crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.neurowellness-appointment-footer {
  display: flex;
  margin-top: clamp(46px, 5vw, 72px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.neurowellness-appointment-footer p {
  margin: 0;
  color: rgba(23, 23, 23, 0.92);
  font-family: var(--font-description);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.neurowellness-appointment-button {
  display: inline-flex;
  min-width: min(100%, 280px);
  min-height: 48px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rdf-crimson);
  border-radius: 999px;
  padding: 13px 28px;
  color: #fff;
  background: var(--rdf-crimson);
  font-family: var(--font-description);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.neurowellness-appointment-button:hover,
.neurowellness-appointment-button:focus-visible {
  border-color: var(--rdf-crimson-deep);
  color: #fff;
  background: var(--rdf-crimson-deep);
}

.neurowellness-appointment-button--reverse {
  color: var(--rdf-crimson);
  background: #fff;
}

.neurowellness-appointment-button--reverse:hover,
.neurowellness-appointment-button--reverse:focus-visible {
  border-color: var(--rdf-crimson-deep);
  color: var(--rdf-crimson-deep);
  background: #fff;
}

.neurowellness-appointment-button:focus-visible {
  outline: 2px solid var(--rdf-crimson);
  outline-offset: 4px;
}

.neurowellness-pillar-more {
  min-width: 132px;
  min-height: 0;
  margin-top: 15px;
  padding: 5px 24px;
  font-size: 13px;
  cursor: pointer;
}

.neurowellness-system-closing {
  display: grid;
  min-height: clamp(560px, 72svh, 720px);
  padding: clamp(80px, 9vw, 132px) 24px;
  color: #171717;
  background: var(--neutral-lightest);
  place-items: center;
}

.neurowellness-system-closing-inner {
  width: min(100%, 620px);
  text-align: center;
}

.neurowellness-system-closing h2 {
  margin: 0 0 22px;
  color: var(--rdf-crimson);
  font-family: var(--font-description);
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.neurowellness-system-closing p {
  margin: 0;
  font-family: var(--font-description);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.42;
}

.neurowellness-system-closing p + p {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .neurowellness-hero {
    min-height: 100svh;
    padding: 132px 20px 70px;
  }

  .neurowellness-pillars {
    padding: 88px 24px 104px;
  }

  .neurowellness-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 22px;
  }

  .neurowellness-pillars-grid[data-visible-count="1"] {
    grid-template-columns: minmax(0, 1fr);
  }

  .neurowellness-pillars-grid[data-visible-count="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .neurowellness-pillar-tools {
    margin-bottom: 24px;
  }

  .neurowellness-cinematic {
    padding: 0 0 96px;
  }

  .neurowellness-slide-seven {
    padding-top: 80px;
  }

  .neurowellness-slide-seven-intro {
    padding-inline: 24px;
  }

  .neurowellness-cinematic-media {
    aspect-ratio: 4 / 3;
  }

  .neurowellness-slide-seven .neurowellness-cinematic-media {
    margin-top: 48px;
  }

  .neurowellness-begin-here {
    padding: 72px 24px 104px;
  }

  .neurowellness-begin-here-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 24px;
  }

  .neurowellness-appointment {
    padding: 88px 24px 112px;
  }

  .neurowellness-calendly {
    height: 760px;
  }
}

@media (max-width: 560px) {
  .neurowellness-hero {
    min-height: 82svh;
    padding: 118px 16px 58px;
  }

  .neurowellness-background-video {
    object-position: 60% center;
  }

  .neurowellness-pillars {
    padding: 72px 18px 84px;
  }

  .neurowellness-pillars-description {
    margin-bottom: 48px;
  }

  .neurowellness-pillars-description br {
    display: none;
  }

  .neurowellness-pillar-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .neurowellness-filter-summary {
    width: 100%;
    justify-content: center;
  }

  .neurowellness-filter {
    width: 100%;
  }

  .neurowellness-filter-trigger {
    width: 100%;
  }

  .neurowellness-filter-panel {
    right: auto;
    left: 0;
    width: 100%;
  }

  .neurowellness-pillars-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .neurowellness-pillars-grid[data-visible-count] {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .neurowellness-pillar-card figure {
    aspect-ratio: 4 / 5;
  }

  .neurowellness-pillar-card h3 {
    margin-top: 20px;
  }

  .neurowellness-cinematic {
    min-height: auto;
    padding: 0 0 82px;
  }

  .neurowellness-cinematic-copy {
    top: 56%;
    width: calc(100% - 40px);
    font-size: 17px;
  }

  .neurowellness-slide-seven {
    padding-top: 72px;
  }

  .neurowellness-slide-seven-intro {
    font-size: 17px;
    line-height: 1.3;
    padding-inline: 18px;
  }

  .neurowellness-cinematic-media {
    aspect-ratio: 3 / 4;
  }

  .neurowellness-slide-seven .neurowellness-cinematic-media {
    margin-top: 40px;
  }

  .neurowellness-slide-seven-copy {
    top: 52%;
  }

  .neurowellness-slide-seven-video {
    object-position: 62% center;
  }

  .neurowellness-begin-here {
    padding: 64px 18px 88px;
  }

  .neurowellness-begin-here-header p br {
    display: none;
  }

  .neurowellness-begin-here-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    width: min(100%, 420px);
  }

  .neurowellness-cinematic-controls {
    bottom: 18px;
    left: 16px;
  }

  .neurowellness-appointment {
    padding: 72px 18px 88px;
  }

  .neurowellness-appointment-header p br,
  .neurowellness-appointment-footer p br {
    display: none;
  }

  .neurowellness-calendly {
    height: 1050px;
    margin-top: 42px;
  }

  .neurowellness-calendly iframe {
    min-height: 1050px;
  }

  .neurowellness-system-closing {
    min-height: 540px;
    padding-inline: 20px;
  }

  .neurowellness-system-closing p br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neurowellness-background-video {
    display: none;
  }

  .neurowellness-hero-media {
    background: url("/assets/neurowellness/slide-1-feature.png") center / cover no-repeat;
  }

  .neurowellness-cinematic-video {
    display: none;
  }

  .neurowellness-slide-seven-media {
    background: url("/assets/neurowellness/slide-7-feature.png") center / cover no-repeat;
  }

  .neurowellness-slide-eight-media {
    background: url("/assets/neurowellness/slide-8-feature.png") center / cover no-repeat;
  }

  .neurowellness-slide-nine-media {
    background: url("/assets/neurowellness/slide-9-feature.png") center / cover no-repeat;
  }
}
