:root {
  --ink: #0b2545;
  --muted: #5a7087;
  --teal: #0a2342;
  --teal-deep: #06172e;
  --teal-soft: #eaf1f8;
  --ivory: #f5f8fc;
  --paper: #ffffff;
  --gold: #5d86ad;
  --gold-light: #bed2e6;
  --line: rgba(11, 37, 69, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  font: inherit;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: white;
  color: var(--teal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #8bb2d4;
  outline-offset: 3px;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 118px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(13, 81, 77, 0.1);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand span {
  display: grid;
}
.brand strong {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.brand-mark {
  width: 290px;
  height: 290px;
  overflow: visible;
}
.brand-mark.compact {
  width: 45px;
  height: 45px;
}
.mark-wing {
  fill: #ffffff;
}
.mark-motion {
  fill: #7fa4c9;
  opacity: 0.82;
}
.mark-cross,
.mark-base {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mark-cross {
  stroke-width: 7;
}
.mark-base {
  stroke-width: 5;
}
.brand-mark.compact {
  padding: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.desktop-nav a {
  color: #385552;
  font-size: 13px;
  font-weight: 650;
}
.desktop-nav a:hover {
  color: var(--teal);
}
.desktop-nav .product-nav-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.32);
}
.desktop-nav .nav-give {
  padding: 10px 15px;
  border: 1px solid rgba(10, 35, 66, 0.22);
  border-radius: 999px;
  background: #eaf1f8;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.desktop-nav .nav-give:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: var(--teal);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}
.header-cta:hover {
  background: var(--teal-deep);
}
.mobile-menu {
  display: none;
  position: relative;
  margin-left: auto;
}
.mobile-menu summary {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  list-style: none;
  display: grid;
  place-content: center;
  gap: 6px;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary span {
  width: 18px;
  height: 1.5px;
  background: white;
  display: block;
}
.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 54px;
  width: 240px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(8, 60, 57, 0.14);
  display: grid;
}
.mobile-menu nav a {
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
}
.mobile-menu nav .mobile-give {
  margin: 6px 0;
  border-radius: 10px;
  background: var(--teal);
  color: white;
  text-align: center;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 0;
  background: #0a2342 url("/sedona-hero.png") center 45% / cover no-repeat;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  background: linear-gradient(
    90deg,
    rgba(5, 22, 43, 0.95) 0%,
    rgba(5, 22, 43, 0.83) 42%,
    rgba(5, 22, 43, 0.34) 76%,
    rgba(5, 22, 43, 0.22) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(to bottom, transparent, rgba(5, 22, 43, 0.18));
  pointer-events: none;
}
.hero-glow {
  display: none;
}

.hero .hero-headline{
  position: relative;
  z-index: 1;
  max-width: 715px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-headline h1{
  font-size: clamp(25px, 4vw, 45px);
}

.hero .hero-headline h2{
  font-size: clamp(14px, 2vw, 30px);
  color: #ccc; 
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  align-items: center;
  min-height: 650px;
  gap: 72px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero .eyebrow {
  color: #d7e5f2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: #9dbbda;
}
.availability {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.availability i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #8fd5aa;
  box-shadow: 0 0 0 5px rgba(143, 213, 170, 0.13);
}
.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.1vw, 90px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero h1 em,
.split-heading h2 em,
.care-sticky h2 em,
.closing h2 em,
.digital-heading h2 em {
  color: var(--gold);
  font-weight: 400;
}
.hero h1 {
  color: #ffffff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.16);
}
.hero h1 em {
  color: #bdd3e9;
}
.hero-lede {
  max-width: 625px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.button.primary {
  background: #ffffff;
  color: var(--teal);
  box-shadow: 0 14px 30px rgba(3, 15, 31, 0.24);
}
.button.primary:hover {
  background: #eaf1f8;
  transform: translateY(-1px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
  font-size: 13px;
  font-weight: 750;
}
.hero-note {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}
.hero-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center end;
}
.welcome-card {
  width: min(100%, 315px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background: rgba(6, 23, 46, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}
.welcome-card .brand-mark {
  width: 104px;
  height: 104px;
  padding: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}
.welcome-overline {
  margin: 20px 0 8px !important;
  color: #bed2e6 !important;
  font-family: var(--sans) !important;
  font-size: 9px !important;
  font-style: normal !important;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.welcome-card > p {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}
.welcome-card address {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-style: normal;
  line-height: 1.65;
}
.welcome-card a {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  color: white;
  font-size: 11px;
  font-weight: 800;
}
.art-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198, 154, 69, 0.28);
}
.orbit-one {
  width: 470px;
  height: 470px;
}
.orbit-two {
  width: 375px;
  height: 375px;
  border-style: dashed;
}
.mark-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.mark-stage::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 30px 70px rgba(8, 60, 57, 0.09);
}
.mark-stage svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 30px rgba(8, 60, 57, 0.08));
}
.mark-stage p {
  position: relative;
  z-index: 2;
  margin: -24px 0 0;
  color: var(--teal);
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
  font-style: italic;
}
.art-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(13, 81, 77, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.85);
  box-shadow: 0 10px 30px rgba(8, 60, 57, 0.07);
  color: #486360;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.art-label span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}
.label-one {
  top: 80px;
  left: 5px;
}
.label-two {
  right: -12px;
  top: 200px;
}
.label-three {
  bottom: 65px;
  left: 34px;
}
.principles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(11, 37, 69, 0.13);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 -15px 45px rgba(3, 15, 31, 0.1);
}
.principles article {
  min-height: 118px;
  padding: 28px 24px;
  display: flex;
  gap: 14px;
  border-right: 1px solid rgba(13, 81, 77, 0.1);
}
.principles article:last-child {
  border-right: 0;
}
.check {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.principles h2 {
  margin: 1px 0 7px;
  font-size: 13px;
}
.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.approach {
  background: var(--paper);
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: end;
}
.split-heading h2,
.care-sticky h2,
.faith-copy h2,
.access-copy h2,
.questions h2,
.closing h2,
.center-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.split-heading h2 {
  font-size: clamp(45px, 5vw, 68px);
  line-height: 1.05;
}
.section-intro {
  padding-bottom: 2px;
}
.section-intro p {
  margin: 0 0 18px;
  color: #526a67;
  font-size: 15px;
  line-height: 1.75;
}
.section-intro p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}
.pillar {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -100px;
  bottom: -100px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
}
.teal-card {
  background: var(--teal);
  color: white;
}
.ivory-card {
  border: 1px solid #dce6ef;
  background: #ffffff;
  color: var(--ink);
}
.gold-card {
  background: #dce8f3;
  color: var(--ink);
}
.pillar-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 26px;
  opacity: 0.92;
}
.pillar-icon.dna {
  font-size: 38px;
  transform: rotate(-35deg);
}
.pillar > p:first-of-type {
  margin: auto 0 12px;
  opacity: 0.6;
  font-family: var(--serif);
  font-size: 13px;
}
.pillar h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}
.pillar > p:last-child {
  margin: 0;
  max-width: 315px;
  opacity: 0.8;
  font-size: 13px;
  line-height: 1.7;
}

.care {
  background: var(--teal);
  color: white;
}
.care-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: start;
}
.care-sticky {
  position: sticky;
  top: 130px;
}
.section-kicker.light {
  color: var(--gold-light);
}
.care-sticky h2 {
  font-size: clamp(43px, 4.5vw, 64px);
  line-height: 1.06;
}
.care-sticky > p:not(.section-kicker) {
  max-width: 470px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
}
.light-button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}
.light-button:hover {
  background: white;
  color: var(--teal);
}
.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 26px;
  padding: 37px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-list article > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 14px;
}
.service-list h3 {
  margin: -4px 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.service-list p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.75;
}
.inline-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.inline-service-link:hover {
  color: white;
  transform: translateX(2px);
}

