:root {
  --cyan: #03adda;
  --cyan-bright: #04caf4;
  --pink: #d32c6a;
  --pink-dark: #b91f58;
  --ink: #07364c;
  --ink-deep: #052b3d;
  --paper: #f3fbfd;
  --white: #ffffff;
  --muted: #526b75;
  --line: rgba(3, 87, 118, 0.16);
  --shadow: 0 28px 80px rgba(3, 77, 103, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(211, 44, 106, 0.1), transparent 28rem),
    radial-gradient(circle at 92% 28%, rgba(4, 202, 244, 0.16), transparent 32rem);
}

.page-grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.therapy-header,
.therapy-hero,
.trust-row,
.goals-section,
.catalog-section,
.measurement-section,
.program-section,
.cta-section,
.therapy-footer {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.therapy-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.clinic-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.clinic-brand img {
  width: 62px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--white);
}

.clinic-brand span {
  display: grid;
  gap: 2px;
}

.clinic-brand strong,
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

.clinic-brand strong {
  font-size: 15px;
  letter-spacing: -0.025em;
}

.clinic-brand small {
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.back-link span:first-child {
  color: var(--cyan);
  transition: transform 180ms ease;
}

.back-link:hover span:first-child,
.back-link:focus-visible span:first-child {
  transform: translateX(-4px);
}

.language-toggle {
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.65);
  color: #8a9699;
  padding: 10px 13px;
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  font: 600 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.08em;
}

.language-toggle .active {
  color: var(--pink);
}

.therapy-hero {
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding: 92px 0 100px;
}

.eyebrow {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.5rem, 6.4vw, 6.9rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.068em;
}

h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-intro {
  max-width: 700px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--pink);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cyan);
  background: var(--white);
}

.walk-in-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.walk-in-note > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #53a86e;
  box-shadow: 0 0 0 5px rgba(83, 168, 110, 0.12);
}

.clinical-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--ink-deep), #075873);
  color: var(--white);
  box-shadow: var(--shadow);
}

.clinical-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(4, 202, 244, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(4, 202, 244, 0.045), 0 0 0 88px rgba(211, 44, 106, 0.04);
}

.clinical-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.clinical-number,
.clinical-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clinical-number {
  color: var(--cyan-bright);
}

.clinical-label {
  color: rgba(255, 255, 255, 0.62);
}

.clinical-card ol {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.clinical-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.clinical-card li > span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.clinical-card li strong {
  display: block;
  margin-bottom: 5px;
  font: 600 17px/1.2 "Manrope", sans-serif;
}

.clinical-card li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.55;
}

.provider-signoff {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 25px;
}

.provider-mark,
.footer-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #087899);
  color: var(--white);
  font: 700 11px/1 "Manrope", sans-serif;
}

.provider-signoff div {
  display: grid;
  gap: 3px;
}

.provider-signoff strong {
  font-size: 14px;
}

.provider-signoff small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row > div {
  padding: 0 25px;
  border-right: 1px solid var(--line);
}

.trust-row > div:first-child {
  padding-left: 0;
}

.trust-row > div:last-child {
  border-right: 0;
}

.trust-row small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-row strong {
  font: 600 15px/1.3 "Manrope", sans-serif;
}

.goals-section,
.catalog-section,
.measurement-section,
.program-section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.education-intro h2,
.safety-heading h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading > p,
.education-intro > p:last-child,
.measurement-heading > p:last-child,
.safety-heading > p:last-child,
.cta-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.goal-interface {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 60px rgba(3, 77, 103, 0.08);
}

.goal-options {
  display: grid;
  align-content: stretch;
  background: var(--ink);
}