.products {
  background: #f2f6fa;
}
.products-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: end;
}
.products-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(47px, 5.5vw, 75px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.products-heading h2 em {
  color: var(--gold);
  font-weight: 400;
}
.products-heading > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.products-heading > div:last-child > span {
  display: block;
  margin-top: 15px;
  color: #7890a6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-product-wrap {
  margin-top: 58px;
}
.featured-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  border: 1px solid rgba(203, 170, 105, 0.42);
  border-radius: 20px;
  background: #071c37;
  color: white;
  box-shadow: 0 28px 68px rgba(7, 28, 55, 0.18);
}
.featured-product-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a97d37, #f1d8a1 48%, #a97d37);
}
.featured-product-media {
  position: relative;
  min-width: 0;
  padding: 20px;
  background: linear-gradient(145deg, #f7ead5, #e4cfaa);
  display: grid;
  place-items: center;
}
.featured-product-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(37, 25, 10, 0.16);
}
.premium-badge {
  position: absolute;
  top: 36px;
  left: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 28, 55, 0.9);
  color: #f5ddb0;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.featured-product-copy {
  padding: clamp(38px, 5vw, 66px);
  display: flex;
  flex-direction: column;
}
.featured-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.featured-product-top > span {
  color: #d9bd82;
  font-family: var(--serif);
  font-size: 14px;
}
.featured-product-top small {
  color: #c7d6e4;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}
.featured-product-kicker {
  margin: 38px 0 10px !important;
  color: #d9bd82 !important;
  font-size: 9px !important;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.featured-product-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.featured-product-copy > p:not(.featured-product-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.75;
}
.featured-product-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}
.featured-product-copy li {
  color: #d8e3ed;
  font-size: 10px;
  font-weight: 750;
}
.featured-product-copy li::before {
  content: "✦";
  margin-right: 9px;
  color: #d9bd82;
}
.featured-product-copy a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4ddb2;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.featured-product-copy a:hover {
  color: white;
  transform: translateX(2px);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 17px;
}
.product-card {
  min-height: 500px;
  padding: 31px;
  border: 1px solid #d7e2ec;
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 48px rgba(11, 37, 69, 0.055);
}
.product-card:nth-child(2) {
  background: var(--teal);
  color: white;
}
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.product-card-top > span {
  color: #7091af;
  font-family: var(--serif);
  font-size: 13px;
}
.product-card-top small {
  color: #758da3;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card:nth-child(2) .product-card-top small,
.product-card:nth-child(2) .product-card-top > span {
  color: #b8cfe4;
}
.product-media {
  height: 225px;
  margin: 20px 0 17px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fbfd, #e9f1f7);
  overflow: hidden;
}
.product-card:nth-child(2) .product-media {
  background: rgba(255, 255, 255, 0.92);
}
.product-media img {
  display: block;
  width: auto;
  max-width: 84%;
  height: 198px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 19px rgba(11, 37, 69, 0.14));
}
.product-card-nubby .product-media img {
  height: 160px;
  max-width: 68%;
  transform: translateY(-2px);
}
.product-card-turmeric .product-media img {
  height: 170px;
  max-width: 58%;
  transform: translateY(-2px);
}
.product-card h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.product-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.63);
}
.product-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e0e8ef;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card:nth-child(2) a {
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}
.product-card a:hover {
  transform: translateX(2px);
}
.product-disclaimer {
  margin-top: 22px;
  padding: 17px 20px;
  border-left: 3px solid #6c8faf;
  background: #e5eef6;
  color: #4e657a;
  font-size: 9px;
  line-height: 1.65;
}

.process {
  background: #eef4f9;
}
.center-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.center-heading h2 {
  font-size: clamp(43px, 5vw, 63px);
}
.center-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 72px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 16%;
  right: 16%;
  border-top: 1px dashed rgba(13, 81, 77, 0.3);
}
.process-grid article {
  position: relative;
  text-align: center;
}
.process-grid span {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin: 0 auto 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 81, 77, 0.22);
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}
.process-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}
.process-grid p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.faith {
  position: relative;
  overflow: hidden;
  background: #071c37;
  color: white;
}
.faith::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: radial-gradient(circle at 68% 35%, var(--gold-light), transparent 37%);
}
.faith-watermark {
  position: absolute;
  right: 4%;
  top: -140px;
  color: white;
  opacity: 0.025;
  font-family: var(--serif);
  font-size: 720px;
  line-height: 1;
}
.faith-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: center;
}
.faith-mark {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50% 50% 16px 16px;
  background: rgba(255, 255, 255, 0.025);
}
.faith-mark .brand-mark {
  width: min(85%, 400px);
}
.section-kicker.gold {
  color: var(--gold-light);
}
.faith-copy h2 {
  font-size: clamp(48px, 5.2vw, 74px);
}
.faith-lede {
  max-width: 650px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}
.faith blockquote {
  margin: 34px 0 28px;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
}
.faith blockquote p {
  max-width: 590px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}
.faith cite {
  color: var(--gold-light);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.faith-welcome {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
}

.access {
  background: var(--paper);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}
.access-copy h2 {
  font-size: clamp(47px, 5.5vw, 75px);
}
.access-copy > p:not(.section-kicker) {
  max-width: 630px;
  margin: 26px 0 0;
  color: #526a67;
  font-size: 17px;
  line-height: 1.72;
}
.access-copy .fine-print {
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.65 !important;
}
.access-card {
  position: relative;
  padding: 44px;
  border-radius: 16px;
  background: #eaf1f8;
  box-shadow: 0 30px 70px rgba(11, 37, 69, 0.08);
}
.access-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198, 154, 69, 0.25);
  border-radius: 10px;
  pointer-events: none;
}
.access-icon {
  position: relative;
  z-index: 1;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 28px;
}
.access-card h3 {
  position: relative;
  z-index: 1;
  margin: 27px 0 13px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}
.access-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.access-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}
.access-card .give-card-button {
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 30px rgba(6, 23, 46, 0.16);
  letter-spacing: 0.08em;
}
.access-card .give-card-button:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.questions {
  background: #f1f5f9;
}
.questions-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.questions h2 {
  font-size: clamp(43px, 4.8vw, 65px);
  line-height: 1.08;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--serif);
  font-size: 21px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 680px;
  margin: -6px 40px 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.closing {
  padding: 88px 0;
  background: var(--paper);
}
.closing-card {
  position: relative;
  min-height: 390px;
  padding: 62px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50px 1fr 0.55fr;
  gap: 45px;
  align-items: center;
  background: var(--teal);
  color: white;
}
.closing-card::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -170px;
  top: -210px;
  border: 1px solid rgba(232, 210, 162, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(232, 210, 162, 0.03),
    0 0 0 110px rgba(232, 210, 162, 0.02);
}
.closing-symbol {
  align-self: start;
  color: var(--gold-light);
  font-size: 26px;
}
.closing h2 {
  font-size: clamp(43px, 4.4vw, 62px);
  line-height: 1.06;
}
.closing-card > div:nth-child(2) > p:not(.section-kicker) {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.75;
}
.closing-address {
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-card {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.status-card > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.status-card strong {
  margin: 18px 0 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.status-card strong i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ed0a5;
  box-shadow: 0 0 0 5px rgba(142, 208, 165, 0.1);
}
.status-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

footer {
  padding: 58px 0 26px;
  border-top: 1px solid var(--line);
  background: #eef3f8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.footer-grid > p,
.footer-grid > address {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.04em;
}
.footer-grid > p:last-child {
  text-align: right;
}
.footer-brand small {
  max-width: 220px;
}
.footer-legal {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #7a8986;
  font-size: 9px;
}
.footer-legal p {
  margin: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 15px;
  }
  .hero-grid {
    gap: 20px;
  }
  .hero-art {
    transform: scale(0.9);
  }
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }
  .principles article:nth-child(2) {
    border-right: 0;
  }
  .principles article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(13, 81, 77, 0.1);
  }
  .care-layout,
  .questions-grid {
    gap: 65px;
  }
  .products-heading {
    gap: 60px;
  }
  .access-grid {
    gap: 60px;
  }
  .closing-card {
    grid-template-columns: 34px 1fr;
  }
  .status-card {
    grid-column: 2;
    max-width: 430px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 36px, 700px);
  }
  .section {
    padding: 88px 0;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero {
    padding-top: 68px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero h1 {
    margin-inline: auto;
  }
  .hero-lede {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-art {
    min-height: 490px;
    transform: none;
  }
  .orbit-one {
    width: min(470px, 86vw);
    height: min(470px, 86vw);
  }
  .orbit-two {
    width: min(375px, 70vw);
    height: min(375px, 70vw);
  }
  .mark-stage .brand-mark {
    width: min(290px, 62vw);
    height: auto;
  }
  .split-heading,
  .care-layout,
  .faith-grid,
  .access-grid,
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .products-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .featured-product-card {
    grid-template-columns: 1fr;
  }
  .featured-product-media {
    padding: 18px;
  }
  .featured-product-copy {
    min-height: 490px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 470px;
  }
  .split-heading {
    align-items: start;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    min-height: 300px;
  }
  .care-sticky {
    position: static;
  }
  .process-grid {
    gap: 18px;
  }
  .faith-mark {
    min-height: 420px;
    order: 2;
  }
  .faith-copy {
    order: 1;
  }
  .access-card {
    max-width: 580px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 28px);
  }
  .header-inner {
    height: 72px;
  }
  .brand strong {
    font-size: 23px;
  }
  .brand small {
    font-size: 8px;
  }
  .brand-mark.compact {
    width: 39px;
    height: 39px;
  }
  .hero {
    padding-top: 52px;
  }
  .hero h1 {
    font-size: clamp(48px, 15.6vw, 68px);
  }
  .hero-lede {
    font-size: 18px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
  .hero-art {
    min-height: 440px;
  }
  .art-label {
    font-size: 8px;
    padding: 8px 10px;
  }
  .label-one {
    top: 52px;
    left: 0;
  }
  .label-two {
    right: 0;
    top: 183px;
  }
  .label-three {
    bottom: 46px;
    left: 14px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .principles article {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 81, 77, 0.1);
  }
  .principles article:last-child {
    border-bottom: 0;
  }
  .split-heading h2,
  .care-sticky h2,
  .faith-copy h2,
  .access-copy h2,
  .questions h2,
  .closing h2,
  .center-heading h2 {
    font-size: 43px;
  }
  .pillar-grid {
    margin-top: 52px;
  }
  .pillar {
    padding: 28px;
  }
  .service-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .service-list h3 {
    font-size: 24px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .process-grid::before {
    display: none;
  }
  .faith-mark {
    min-height: 330px;
  }
  .faith-lede {
    font-size: 19px;
  }
  .access-card {
    padding: 34px;
  }
  .products-heading h2 {
    font-size: 43px;
  }
  .featured-product-wrap {
    margin-top: 42px;
  }
  .featured-product-media {
    padding: 12px;
  }
  .premium-badge {
    top: 24px;
    left: 24px;
  }
  .featured-product-copy {
    min-height: 0;
    padding: 32px 25px;
  }
  .featured-product-copy h3 {
    font-size: 42px;
  }
  .featured-product-top {
    align-items: flex-start;
  }
  .faq-list summary {
    font-size: 18px;
  }
  .closing {
    padding: 28px 0;
  }
  .closing-card {
    padding: 42px 28px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .closing-symbol {
    display: none;
  }
  .status-card {
    grid-column: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > p:last-child {
    grid-column: auto;
  }
  .footer-legal {
    flex-direction: column;
  }
}

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

/* Digital care and portal foundations */
.digital {
  background: #ffffff;
}
.digital-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 100px;
  align-items: end;
}
.digital-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.digital-heading > div:last-child > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.security-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.security-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5d86ad;
  box-shadow: 0 0 0 5px #e2ecf5;
}
.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}
.digital-grid article {
  min-height: 305px;
  padding: 34px;
  border: 1px solid #dbe5ee;
  border-radius: 14px;
  background: #f7fafd;
  display: flex;
  flex-direction: column;
}
.digital-grid article:nth-child(2) {
  background: var(--teal);
  color: white;
}
.digital-number {
  color: #7094b7;
  font-family: var(--serif);
  font-size: 13px;
}
.digital-grid h3 {
  margin: auto 0 15px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.digital-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.digital-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}
.digital-grid a,
.coming-tag {
  margin-top: 22px;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.digital-grid a {
  display: flex;
  justify-content: space-between;
}
.coming-tag {
  color: #5d7893;
  text-transform: uppercase;
}
.phi-warning {
  margin-top: 22px;
  padding: 17px 20px;
  border-left: 3px solid #5d86ad;
  background: #eef4fa;
  color: #49627a;
  font-size: 11px;
  line-height: 1.65;
}
.status-button {
  width: 100%;
  margin-top: 20px;
  background: white;
  color: var(--teal);
  min-height: 45px;
}
.floating-schedule {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: var(--teal);
  color: white;
  box-shadow: 0 15px 38px rgba(6, 23, 46, 0.28);
  font-size: 12px;
  font-weight: 800;
}
.floating-schedule:hover {
  transform: translateY(-2px);
}

/* Portal experiences intentionally contain fictional data and no persistence. */
.portal-page {
  min-height: 100vh;
  padding: 0;
  background:
    radial-gradient(circle at 6% 4%, rgba(93, 134, 173, 0.17), transparent 28%), #e9f0f6;
}
.portal-shell {
  width: min(1050px, 100%);
  margin: 0 auto;
}
.portal-shell-wide {
  width: min(1380px, 100%);
}
.portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 13px 18px;
  border: 1px solid #d2dde8;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(11, 37, 69, 0.06);
}
.portal-topbar .brand strong {
  font-size: 22px;
}
.portal-topbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.portal-environment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d6881;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.portal-environment i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6d95ba;
  box-shadow: 0 0 0 5px #e4edf5;
}
.portal-back {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.portal-back:hover {
  color: var(--teal);
}
.portal-demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 38px;
  padding: 8px 18px;
  background: #dfeaf4;
  color: #38546e;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.portal-demo-banner strong {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.portal-demo-banner span {
  display: flex;
  align-items: center;
  gap: 20px;
}
.portal-demo-banner span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7898b7;
}
.practitioner-banner {
  background: #f0e8d9;
  color: #6d5730;
}
.practitioner-banner strong {
  color: #583f18;
}
.practitioner-banner span::before {
  background: #aa8954;
}
.portal-app {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 820px;
  overflow: hidden;
  border: 1px solid #d2dde8;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: #f8fbfd;
  box-shadow: 0 28px 70px rgba(11, 37, 69, 0.12);
}
.portal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 30px 20px;
  background: var(--teal-deep);
  color: white;
}
.portal-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.portal-profile > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.portal-profile strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.portal-profile small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.4;
}
.portal-avatar {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #d6e4f1;
  font-family: var(--serif);
  font-size: 14px;
}
.portal-sidebar nav {
  display: grid;
  gap: 6px;
}
.portal-sidebar nav button {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  font-size: 11px;
  font-weight: 750;
}
.portal-sidebar nav button span {
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--serif);
  font-size: 10px;
}
.portal-sidebar nav button i {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.portal-sidebar nav button:hover:not(:disabled),
.portal-sidebar nav button.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.portal-sidebar nav button.active span {
  color: #bad1e7;
}
.portal-sidebar nav button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.portal-help-card {
  margin-top: auto;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.portal-help-card strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.portal-help-card p {
  margin: 9px 0 15px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.6;
}
.portal-help-card a {
  color: #c8dced;
  font-size: 10px;
  font-weight: 800;
}
.portal-workspace {
  min-width: 0;
  padding: 44px clamp(28px, 4vw, 58px) 58px;
}
.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.workspace-heading .section-kicker {
  margin-bottom: 12px;
}
.workspace-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.workspace-heading p:not(.section-kicker) {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.workspace-date {
  flex: 0 0 auto;
  margin-top: 5px;
  padding: 9px 12px;
  border: 1px solid #d4e0ea;
  border-radius: 999px;
  background: white;
  color: #57728b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portal-card {
  border: 1px solid #dbe4ec;
  border-radius: 16px;
  background: white;
  box-shadow: 0 14px 35px rgba(11, 37, 69, 0.045);
}
.card-label {
  color: #6684a0;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.patient-summary-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 17px;
}
.priority-card {
  padding: 29px;
  background: var(--teal);
  color: white;
}
.priority-card .card-label {
  color: #b7d0e7;
}
.priority-card h2 {
  max-width: 480px;
  margin: 30px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}
.priority-card > p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.65;
}
.progress-row {
  display: flex;
  justify-content: space-between;
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 750;
}
.progress-row strong {
  color: white;
}
.progress-track {
  height: 5px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}
.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #b8cee3;
  transition: width 0.25s ease;
}
.next-visit-card {
  padding: 29px;
}
.next-visit-card > strong {
  display: block;
  margin-top: 35px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.next-visit-card p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.next-visit-card a {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
}
.workspace-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 36px 0 15px;
}
.workspace-section-heading > div {
  display: grid;
  gap: 5px;
}
.workspace-section-heading span {
  color: #718ba3;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.workspace-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.workspace-section-heading button {
  border: 0;
  background: transparent;
  color: #526f89;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}
.exercise-list {
  display: grid;
  gap: 9px;
}
.exercise-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 12px 18px;
  border: 1px solid #dbe4ec;
  border-radius: 13px;
  background: white;
}
.exercise-row.complete {
  background: #f0f6fa;
  border-color: #cbdce9;
}
.exercise-check {
  width: 35px;
  height: 35px;
  border: 1px solid #cad8e4;
  border-radius: 10px;
  background: #f3f7fa;
  color: #496984;
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
}
.exercise-row.complete .exercise-check {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.exercise-copy > span {
  color: #7690a7;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.exercise-copy h3 {
  margin: 4px 0 0;
  font-size: 11px;
}
.exercise-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}
.patient-video-pending {
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px solid #d8e3eb;
  border-radius: 8px;
  background: #f2f7fa;
  color: #7790a4;
  font-size: 7px;
  font-weight: 750;
}
.patient-video-pending i {
  margin-right: 6px;
  color: #5d86a7;
  font-size: 7px;
  font-style: normal;
}
.exercise-row > strong {
  color: #5c748b;
  font-size: 9px;
  font-weight: 750;
}
.exercise-list.detailed {
  gap: 12px;
}
.exercise-list.detailed .exercise-row {
  min-height: 96px;
}
.program-intro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 18px;
  padding: 28px;
}
.program-intro-card h2 {
  margin: 9px 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}