.goal-option {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 22px 26px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.goal-option:last-child {
  border-bottom: 0;
}

.goal-option::after {
  content: "→";
  opacity: 0;
  color: var(--cyan-bright);
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.goal-option:hover,
.goal-option.active {
  padding-left: 31px;
  background: #07536d;
  color: var(--white);
}

.goal-option.active {
  box-shadow: inset 4px 0 0 var(--pink);
}

.goal-option:hover::after,
.goal-option.active::after {
  opacity: 1;
  transform: translateX(0);
}

.goal-option > span {
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 600;
}

.goal-option strong {
  font-size: 14px;
  line-height: 1.35;
}

.goal-result {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 74px);
}

.result-kicker {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.goal-result h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.goal-result > p:not(.result-kicker) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.goal-result ul {
  display: grid;
  gap: 10px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.goal-result li {
  position: relative;
  padding-left: 23px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.goal-result li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.goal-result > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.objective-map {
  margin-top: 20px;
  padding: 27px 30px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.5);
}

.objective-map > p {
  margin: 0 0 17px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.objective-map > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.objective-map span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.objective-map small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.education-section,
.safety-section {
  width: 100%;
  padding: 118px max(24px, calc((100vw - 1240px) / 2));
  background: linear-gradient(145deg, var(--ink-deep), #07536d);
  color: var(--white);
}

.education-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.education-intro > p:last-child,
.safety-heading > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 62px;
}

.education-card {
  position: relative;
  overflow: hidden;
  min-height: 335px;
  padding: clamp(30px, 4vw, 49px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.education-card::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -68px;
  width: 170px;
  height: 170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.2;
}

.education-card.cyan {
  color: var(--cyan-bright);
}

.education-card.pink {
  color: #f06499;
}

.card-tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.education-card h3 {
  margin: 48px 0 18px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.education-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.expectation-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
  margin-top: 18px;
  padding: 22px 25px;
  border-left: 3px solid var(--pink);
  background: rgba(255, 255, 255, 0.055);
}

.expectation-note > span {
  color: var(--cyan-bright);
}

.expectation-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
  line-height: 1.65;
}

.expectation-note strong {
  color: var(--white);
}

.section-heading.light .eyebrow {
  color: var(--pink);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar {
  min-height: 300px;
  padding: 34px 31px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar > span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
}

.pillar h3 {
  margin: 84px 0 14px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.safety-section {
  background: #062f43;
}

.safety-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.safety-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 62px;
}

.safety-list,
.safety-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.safety-list h3,
.safety-card h3 {
  margin: 0 0 26px;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.safety-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.safety-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--cyan-bright);
  font-weight: 700;
}

.safety-card > p,
.urgent-note p,
.regulatory-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.urgent-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--pink);
  background: rgba(211, 44, 106, 0.11);
}

.urgent-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.urgent-note p {
  font-size: 14px;
}

.regulatory-note {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 46px;
  align-items: start;
  margin-top: 17px;
  padding: 27px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 202, 244, 0.055);
}

.regulatory-note p {
  font-size: 13px;
}

.regulatory-note strong {
  color: var(--white);
}

.source-links {
  display: grid;
  gap: 10px;
}

.source-links a {
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.source-links a:hover,
.source-links a:focus-visible {
  text-decoration: underline;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
  padding: 118px 0;
}

.cta-logo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-logo img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: 50%;
}

.cta-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 25px;
}

.therapy-footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.therapy-footer > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.catalog-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(3, 77, 103, 0.09);
}

.catalog-controls {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.catalog-search {
  width: min(520px, 100%);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--pink);
}

.catalog-search span {
  font-size: 22px;
  line-height: 1;
}

.catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 500 14px/1 "DM Sans", sans-serif;
}

.catalog-search:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(3, 173, 218, 0.12);
}

#catalog-count {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
  background: var(--ink);
}

.catalog-tab {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 19px 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font: 600 12px/1.2 "DM Sans", sans-serif;
  transition: background 180ms ease, color 180ms ease;
}

.catalog-tab small {
  color: var(--cyan-bright);
  font-size: 9px;
}

.catalog-tab:hover,
.catalog-tab:focus-visible,
.catalog-tab[aria-selected="true"] {
  background: #07536d;
  color: var(--white);
  outline: 0;
}

.catalog-tab[aria-selected="true"] {
  box-shadow: inset 0 -3px 0 var(--pink);
}

.catalog-category-note {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(3, 173, 218, 0.09), rgba(211, 44, 106, 0.045));
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  z-index: 1;
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
  background: #f6fcfe;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-topline span:first-child {
  color: var(--pink);
}

.product-card > strong {
  margin-top: 46px;
  font: 600 clamp(1.05rem, 1.5vw, 1.32rem)/1.25 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.product-strength {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
}

.product-action span:last-child {
  font-size: 16px;
  transition: transform 180ms ease;
}

.product-card:hover .product-action span:last-child {
  transform: translate(2px, -2px);
}

.catalog-empty {
  padding: 76px 28px;
  text-align: center;
}

.catalog-empty strong {
  font: 600 1.35rem/1.2 "Manrope", sans-serif;
}

.catalog-empty p {
  margin: 10px 0 0;
  color: var(--muted);
}

.catalog-disclosure {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  margin-top: 20px;
  padding: 23px 25px;
  border: 1px solid rgba(211, 44, 106, 0.18);
  border-radius: 8px;
  background: rgba(211, 44, 106, 0.045);
}

.catalog-disclosure > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font: 600 12px/1 "Manrope", sans-serif;
}

.catalog-disclosure p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.catalog-disclosure strong {
  color: var(--ink);
}

.measurement-section {
  padding-top: 18px;
  padding-bottom: 118px;
}