.program-intro-card p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}
.program-score {
  min-width: 120px;
  display: grid;
  justify-items: end;
}
.program-score strong {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
}
.program-score span {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}
.portal-safety-callout {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 17px 20px;
  border-left: 3px solid #6f92b3;
  background: #eaf2f8;
  color: #3b5871;
  font-size: 9px;
  line-height: 1.55;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.resource-card {
  min-height: 290px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.resource-index {
  margin-bottom: 45px;
  color: #7792aa;
  font-family: var(--serif);
  font-size: 12px;
}
.resource-card h2 {
  margin: 10px 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}
.resource-card button {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8397aa;
  text-align: left;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.prayer-preference-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
}
.prayer-preference-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: var(--serif);
}
.prayer-preference-card strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.prayer-preference-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}
.practitioner-sidebar {
  background: #081a31;
}
.workflow-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.workflow-stepper li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid #dbe4ec;
  border-right: 0;
  background: white;
}
.workflow-stepper li:first-child {
  border-radius: 13px 0 0 13px;
}
.workflow-stepper li:last-child {
  border-right: 1px solid #dbe4ec;
  border-radius: 0 13px 13px 0;
}
.workflow-stepper li > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2f6;
  color: #7890a6;
  font-size: 8px;
  font-weight: 850;
}
.workflow-stepper li > div {
  display: grid;
  gap: 2px;
}
.workflow-stepper strong {
  color: #6f8295;
  font-size: 9px;
}
.workflow-stepper small {
  color: #a1afbc;
  font-size: 7px;
}
.workflow-stepper li.current {
  background: #eaf1f7;
}
.workflow-stepper li.current > span {
  background: var(--teal);
  color: white;
}
.workflow-stepper li.current strong {
  color: var(--teal);
}
.workflow-stepper li.complete > span {
  background: #507ba2;
  color: white;
}
.practitioner-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}
.dictation-card,
.automation-card,
.structured-note-card {
  padding: 25px;
}
.dictation-card > header,
.structured-note-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.dictation-card h2,
.automation-card h2,
.structured-note-card h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}
.privacy-chip,
.review-chip {
  padding: 7px 10px;
  border-radius: 99px;
  background: #e8f0f6;
  color: #53738f;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.transcript-panel {
  min-height: 205px;
  margin-top: 20px;
  padding: 22px;
  border: 1px dashed #c9d7e3;
  border-radius: 13px;
  background: #f8fafc;
  display: grid;
  place-items: center;
}
.transcript-panel.has-content {
  place-items: start;
  border-style: solid;
}
.transcript-panel > p {
  margin: 0;
  color: #38536b;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.75;
}
.empty-transcript {
  max-width: 390px;
  text-align: center;
}
.empty-transcript > span {
  color: #8ca3b7;
  font-size: 24px;
  letter-spacing: 0.15em;
}
.empty-transcript strong {
  display: block;
  margin: 13px 0 7px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.empty-transcript p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}
.dictation-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}
.portal-action-primary,
.portal-action-secondary {
  min-height: 39px;
  padding: 0 15px;
  border: 0;
  cursor: pointer;
  font-size: 9px;
}
.portal-action-primary {
  background: var(--teal);
  color: white;
}
.portal-action-secondary {
  border: 1px solid #d0dbe4;
  background: white;
  color: #667f96;
}
.portal-action-primary:disabled,
.portal-action-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}
.microcopy {
  margin: 14px 0 0;
  color: #7a8d9d;
  font-size: 8px;
  line-height: 1.55;
}
.automation-card {
  display: flex;
  flex-direction: column;
}
.automation-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.automation-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #61778b;
  font-size: 9px;
  line-height: 1.35;
}
.automation-card li span {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f4eee3;
  color: #8b682f;
  font-size: 8px;
}
.automation-card li.found span {
  background: #e2edf5;
  color: #40698d;
}
.automation-card .portal-action-primary {
  width: 100%;
  margin-top: auto;
}
.structured-note-card {
  margin-top: 16px;
}
.review-chip {
  background: #f3e9d9;
  color: #80622f;
}
.review-chip.complete {
  background: #dfecf5;
  color: #3b698f;
}
.note-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid #dce5ec;
  border-radius: 13px;
  overflow: hidden;
}
.note-section-grid article {
  min-height: 105px;
  padding: 18px;
  border-right: 1px solid #dce5ec;
  border-bottom: 1px solid #dce5ec;
}
.note-section-grid article:nth-child(even) {
  border-right: 0;
}
.note-section-grid article:last-child {
  grid-column: 1 / -1;
  border: 0;
}
.note-section-grid strong {
  color: #57738d;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.note-section-grid p {
  margin: 8px 0 0;
  color: #43596d;
  font-size: 9px;
  line-height: 1.62;
}
.text-reset {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #71879a;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}
.activation-gates {
  margin-top: 42px;
}
.pending-pill {
  padding: 7px 10px;
  border-radius: 99px;
  background: #f3e9d9;
  color: #80622f !important;
}
.gate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}
.gate-card {
  min-height: 190px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.gate-card > span {
  color: #8198ad;
  font-family: var(--serif);
  font-size: 10px;
}
.gate-card h3 {
  margin: 35px 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.gate-card p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.55;
}
.gate-card small {
  margin-top: auto;
  padding-top: 15px;
  color: #8a6b37;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.portal-notice {
  padding: 18px;
  border-radius: 12px;
  background: #dfeaf4;
  color: #334f6b;
  font-size: 10px;
  line-height: 1.6;
}
.portal-final-notice {
  max-width: 1120px;
  margin: 24px auto 0;
  border-left: 3px solid #648aae;
  background: rgba(255, 255, 255, 0.72);
}

/* Live, local-only practitioner dictation workspace. */
.dictation-control-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 14px;
  padding: 19px 21px;
}
.dictation-mode-copy {
  display: grid;
  gap: 3px;
}
.capture-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: #5d7890;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.capture-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6c8fab;
  box-shadow: 0 0 0 4px #e7eef4;
}
.capture-status.listening {
  color: #9a392d;
}
.capture-status.listening i {
  background: #d94d3f;
  box-shadow: 0 0 0 5px rgba(217, 77, 63, 0.13);
  animation: dictation-pulse 1.2s ease-in-out infinite;
}
@keyframes dictation-pulse {
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(217, 77, 63, 0.07);
  }
}
.dictation-mode-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.dictation-mode-copy small {
  color: var(--muted);
  font-size: 8px;
}
.speech-mode-switch {
  display: flex;
  padding: 3px;
  border: 1px solid #d6e0e8;
  border-radius: 999px;
  background: #f0f5f8;
}
.speech-mode-switch button {
  min-height: 31px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6d8294;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}
.speech-mode-switch button.active {
  background: white;
  color: var(--teal);
  box-shadow: 0 3px 10px rgba(11, 37, 69, 0.09);
}
.dictation-main-button {
  min-height: 43px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 850;
}
.dictation-main-button span {
  margin-right: 7px;
  color: #f3a49c;
}
.dictation-main-button.stop {
  background: #86382f;
}
.dictation-main-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.deidentified-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 13px 16px;
  border: 1px solid #e2d3bc;
  border-radius: 11px;
  background: #faf5ec;
  color: #675437;
  font-size: 9px;
  line-height: 1.45;
}
.deidentified-confirmation input {
  margin-top: 1px;
  accent-color: var(--teal);
}
.dictation-error {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px 17px;
  border-left: 3px solid #a54b3e;
  background: #fbefed;
  color: #76392f;
  font-size: 9px;
  line-height: 1.5;
}
.dictation-error strong {
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.live-transcript-card {
  padding: 25px;
}
.live-transcript-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.live-transcript-card h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}
.transcript-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.transcript-tools > span {
  color: #71889d;
  font-size: 7px;
  font-weight: 750;
}
.transcript-tools button {
  padding: 7px 10px;
  border: 1px solid #d6e0e8;
  border-radius: 8px;
  background: white;
  color: #5e758a;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}
.live-transcript-card > textarea {
  width: 100%;
  min-height: 210px;
  margin-top: 18px;
  padding: 20px;
  resize: vertical;
  border: 1px solid #cddbe5;
  border-radius: 13px;
  background: #f8fafc;
  color: #314e67;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
}
.live-transcript-card > textarea::placeholder {
  color: #91a3b2;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.55;
}
.interim-transcript {
  margin: 10px 0 0;
  padding: 11px 13px;
  border-radius: 9px;
  background: #eaf2f7;
  color: #587289;
  font-size: 10px;
  font-style: italic;
  line-height: 1.55;
}
.interim-transcript span {
  margin-right: 7px;
  color: #37617f;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-note-card {
  margin-top: 16px;
}
.note-empty-guidance {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #6f94b3;
  background: #edf4f8;
  color: #5c7489;
  font-size: 8px;
  line-height: 1.55;
}
.template-select {
  display: grid;
  gap: 5px;
}
.template-select > span {
  color: #71889d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.template-select select {
  min-height: 36px;
  padding: 0 30px 0 11px;
  border: 1px solid #d3dee7;
  border-radius: 8px;
  background: white;
  color: #405f78;
  font-size: 9px;
  font-weight: 750;
}
.note-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.note-editor-grid label {
  display: grid;
  gap: 7px;
}
.note-editor-grid label.wide {
  grid-column: 1 / -1;
}
.note-editor-grid label > span {
  color: #57738d;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.note-editor-grid textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
  border: 1px solid #d4e0e9;
  border-radius: 10px;
  background: #f9fbfc;
  color: #3e566b;
  font-size: 10px;
  line-height: 1.6;
}
.intervention-builder {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid #d4e0e9;
  border-radius: 12px;
  background: #f4f8fb;
}
.intervention-builder > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.intervention-builder h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}
.intervention-builder > header > small {
  padding-top: 5px;
  color: #7b8f9f;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.intervention-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  margin-top: 16px;
}
.note-editor-grid .intervention-control {
  flex: 1 1 220px;
  gap: 7px;
}
.intervention-control select,
.intervention-control input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #cbd9e4;
  border-radius: 9px;
  background: white;
  color: #405f78;
  font-size: 9px;
  outline: 0;
}
.intervention-control select:focus,
.intervention-control input:focus {
  border-color: #6e96b8;
  box-shadow: 0 0 0 3px rgba(93, 134, 173, 0.12);
}
.add-intervention {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-size: 8px;
  font-weight: 850;
}
.add-intervention:hover {
  background: #123550;
}
.intervention-error {
  margin: 10px 0 0;
  color: #8f4137;
  font-size: 8px;
  font-weight: 750;
}
.selected-interventions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.selected-interventions li {
  min-height: 30px;
  padding: 0 5px 0 11px;
  border: 1px solid #c9d9e5;
  border-radius: 999px;
  background: white;
  color: #3f607a;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 750;
}
.selected-interventions button {
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  background: #e6eef4;
  color: #4f6d84;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
}
.no-interventions {
  margin: 14px 0 0;
  color: #7c8f9f;
  font-size: 8px;
}
.intervention-guidance {
  margin: 13px 0 0;
  padding-top: 12px;
  border-top: 1px solid #d9e4ec;
  color: #758a9c;
  font-size: 7px;
  line-height: 1.55;
}
.modality-options-summary {
  margin: 7px 0 0;
  color: #7b8f9f;
  font-size: 7px;
  line-height: 1.55;
}
.modality-options-summary strong {
  color: #617b91;
}
.hep-builder-section {
  margin-top: 44px;
  scroll-margin-top: 24px;
}
.hep-builder-heading {
  margin-bottom: 10px;
}
.hep-builder-intro {
  max-width: 830px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}