.measurement-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.measurement-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.measurement-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.measurement-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.measurement-feature {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.measurement-device {
  min-height: 390px;
  padding: clamp(32px, 5vw, 64px);
}

.measurement-device.precision {
  background: linear-gradient(145deg, #07536d, #052b3d);
}

.device-index,
.device-label {
  color: var(--cyan-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.device-label {
  margin: 32px 0 0;
}

.measurement-device h3 {
  margin: 10px 0 24px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.measurement-device > p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.measurement-device a {
  display: inline-block;
  margin-top: 27px;
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.measurement-device a:hover,
.measurement-device a:focus-visible {
  text-decoration: underline;
}

.measurement-divider {
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, var(--ink), #07536d);
}

.measurement-divider span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font: 500 24px/1 "Manrope", sans-serif;
}

.assessment-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.assessment-flow article {
  min-height: 245px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.assessment-flow article:last-child {
  border-right: 0;
}

.assessment-flow article > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.assessment-flow h3 {
  margin: 56px 0 13px;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.assessment-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-dialog {
  width: min(650px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 35px 120px rgba(1, 31, 44, 0.45);
}

.product-dialog::backdrop {
  background: rgba(2, 31, 43, 0.72);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: var(--cyan-bright);
  outline: 0;
}

.dialog-category {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-dialog h2 {
  margin: 20px 0 7px;
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.dialog-strength {
  margin: 0;
  color: var(--pink);
  font-weight: 600;
}

.dialog-intro {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.dialog-review {
  margin-top: 30px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.dialog-review h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 1rem;
}

.dialog-review ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.dialog-call {
  margin-top: 28px;
  text-decoration: none;
}

.therapy-footer p {
  margin: 0;
}

.footer-mark {
  width: 32px;
  height: 32px;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(17px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .therapy-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 78px 0 92px;
  }

  .clinical-card {
    max-width: 760px;
  }

  .section-heading,
  .education-intro,
  .measurement-heading,
  .safety-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p,
  .education-intro > p:last-child,
  .measurement-heading > p:last-child,
  .safety-heading > p:last-child {
    max-width: 650px;
  }

  .goal-interface {
    grid-template-columns: 1fr;
  }

  .goal-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .goal-option:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .goal-option:nth-child(3) {
    border-bottom: 0;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-grid,
  .assessment-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .assessment-flow article:nth-child(2) {
    border-right: 0;
  }

  .assessment-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .measurement-feature {
    grid-template-columns: 1fr;
  }

  .measurement-divider {
    min-height: 68px;
    background: linear-gradient(180deg, var(--ink), #07536d);
  }

  .pillar:nth-child(2) {
    border-right: 0;
  }

  .pillar:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .regulatory-note {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .therapy-header,
  .therapy-hero,
  .trust-row,
  .goals-section,
  .catalog-section,
  .measurement-section,
  .program-section,
  .cta-section,
  .therapy-footer {
    width: min(100% - 32px, 1240px);
  }

  .therapy-header {
    min-height: 78px;
  }

  .clinic-brand img {
    width: 50px;
    height: 40px;
  }

  .clinic-brand strong {
    font-size: 13px;
  }

  .clinic-brand small {
    font-size: 9px;
  }

  .back-link {
    display: none;
  }

  .therapy-hero {
    padding: 62px 0 80px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .walk-in-note {
    align-items: flex-start;
    line-height: 1.5;
  }

  .walk-in-note > span {
    margin-top: 6px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-row > div {
    min-height: 76px;
    padding: 16px 14px;
  }

  .trust-row > div:first-child,
  .trust-row > div:nth-child(3) {
    padding-left: 0;
  }

  .trust-row > div:nth-child(2) {
    border-right: 0;
  }

  .trust-row > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .goals-section,
  .catalog-section,
  .measurement-section,
  .program-section,
  .education-section,
  .safety-section,
  .cta-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .goal-options,
  .education-grid,
  .safety-layout,
  .pillar-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .catalog-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-search {
    width: 100%;
  }

  .catalog-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .catalog-tab {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    padding: 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .catalog-tab:nth-child(2n) {
    border-right: 0;
  }

  .catalog-tab:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .catalog-grid,
  .assessment-flow {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 205px;
  }

  .assessment-flow article,
  .assessment-flow article:nth-child(2),
  .assessment-flow article:nth-child(-n + 2) {
    min-height: 215px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assessment-flow article:last-child {
    border-bottom: 0;
  }

  .measurement-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .measurement-device {
    min-height: auto;
    padding: 34px 25px;
  }

  .goal-option,
  .goal-option:nth-child(odd),
  .goal-option:nth-child(3) {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .goal-option:last-child {
    border-bottom: 0;
  }

  .goal-result {
    padding: 32px 23px;
  }

  .education-card {
    min-height: 300px;
  }

  .pillar,
  .pillar:nth-child(2),
  .pillar:nth-child(-n + 2) {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .pillar h3 {
    margin-top: 55px;
  }

  .cta-logo {
    width: min(240px, 70vw);
  }

  .therapy-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .therapy-footer > div {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