.hep-builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: start;
}
.exercise-library-panel,
.hep-composer-panel {
  min-width: 0;
  padding: 23px;
}
.exercise-library-panel > header,
.hep-composer-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce5ec;
}
.exercise-library-panel h3,
.hep-composer-panel h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}
.exercise-library-panel > header > strong,
.hep-composer-panel > header > strong {
  color: #68829a;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}
.catalog-status {
  margin: 13px 0;
  color: #6d8295;
  font-size: 8px;
  font-weight: 750;
}
.exercise-library-tools {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9px;
}
.exercise-library-tools label,
.hep-prescription-grid label {
  display: grid;
  gap: 6px;
}
.exercise-library-tools label > span,
.hep-prescription-grid label > span {
  color: #688097;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.exercise-library-tools input,
.exercise-library-tools select,
.hep-prescription-grid input,
.hep-prescription-grid textarea {
  width: 100%;
  border: 1px solid #cedbe5;
  border-radius: 9px;
  background: #fbfcfd;
  color: #3e5a72;
  font-size: 9px;
  outline: 0;
}
.exercise-library-tools input,
.exercise-library-tools select,
.hep-prescription-grid input {
  min-height: 39px;
  padding: 0 11px;
}
.exercise-library-tools input:focus,
.exercise-library-tools select:focus,
.hep-prescription-grid input:focus,
.hep-prescription-grid textarea:focus {
  border-color: #6e96b8;
  box-shadow: 0 0 0 3px rgba(93, 134, 173, 0.12);
}
.catalog-import-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
}
.catalog-import-button {
  position: relative;
  overflow: hidden;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #cbd9e4;
  border-radius: 999px;
  background: white;
  color: #4e708a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 850;
}
.catalog-import-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.catalog-import-row small {
  color: #8799a8;
  font-size: 7px;
}
.exercise-catalog-list {
  max-height: 610px;
  overflow: auto;
  padding-right: 4px;
  display: grid;
  gap: 8px;
  overscroll-behavior: contain;
}
.catalog-exercise-card {
  min-width: 0;
  padding: 10px;
  border: 1px solid #d8e3eb;
  border-radius: 11px;
  background: #f9fbfc;
  cursor: grab;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.catalog-exercise-card:active {
  cursor: grabbing;
}
.catalog-video-icon {
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: #dfeaf2;
  color: #527793;
  display: grid;
  place-items: center;
  font-size: 9px;
}
.catalog-exercise-card > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.catalog-exercise-card small {
  overflow: hidden;
  color: #7690a7;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.catalog-exercise-card strong {
  overflow: hidden;
  color: #294760;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalog-exercise-card > div > span {
  color: #93a3b0;
  font-size: 6px;
}
.catalog-exercise-card button {
  min-height: 29px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-size: 7px;
  font-weight: 850;
}
.catalog-limit-note {
  margin: 5px 0 0;
  padding: 12px;
  border-radius: 9px;
  background: #edf3f7;
  color: #718698;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}
.hep-drop-zone {
  min-height: 88px;
  margin-top: 16px;
  border: 1px dashed #9fb5c6;
  border-radius: 12px;
  background: #f4f8fb;
  color: #668197;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  transition: 0.18s ease;
}
.hep-drop-zone.drag-active {
  border-color: #4f7899;
  background: #e3edf4;
  box-shadow: inset 0 0 0 2px rgba(79, 120, 153, 0.12);
}
.hep-drop-zone > span {
  font-size: 20px;
  font-weight: 300;
}
.hep-drop-zone strong {
  font-size: 9px;
}
.hep-drop-zone small {
  color: #91a1ae;
  font-size: 7px;
}
.empty-hep {
  min-height: 260px;
  padding: 36px;
  color: #6d8294;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}
.empty-hep strong {
  color: #395a73;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.empty-hep p {
  max-width: 310px;
  margin: 0;
  font-size: 8px;
  line-height: 1.55;
}
.empty-hep button {
  margin-top: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #cbd9e4;
  border-radius: 999px;
  background: white;
  color: #4f7089;
  cursor: pointer;
  font-size: 8px;
  font-weight: 850;
}
.hep-program-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.hep-program-card {
  padding: 14px;
  border: 1px solid #d7e2ea;
  border-radius: 12px;
  background: #fbfcfd;
}
.hep-program-card-heading {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.hep-program-card-heading > span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 850;
}
.hep-program-card-heading > div:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.hep-program-card-heading small {
  overflow: hidden;
  color: #7b91a4;
  font-size: 6px;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.hep-program-card-heading strong {
  color: #294760;
  font-size: 10px;
}
.hep-order-actions {
  display: flex;
  gap: 4px;
}
.hep-order-actions button {
  width: 25px;
  height: 25px;
  border: 1px solid #d2dee7;
  border-radius: 7px;
  background: white;
  color: #607c92;
  cursor: pointer;
  font-size: 9px;
}
.hep-order-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}
.hep-video-preview,
.hep-video-pending {
  display: block;
  margin: 11px 0;
  padding: 9px 11px;
  border-radius: 8px;
  background: #eaf2f7;
  color: #4b708c;
  font-size: 7px;
  font-weight: 800;
}
.hep-video-pending {
  color: #7b8f9f;
  font-weight: 650;
}
.hep-prescription-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hep-prescription-grid label.wide {
  grid-column: 1 / -1;
}
.hep-prescription-grid textarea {
  min-height: 72px;
  padding: 10px;
  resize: vertical;
  line-height: 1.5;
}
.hep-builder-message {
  margin: 13px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: #eaf2f7;
  color: #496b84;
  font-size: 8px;
  line-height: 1.5;
}
.hep-builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hep-builder-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.review-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.hep-builder-safety {
  margin: 13px 0 0;
  padding-top: 12px;
  border-top: 1px solid #dce5ec;
  color: #7b8e9d;
  font-size: 7px;
  line-height: 1.55;
}
.compact-gates {
  margin-top: 36px;
}
.compact-gates .gate-card {
  min-height: 175px;
}

@media (max-width: 1100px) {
  .portal-app {
    grid-template-columns: 215px minmax(0, 1fr);
  }
  .portal-workspace {
    padding-inline: 28px;
  }
  .patient-summary-grid,
  .practitioner-grid {
    grid-template-columns: 1fr;
  }
  .hep-builder-grid {
    grid-template-columns: 1fr;
  }
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dictation-control-bar {
    grid-template-columns: 1fr auto;
  }
  .dictation-main-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 35px;
  }
  .hero-copy {
    text-align: left;
  }
  .hero .eyebrow {
    justify-content: flex-start;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-art {
    min-height: 360px;
    place-items: center start;
  }
  .welcome-card {
    width: 290px;
  }
  .digital-heading {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .digital-grid {
    grid-template-columns: 1fr;
  }
  .digital-grid article {
    min-height: 255px;
  }
  .portal-page {
    padding: 12px;
  }
  .portal-app {
    grid-template-columns: 1fr;
  }
  .portal-sidebar {
    gap: 18px;
    padding: 18px;
  }
  .portal-sidebar nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .portal-sidebar nav button {
    justify-content: center;
  }
  .portal-help-card {
    display: none;
  }
  .workspace-heading {
    margin-bottom: 28px;
  }
  .workflow-stepper li {
    padding: 11px;
  }
  .workflow-stepper li > div {
    display: none;
  }
  .workflow-stepper li {
    justify-content: center;
  }
  .dictation-control-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .speech-mode-switch {
    width: fit-content;
  }
  .dictation-main-button {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    background-position: 62% center;
  }
  .hero-grid {
    padding-top: 10px;
  }
  .availability {
    margin-inline: 0;
  }
  .hero-art {
    min-height: 330px;
  }
  .welcome-card {
    width: 100%;
  }
  .floating-schedule {
    right: 14px;
    bottom: 14px;
  }
  .portal-page {
    padding: 0;
  }
  .portal-topbar {
    border-radius: 0;
  }
  .portal-topbar .brand small,
  .portal-environment {
    display: none;
  }
  .portal-demo-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-block: 12px;
  }
  .portal-demo-banner span {
    gap: 7px;
  }
  .portal-demo-banner span::before {
    display: none;
  }
  .portal-app {
    border-radius: 0;
    border-inline: 0;
  }
  .portal-sidebar nav button {
    padding-inline: 6px;
    font-size: 9px;
  }
  .portal-sidebar nav button span,
  .portal-sidebar nav button i {
    display: none;
  }
  .portal-workspace {
    padding: 34px 16px 42px;
  }
  .workspace-heading {
    display: grid;
    gap: 15px;
  }
  .workspace-date {
    width: fit-content;
  }
  .patient-summary-grid,
  .resource-grid,
  .gate-grid {
    grid-template-columns: 1fr;
  }
  .exercise-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }
  .exercise-row > strong {
    grid-column: 2;
  }
  .program-intro-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .program-score {
    justify-items: start;
  }
  .note-section-grid {
    grid-template-columns: 1fr;
  }
  .note-section-grid article,
  .note-section-grid article:nth-child(even),
  .note-section-grid article:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid #dce5ec;
  }
  .note-section-grid article:last-child {
    border-bottom: 0;
  }
  .text-reset {
    width: 100%;
    margin: 5px 0 0;
    text-align: left;
  }
  .live-transcript-card > header,
  .structured-note-card > header {
    display: grid;
  }
  .transcript-tools {
    justify-content: flex-start;
  }
  .note-editor-grid {
    grid-template-columns: 1fr;
  }
  .note-editor-grid label.wide {
    grid-column: auto;
  }
  .intervention-builder {
    grid-column: auto;
    padding: 15px;
  }
  .intervention-builder > header {
    display: grid;
    gap: 4px;
  }
  .intervention-controls {
    display: grid;
    align-items: stretch;
  }
  .note-editor-grid .intervention-control {
    width: 100%;
  }
  .add-intervention {
    width: 100%;
  }
  .exercise-library-tools,
  .hep-prescription-grid {
    grid-template-columns: 1fr;
  }
  .hep-prescription-grid label.wide {
    grid-column: auto;
  }
  .catalog-import-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-exercise-card {
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .catalog-exercise-card button {
    grid-column: 2;
    width: fit-content;
  }
  .hep-program-card-heading {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .hep-order-actions {
    grid-column: 2;
  }
  .portal-final-notice {
    margin: 16px;
  }
}

@media print {
  .portal-page {
    padding: 0;
    background: white;
  }
  .portal-topbar-actions,
  .portal-demo-banner,
  .portal-sidebar,
  .portal-final-notice {
    display: none;
  }
  .portal-app {
    display: block;
    min-height: 0;
    border: 0;
    box-shadow: none;
  }
  .portal-workspace {
    padding: 20px 0;
  }
  .portal-card,
  .exercise-row {
    break-inside: avoid;
    box-shadow: none;
  }
}

/*
 * Accessible type scale
 *
 * PrayPT primarily serves adults 50+, including many people in their 60s and
 * 70s. The interface therefore keeps body copy at 16–17px, form controls at
 * 17px, and secondary labels at 13–15px. Avoid reducing these values merely to
 * fit more information on screen; simplify the layout instead.
 */
:root {
  --readable-label: 0.875rem;
  --readable-secondary: 0.9375rem;
  --readable-control: 1rem;
  --readable-body: 1.0625rem;
}

.desktop-nav a,
.header-cta,
.button,
.text-link,
.floating-schedule {
  font-size: var(--readable-secondary);
}

.brand small,
.eyebrow,
.section-kicker,
.availability,
.welcome-overline,
.art-label,
.inline-service-link,
.products-heading > div:last-child > span,
.premium-badge,
.featured-product-top small,
.featured-product-kicker,
.featured-product-copy a,
.product-card-top small,
.product-card a,
.security-status,
.digital-grid a,
.coming-tag,
.status-card > span,
.footer-grid > p,
.footer-grid > address,
.footer-legal {
  font-size: var(--readable-label) !important;
}

.principles p,
.pillar > p:last-child,
.care-sticky > p:not(.section-kicker),
.service-list p,
.featured-product-copy > p:not(.featured-product-kicker),
.featured-product-copy li,
.product-card p,
.product-disclaimer,
.process-grid p,
.faith-welcome,
.access-copy .fine-print,
.access-card p,
.faq-list details p,
.closing-card > div:nth-child(2) > p:not(.section-kicker),
.status-card p,
.digital-grid p,
.phi-warning {
  font-size: var(--readable-control) !important;
}

.portal-page {
  --readable-label: 0.9375rem;
  --readable-secondary: 1rem;
  --readable-control: 1.0625rem;
  font-size: var(--readable-body);
}

.portal-environment,
.portal-demo-banner,
.portal-profile small,
.portal-sidebar nav button span,
.portal-sidebar nav button i,
.workspace-date,
.card-label,
.progress-row,
.workspace-section-heading span,
.exercise-copy > span,
.patient-video-pending,
.program-score span,
.resource-index,
.resource-card button,
.privacy-chip,
.review-chip,
.workflow-stepper li > span,
.workflow-stepper small,
.capture-status,
.transcript-tools > span,
.interim-transcript span,
.template-select > span,
.note-editor-grid label > span,
.intervention-builder > header > small,
.selected-interventions li,
.intervention-guidance,
.modality-options-summary,
.catalog-status,
.exercise-library-tools label > span,
.hep-prescription-grid label > span,
.catalog-import-row small,
.catalog-exercise-card small,
.catalog-exercise-card > div > span,
.hep-drop-zone small,
.hep-program-card-heading small,
.hep-video-preview,
.hep-video-pending,
.hep-builder-message,
.hep-builder-safety,
.intake-progress-heading span,
.intake-progress li button small,
.intake-field > span em,
.intake-field > small,
.intake-save-note {
  font-size: var(--readable-label) !important;
}

.portal-back,
.portal-profile strong,
.portal-sidebar nav button,
.portal-help-card p,
.portal-help-card a,
.workspace-heading p:not(.section-kicker),
.priority-card > p,
.next-visit-card p,
.next-visit-card a,
.workspace-section-heading button,
.exercise-copy h3,
.exercise-copy p,
.exercise-row > strong,
.program-intro-card p,
.portal-safety-callout,
.resource-card p,
.prayer-preference-card p,
.workflow-stepper strong,
.empty-transcript p,
.microcopy,
.automation-card li,
.note-section-grid strong,
.note-section-grid p,
.text-reset,
.gate-card p,
.gate-card small,
.portal-notice,
.dictation-mode-copy small,
.deidentified-confirmation,
.dictation-error,
.live-transcript-card > textarea::placeholder,
.interim-transcript,
.note-empty-guidance,
.intervention-error,
.no-interventions,
.hep-builder-intro,
.catalog-limit-note,
.hep-drop-zone strong,
.empty-hep p,
.hep-program-card-heading strong,
.intake-progress li button strong,
.intake-privacy-card p,
.intake-error {
  font-size: var(--readable-secondary) !important;
}

.portal-action-primary,
.portal-action-secondary,
.speech-mode-switch button,
.dictation-main-button,
.transcript-tools button,
.template-select select,
.intervention-control select,
.intervention-control input,
.add-intervention,
.exercise-library-tools input,
.exercise-library-tools select,
.hep-prescription-grid input,
.hep-prescription-grid textarea,
.catalog-import-button,
.catalog-exercise-card button,
.empty-hep button,
.hep-order-actions button,
.intake-navigation button {
  min-height: 48px;
  font-size: var(--readable-control) !important;
}

.live-transcript-card > textarea,
.note-editor-grid textarea,
.intake-field input,
.intake-field textarea,
.ocr-result textarea {
  font-size: var(--readable-body) !important;
}

.exercise-check,
.catalog-exercise-card strong,
.hep-program-card-heading strong {
  font-size: var(--readable-control) !important;
}

@media (max-width: 620px) {
  .portal-sidebar nav button {
    font-size: var(--readable-secondary) !important;
  }

  .portal-workspace {
    padding-inline: 20px;
  }
}

/* Local intake workspace — all processing remains inside the browser session. */
.intake-page {
  background:
    radial-gradient(circle at 6% 4%, rgba(93, 134, 173, 0.2), transparent 28%), #eaf1f7;
}
.intake-banner {
  background: #dfeaf4;
  color: #38546e;
}
.intake-workspace {
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}
.intake-progress {
  position: sticky;
  top: 18px;
  padding: 23px;
}
.intake-progress-heading {
  display: grid;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dce5ec;
}
.intake-progress-heading span {
  color: #658099;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.intake-progress-heading strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}
.intake-progress ol {
  display: grid;
  gap: 5px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}
.intake-progress li button {
  width: 100%;
  min-height: 58px;
  padding: 8px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #718599;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}
.intake-progress li button > span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #edf2f6;
  color: #758ba0;
  font-size: 9px;
  font-weight: 850;
}
.intake-progress li button > div {
  display: grid;
  gap: 3px;
}
.intake-progress li button strong {
  font-size: 10px;
}
.intake-progress li button small {
  color: #9aabb9;
  font-size: 7px;
}
.intake-progress li.current button {
  background: #edf4f8;
  color: var(--teal);
}
.intake-progress li.current button > span {
  background: var(--teal);
  color: white;
}
.intake-progress li.complete button > span {
  background: #5d86ad;
  color: white;
}
.intake-privacy-card {
  display: grid;
  gap: 6px;
  padding: 17px;
  border-radius: 12px;
  background: var(--teal);
  color: white;
}
.intake-privacy-card > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #c8dbee;
}
.intake-privacy-card strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}
.intake-privacy-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  line-height: 1.55;
}
.intake-form-panel {
  min-height: 720px;
  padding: clamp(25px, 4vw, 48px);
}
.intake-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
  padding-bottom: 23px;
  border-bottom: 1px solid #dce5ec;
}
.intake-form-heading .section-kicker {
  margin-bottom: 8px;
}
.intake-form-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.clear-session {
  padding: 8px 10px;
  border: 1px solid #d7e1e9;
  border-radius: 8px;
  background: white;
  color: #71879a;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}
.intake-error {
  margin-bottom: 20px;
  padding: 13px 16px;
  border-left: 3px solid #a54b3e;
  background: #fbefed;
  color: #76392f;
  font-size: 9px;
  line-height: 1.5;
}
.intake-step {
  display: grid;
  gap: 21px;
}
.field-grid {
  display: grid;
  gap: 17px;
}
.field-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.intake-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.intake-field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #496780;
  font-size: 9px;
  font-weight: 800;
}
.intake-field > span em {
  color: #8e6731;
  font-size: 6px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.intake-field > small {
  margin-top: -4px;
  color: #899aa9;
  font-size: 7px;
  line-height: 1.45;
}
.intake-field input,
.intake-field textarea {
  width: 100%;
  border: 1px solid #cfdae4;
  border-radius: 10px;
  background: #fbfcfd;
  color: #294760;
  font-size: 11px;
  outline: 0;
}
.intake-field input {
  min-height: 46px;
  padding: 0 13px;
}
.intake-field textarea {
  min-height: 125px;
  padding: 13px;
  resize: vertical;
  line-height: 1.6;
}
.intake-field input:focus,
.intake-field textarea:focus,
.ocr-result textarea:focus {
  border-color: #6e96b8;
  box-shadow: 0 0 0 3px rgba(93, 134, 173, 0.12);
}
.photo-ocr-panel {
  margin-top: 8px;
  padding: 23px;
  border: 1px solid #d5e1ea;
  border-radius: 14px;
  background: #f2f7fa;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px 25px;
  align-items: center;
}
.photo-ocr-copy h2 {
  margin: 7px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}
.photo-ocr-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}
.photo-drop-zone {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  border: 1px dashed #9bb1c3;
  border-radius: 12px;
  background: white;
  color: #58758e;
  cursor: pointer;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  text-align: center;
}
.photo-drop-zone > span {
  font-size: 25px;
  font-weight: 300;
}
.photo-drop-zone strong {
  font-size: 9px;
}
.photo-drop-zone small {
  color: #8b9eae;
  font-size: 7px;
}
.photo-drop-zone input {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.photo-drop-zone img {
  width: 100%;
  height: 155px;
  object-fit: contain;
}
.ocr-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #d7e2ea;
}
.ocr-actions span {
  max-width: 55%;
  overflow: hidden;
  color: #6f8497;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ocr-actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-size: 8px;
  font-weight: 850;
}
.ocr-actions button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.ocr-progress {
  position: relative;
  grid-column: 1 / -1;
  height: 26px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe9f0;
}
.ocr-progress i {
  display: block;
  height: 100%;
  background: #6e95b8;
  transition: width 0.2s ease;
}
.ocr-progress span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #163b58;
  font-size: 7px;
  font-weight: 850;
}
.ocr-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 15px;
  border-radius: 11px;
  background: white;
}
.ocr-result > strong {
  color: #41617a;
  font-size: 8px;
  line-height: 1.5;
}
.ocr-result label {
  display: grid;
  gap: 7px;
}
.ocr-result label > span {
  color: #70869a;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}
.ocr-result textarea {
  width: 100%;
  min-height: 100px;
  padding: 11px;
  resize: vertical;
  border: 1px solid #d1dde6;
  border-radius: 8px;
  color: #3d586f;
  font-size: 9px;
  line-height: 1.55;
}
.prayer-options {
  margin: 0;
  padding: 23px;
  border: 1px solid #d5e0e9;
  border-radius: 13px;
}
.prayer-options legend {
  padding: 0 7px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
}
.prayer-options > p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 9px;
}
.prayer-options label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid #e4ebf0;
  color: #4a657b;
  font-size: 9px;
  line-height: 1.45;
}
.prayer-options input,
.review-acknowledgement input {
  accent-color: var(--teal);
}
.review-summary {
  display: grid;
  gap: 15px;
}
.review-section {
  padding: 20px;
  border: 1px solid #d7e1e9;
  border-radius: 12px;
}
.review-section header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}
.review-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}
.review-section header button {
  border: 0;
  background: transparent;
  color: #557994;
  cursor: pointer;
  font-size: 8px;
  font-weight: 850;
}
.review-section dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 0;
}
.review-section dl > div {
  min-width: 0;
}
.review-section dt {
  margin-bottom: 4px;
  color: #7a8e9f;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}
.review-section dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #3b566d;
  font-size: 9px;
  line-height: 1.55;
  white-space: pre-wrap;
}
.review-acknowledgement {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px;
  border-radius: 11px;
  background: #eef4f8;
  color: #405d74;
  font-size: 9px;
  line-height: 1.55;
}
.intake-save-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.intake-save-note {
  margin: -9px 0 0;
  color: #7e8f9d;
  font-size: 8px;
  line-height: 1.55;
}
.intake-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #dce5ec;
}
.intake-navigation button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d4dfe7;
  border-radius: 999px;
  background: white;
  color: #5a7389;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}
.intake-navigation button.next {
  margin-left: auto;
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}
.intake-navigation button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

/* Public local-search pages. */
.subpage-header {
  background: rgba(255, 255, 255, 0.94);
}
.subpage-nav {
  gap: 22px;
}
.subpage-nav a {
  font-size: 11px;
}
.local-page {
  background: white;
}
.local-hero {
  position: relative;
  overflow: hidden;
  background: #071b34 url("/sedona-hero.png") center 43% / cover no-repeat;
  color: white;
}
.local-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 22, 43, 0.96) 0%,
    rgba(5, 22, 43, 0.79) 52%,
    rgba(5, 22, 43, 0.42) 100%
  );
}
.local-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  align-items: center;
  gap: 80px;
  padding-block: 75px;
}
.local-hero .eyebrow,
.about-hero .eyebrow,
.service-detail-hero .eyebrow {
  color: #cee0ef;
}
.local-hero h1,
.about-hero h1,
.service-detail-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(51px, 6vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.048em;
}
.local-hero-grid > div > p:last-of-type,
.about-hero-grid > div:last-child > p,
.service-detail-hero .shell > p:last-of-type {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.62;
}
.local-fact-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 17px;
  background: rgba(5, 22, 43, 0.67);
  backdrop-filter: blur(14px);
}
.local-fact-card > span {
  color: #b9cee1;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.local-fact-card h2 {
  margin: 17px 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.25;
}
.local-fact-card address {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-style: normal;
  line-height: 1.6;
}
.local-fact-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}
.local-fact-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.local-fact-card dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
}
.local-fact-card dd {
  margin: 0;
  color: white;
  font-size: 9px;
  text-align: right;
}
.local-copy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.local-copy-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.rich-copy {
  display: grid;
  gap: 20px;
}
.rich-copy p {
  margin: 0;
  color: #536b80;
  font-size: 15px;
  line-height: 1.85;
}
.rich-copy p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
}
.local-feature-section,
.about-values {
  background: #edf3f8;
}
.local-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}
.local-feature-grid article {
  min-height: 285px;
  padding: 28px;
  border: 1px solid #d5e1eb;
  border-radius: 14px;
  background: white;
  display: flex;
  flex-direction: column;
}
.local-feature-grid article > span {
  color: #718fab;
  font-family: var(--serif);
  font-size: 12px;
}
.local-feature-grid h3 {
  margin: auto 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}
.local-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.68;
}
.local-feature-grid a {
  margin-top: 15px;
  color: #456d8d;
  font-size: 8px;
  font-weight: 850;
}
.local-visit-section {
  background: var(--teal);
  color: white;
}
.local-visit-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 75px;
  align-items: center;
}
.local-visit-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 400;
}
.local-visit-grid p:not(.section-kicker) {
  max-width: 690px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}
.local-visit-grid address {
  margin-top: 18px;
  color: #c5d8e8;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.local-visit-actions {
  min-width: 270px;
  display: grid;
  gap: 12px;
}
.local-faq-section {
  background: white;
}
.local-cta {
  padding: 72px 0;
  background: #081b34;
  color: white;
}
.local-cta > .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
.local-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 400;
}
.local-cta p:not(.section-kicker) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}
.local-cta-links {
  display: grid;
  gap: 15px;
  justify-items: center;
}
.local-cta-links > a:last-child {
  color: #c6d9e9;
  font-size: 9px;
  font-weight: 800;
}
.subpage-footer address {
  text-align: center;
}
.subpage-footer .footer-grid > p {
  text-align: right;
}
.about-hero {
  padding: 100px 0;
  background: #071b34;
  color: white;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
  align-items: center;
}
.about-portrait {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 220px 220px 18px 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(4, 18, 35, 0.82));
  content: "";
  pointer-events: none;
}
.about-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: white;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0.01em;
}
.about-role {
  color: #bed2e6 !important;
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-hero .button {
  margin-top: 30px;
}
.about-care-cost {
  max-width: 560px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(209, 177, 106, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f8fc !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}
.about-care-cost strong {
  color: #f1d698;
}
.about-values-grid {
  margin-top: 0;
}
.local-link-panel {
  padding: 85px 0;
  background: #f5f8fb;
}
.local-link-panel > .shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.local-link-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
}
.local-link-panel > .shell > div:last-child {
  display: grid;
  border-top: 1px solid #d4e0e9;
}
.local-link-panel > .shell > div:last-child a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #d4e0e9;
  color: #365b78;
  font-family: var(--serif);
  font-size: 19px;
}
.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: #071b34 url("/sedona-hero.png") center 45% / cover no-repeat;
  color: white;
}
.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 22, 43, 0.97),
    rgba(5, 22, 43, 0.8) 58%,
    rgba(5, 22, 43, 0.45)
  );
}
.service-detail-hero > .shell {
  position: relative;
  z-index: 1;
}
.service-detail-hero h1 {
  max-width: 900px;
}
.service-detail-hero .button {
  margin-top: 32px;
}
.epigenetic-page .service-detail-hero::before {
  background: linear-gradient(
    90deg,
    rgba(5, 22, 43, 0.97),
    rgba(13, 46, 75, 0.82) 60%,
    rgba(5, 22, 43, 0.45)
  );
}

@media (max-width: 1080px) {
  .subpage-nav {
    gap: 13px;
  }
  .subpage-nav a {
    font-size: 9px;
  }
  .local-hero-grid {
    gap: 45px;
  }
  .local-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .intake-workspace {
    grid-template-columns: 1fr;
  }
  .intake-progress {
    position: static;
  }
  .intake-progress ol {
    grid-template-columns: repeat(4, 1fr);
  }
  .intake-progress li button {
    justify-content: center;
  }
  .intake-progress li button > div {
    display: none;
  }
  .local-hero-grid,
  .local-copy-grid,
  .about-hero-grid,
  .local-link-panel > .shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .local-hero-grid {
    min-height: auto;
  }
  .local-fact-card {
    max-width: 470px;
  }
  .local-visit-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .local-visit-actions {
    max-width: 360px;
  }
  .local-cta > .shell {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-portrait {
    min-height: 500px;
    max-width: 520px;
  }
  .subpage-footer address {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .intake-workspace {
    margin-top: 0;
  }
  .intake-progress,
  .intake-form-panel {
    border-radius: 0;
    border-inline: 0;
  }
  .intake-progress {
    padding: 15px;
  }
  .intake-progress-heading,
  .intake-privacy-card {
    display: none;
  }
  .intake-progress ol {
    margin: 0;
  }
  .intake-progress li button {
    min-height: 42px;
    padding: 4px;
  }
  .intake-progress li button > span {
    width: 28px;
    height: 28px;
  }
  .intake-form-panel {
    min-height: 0;
    padding: 27px 16px;
  }
  .intake-form-heading {
    display: grid;
  }
  .clear-session {
    width: fit-content;
  }
  .field-grid.two-column,
  .review-section dl {
    grid-template-columns: 1fr;
  }
  .photo-ocr-panel {
    grid-template-columns: 1fr;
  }
  .photo-drop-zone,
  .photo-drop-zone img {
    height: 175px;
  }
  .ocr-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .ocr-actions span {
    max-width: 100%;
  }
  .local-hero h1,
  .about-hero h1,
  .service-detail-hero h1 {
    font-size: 49px;
  }
  .local-hero-grid {
    padding-block: 60px;
  }
  .local-feature-grid {
    grid-template-columns: 1fr;
  }
  .local-feature-grid article {
    min-height: 240px;
  }
  .about-hero,
  .service-detail-hero {
    padding: 75px 0;
  }
  .about-portrait {
    min-height: 470px;
  }
  .about-portrait figcaption {
    right: 22px;
    bottom: 20px;
    left: 22px;
    font-size: 17px;
  }
  .subpage-footer .footer-grid > p {
    text-align: left;
  }
}

@media print {
  .intake-page .portal-topbar,
  .intake-progress,
  .intake-form-heading .clear-session,
  .photo-ocr-panel,
  .intake-navigation,
  .intake-save-actions,
  .intake-save-note {
    display: none;
  }
  .intake-workspace {
    display: block;
    margin: 0;
  }
  .intake-form-panel {
    min-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .review-section {
    break-inside: avoid;
  }
}

/* Final readability overrides for sections declared after the shared scale. */
.intake-progress-heading span,
.intake-progress li button > span,
.intake-progress li button small,
.intake-field > span em,
.intake-field > small,
.photo-drop-zone small,
.ocr-progress span,
.ocr-result label > span,
.review-section dt,
.intake-save-note,
.local-fact-card > span,
.local-fact-card dt {
  font-size: var(--readable-label) !important;
}

.clear-session,
.intake-error,
.intake-progress li button strong,
.intake-privacy-card p,
.photo-ocr-copy p,
.photo-drop-zone strong,
.ocr-actions span,
.ocr-actions button,
.ocr-result > strong,
.prayer-options > p,
.prayer-options label,
.review-section header button,
.review-section dd,
.review-acknowledgement,
.intake-navigation button,
.subpage-nav a,
.local-fact-card address,
.local-fact-card dd,
.local-feature-grid p,
.local-feature-grid a,
.local-visit-copy > p:not(.section-kicker),
.local-visit-copy address,
.local-cta p,
.local-cta-links > a:last-child,
.about-mark .welcome-overline {
  font-size: var(--readable-secondary) !important;
}

.intake-field > span,
.intake-field input,
.intake-field textarea,
.ocr-result textarea,
.local-copy-grid p,
.local-feature-grid p,
.local-visit-copy > p:not(.section-kicker),
.local-cta p {
  font-size: var(--readable-body) !important;
}

.intake-field input,
.intake-field textarea,
.ocr-result textarea,
.ocr-actions button,
.intake-navigation button {
  min-height: 48px;
}

/* Digital Intake password guidance */
.password-status { display:block; margin-top:.4rem; font-size:.88rem; font-weight:600; color:#5b6472; }
.password-status.valid { color:#176b3a; }
.password-status.invalid { color:#a12622; }
