:root {
  --ink: #183c3a;
  --ink-2: #2c5552;
  --text: #274442;
  --muted: #6d817f;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --sage: #dce9df;
  --sage-2: #eef5f0;
  --sand: #eee4d5;
  --line: #dfe7e2;
  --accent: #b96347;
  --accent-soft: #f5e8e1;
  --shadow: 0 18px 50px rgba(38, 72, 67, 0.09);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}
button, input, select { font: inherit; }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid rgba(24, 60, 58, .08);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: white; display: grid; place-items: center; font-weight: 700; letter-spacing: .03em; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Fraunces", serif; font-size: 19px; line-height: 1.05; }
.brand small { color: var(--muted); font-size: 12px; margin-top: 2px; }
.primary-nav { display: flex; gap: 26px; align-items: center; }
.primary-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.primary-nav a:hover { color: var(--accent); }
.menu-button { display: none; border: 1px solid var(--line); background: white; border-radius: 12px; padding: 8px 12px; }

.hero { padding: 86px 0 72px; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: var(--sage); opacity: .58; right: -140px; top: -130px; z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
h1, h2, h3 { margin-top: 0; color: var(--ink); }
h1, h2 { font-family: "Fraunces", serif; letter-spacing: -.025em; }
h1 { font-size: clamp(46px, 6vw, 76px); line-height: .98; max-width: 760px; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; margin-bottom: 18px; }
h3 { font-size: 20px; line-height: 1.2; }
.hero-copy { font-size: 20px; max-width: 720px; color: var(--ink-2); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; border-radius: 14px; padding: 0 18px; border: 1px solid transparent; text-decoration: none; font-weight: 700; cursor: pointer; }
.button.primary { background: var(--ink); color: white; }
.button.primary:hover { background: var(--ink-2); }
.button.secondary { background: white; color: var(--ink); border-color: var(--line); }
.microcopy { color: var(--muted); font-size: 13px; max-width: 700px; }
.hero-panel { background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.95); box-shadow: var(--shadow); border-radius: 28px; padding: 22px; }
.panel-label { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; color: var(--muted); }
.quick-link { display: grid; grid-template-columns: 40px 1fr; gap: 2px 12px; text-decoration: none; border-bottom: 1px solid var(--line); padding: 19px 4px; }
.quick-link:last-child { border-bottom: 0; }
.quick-link span { grid-row: 1 / span 2; width: 34px; height: 34px; border-radius: 50%; background: var(--sage-2); color: var(--ink); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.quick-link strong { color: var(--ink); }
.quick-link em { font-style: normal; color: var(--muted); font-size: 13px; }

.section { padding: 82px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 34px; }
.section-heading > p { max-width: 470px; color: var(--muted); }
.section-heading.stacked { display: block; max-width: 760px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-decoration: none; min-height: 215px; transition: transform .16s ease, box-shadow .16s ease; }
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.resource-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--sage-2); display: grid; place-items: center; color: var(--ink); font-weight: 700; margin-bottom: 24px; }
.resource-card p { color: var(--muted); margin-bottom: 0; }
.crisis-card { background: var(--accent-soft); border-color: #edcdbc; }
.crisis-card .resource-icon { background: white; color: var(--accent); }

.search-section { background: #f3f6f1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-layout { display: grid; grid-template-columns: 350px 1fr; gap: 24px; align-items: start; }
.filters-card { position: sticky; top: 94px; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.filter-topline { display: flex; justify-content: space-between; align-items: center; }
.filter-topline h3 { margin-bottom: 0; }
.text-button { border: 0; background: transparent; color: var(--accent); cursor: pointer; font-weight: 700; font-size: 13px; }
.field-label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.input { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 12px; padding: 9px 12px; background: #fff; color: var(--text); }
.input:focus { outline: 2px solid rgba(185, 99, 71, .22); border-color: var(--accent); }
.filter-group { margin-top: 20px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chip-options { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-chip { border: 1px solid var(--line); background: white; color: var(--text); border-radius: 999px; padding: 7px 10px; cursor: pointer; font-size: 13px; }
.filter-chip.active { border-color: var(--ink); background: var(--ink); color: white; }
.privacy-note { margin-top: 22px; padding: 13px; background: var(--sage-2); border-radius: 12px; color: var(--muted); font-size: 12px; }
.results-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 14px; }
.results-toolbar span { color: var(--muted); font-size: 14px; margin-left: 4px; }
.sort-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.compact-select { min-height: 38px; border: 1px solid var(--line); border-radius: 10px; background: white; padding: 0 10px; color: var(--text); }
.results-list { display: grid; gap: 14px; }
.provider-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; display: grid; grid-template-columns: 74px 1fr auto; gap: 18px; align-items: start; }
.provider-avatar { width: 70px; height: 70px; border-radius: 18px; background: var(--sage); display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 24px; color: var(--ink); }
.provider-card h3 { margin-bottom: 4px; }
.provider-meta { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.match-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.match-tag { border-radius: 999px; background: var(--sage-2); color: var(--ink-2); padding: 5px 9px; font-size: 12px; }
.match-tag.matched { background: #e2f0e6; color: #29583d; }
.match-tag.unmatched { background: #f5f1ea; color: #7b6b59; }
.provider-side { min-width: 130px; text-align: right; }
.match-strength { font-size: 12px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.card-link { border: 0; background: var(--ink); color: white; border-radius: 10px; padding: 9px 11px; cursor: pointer; font-size: 13px; font-weight: 700; }
.verified { margin-top: 10px; color: var(--muted); font-size: 11px; }
.no-results { background: white; border: 1px dashed var(--line); border-radius: 18px; padding: 32px; text-align: center; color: var(--muted); }

.muted-section { background: #ece7dc; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.principles { display: grid; gap: 16px; margin-top: 28px; }
.principles > div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.principles > div > strong { width: 32px; height: 32px; border-radius: 50%; background: white; display: grid; place-items: center; color: var(--ink); }
.principles span { color: var(--muted); }
.principles b { color: var(--ink); }
.score-card { background: white; border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
.score-title { font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.score-row { display: flex; justify-content: space-between; align-items: center; margin: 15px 0 6px; font-size: 14px; }
.meter { height: 8px; border-radius: 999px; background: var(--sage-2); overflow: hidden; }
.meter i { height: 100%; display: block; background: var(--accent); border-radius: inherit; }

.provider-panel { background: var(--ink); color: white; border-radius: 30px; padding: 48px; display: grid; grid-template-columns: 1fr .75fr; gap: 60px; }
.provider-panel h2, .provider-panel h3 { color: white; }
.provider-panel p { color: #dbe6e3; }
.provider-panel .eyebrow { color: #e6bcae; }
.price-line { display: flex; align-items: baseline; gap: 10px; margin: 26px 0 12px; }
.price-line strong { font-family: "Fraunces", serif; font-size: 48px; }
.price-line span { color: #dbe6e3; }
.check-list { list-style: none; padding: 0; margin: 18px 0 28px; display: grid; gap: 8px; }
.check-list li::before { content: "✓"; color: #b9d7c1; margin-right: 8px; }
.provider-panel .button.primary { background: white; color: var(--ink); }
.provider-note { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 24px; align-self: center; }
.provider-note .panel-label { color: #b9cbc7; }

.about-section { padding-bottom: 110px; }
.about-grid { align-items: start; }
.prototype-disclosure { padding: 14px 16px; border-left: 3px solid var(--accent); background: var(--accent-soft); border-radius: 0 12px 12px 0; font-size: 13px; }
.about-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 26px; }

.site-footer { background: #12302e; color: #dbe6e3; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.footer-grid strong, .footer-grid span, .footer-grid small { display: block; }
.footer-grid > div > strong { color: white; margin-top: 3px; }
.footer-grid span, .footer-grid small { font-size: 12px; color: #9fb5b1; }
.footer-grid p { color: #9fb5b1; font-size: 13px; }

.profile-dialog { width: min(760px, calc(100% - 32px)); border: 0; border-radius: 24px; padding: 0; box-shadow: 0 30px 90px rgba(20, 44, 41, .28); color: var(--text); }
.profile-dialog::backdrop { background: rgba(17, 39, 36, .56); backdrop-filter: blur(3px); }
.profile-dialog > div { padding: 34px; }
.dialog-close { position: absolute; right: 14px; top: 12px; border: 0; background: var(--sage-2); color: var(--ink); border-radius: 50%; width: 34px; height: 34px; cursor: pointer; font-size: 20px; }
.dialog-hero { display: grid; grid-template-columns: 82px 1fr; gap: 18px; align-items: center; margin-bottom: 20px; }
.dialog-hero .provider-avatar { width: 82px; height: 82px; }
.profile-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.profile-detail-grid > div { background: var(--sage-2); border-radius: 13px; padding: 13px; }
.profile-detail-grid span, .signup-grid span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.profile-detail-grid strong { color: var(--ink); font-size: 14px; }
.dialog-note { color: var(--muted); font-size: 13px; padding-top: 14px; border-top: 1px solid var(--line); }
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.signup-grid > div { border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.signup-grid strong { color: var(--ink); font-size: 14px; }

@media (max-width: 950px) {
  .primary-nav { display: none; position: absolute; top: 73px; left: 20px; right: 20px; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .primary-nav.open { display: flex; }
  .menu-button { display: block; }
  .hero-grid, .split-grid, .provider-panel, .directory-layout { grid-template-columns: 1fr; }
  .filters-card { position: static; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .provider-panel { padding: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 26px, 1180px); }
  .hero { padding-top: 56px; }
  .resource-grid, .two-col, .profile-detail-grid, .signup-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section { padding: 62px 0; }
  .provider-card { grid-template-columns: 54px 1fr; }
  .provider-avatar { width: 52px; height: 52px; border-radius: 14px; font-size: 18px; }
  .provider-side { grid-column: 2; text-align: left; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .results-toolbar { align-items: flex-start; flex-direction: column; }
  .provider-panel { margin-inline: 13px; width: calc(100% - 26px); }
}

/* Visual polish pass */
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(220,233,223,.72), transparent 28rem),
    radial-gradient(circle at 95% 12%, rgba(245,232,225,.65), transparent 30rem),
    var(--paper);
}

.site-header { box-shadow: 0 8px 30px rgba(24,60,58,.035); }
.brand-mark { width: 46px; height: 46px; border-radius: 15px; background: linear-gradient(145deg, #183c3a, #2d615d); box-shadow: 0 8px 22px rgba(24,60,58,.18); }
.brand-mark svg { width: 27px; height: 27px; }

.hero { padding: 96px 0 84px; }
.hero::before {
  width: 690px; height: 690px; right: -170px; top: -240px;
  background: radial-gradient(circle at 35% 35%, #e7f0e8 0, #d7e8dc 52%, #cbded2 100%);
  opacity: .9;
}
.hero::after {
  content: "";
  position: absolute;
  right: 2vw;
  bottom: 22px;
  width: min(43vw, 560px);
  height: 140px;
  opacity: .18;
  background:
    linear-gradient(150deg, transparent 0 21%, var(--ink) 21.5% 22.8%, transparent 23.2% 100%),
    linear-gradient(28deg, transparent 0 38%, var(--ink) 38.5% 39.8%, transparent 40.2% 100%),
    linear-gradient(157deg, transparent 0 48%, var(--ink) 48.5% 49.8%, transparent 50.2% 100%);
  pointer-events: none;
}
.hero-grid { gap: 78px; }
.hero-copy { line-height: 1.7; }
.hero-panel {
  background: linear-gradient(160deg, rgba(255,255,255,.94), rgba(248,251,248,.82));
  border: 1px solid rgba(255,255,255,.98);
  box-shadow: 0 26px 70px rgba(38,72,67,.14);
  padding: 26px;
}
.quick-link { border-radius: 14px; transition: background .16s ease, transform .16s ease; padding-inline: 10px; }
.quick-link:hover { background: rgba(238,245,240,.82); transform: translateX(3px); }
.button { box-shadow: 0 8px 18px rgba(24,60,58,.06); }
.button.primary { box-shadow: 0 10px 25px rgba(24,60,58,.16); }

.resource-card { box-shadow: 0 8px 25px rgba(38,72,67,.035); position: relative; overflow: hidden; }
.resource-card::after { content: "→"; position: absolute; right: 22px; bottom: 20px; color: var(--accent); font-weight: 700; opacity: .7; }
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(38,72,67,.11); }

.search-section {
  background:
    linear-gradient(180deg, rgba(245,248,244,.95), rgba(238,244,239,.94)),
    var(--sage-2);
  position: relative;
}
.search-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(24,60,58,.08) .8px, transparent .8px);
  background-size: 22px 22px; opacity: .18;
}
.search-section > .shell { position: relative; }
.filters-card { border-radius: 24px; padding: 24px; box-shadow: 0 18px 45px rgba(38,72,67,.07); }
.location-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field-label small { font-weight: 500; color: var(--muted); }
.results-toolbar {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(223,231,226,.9);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}
.provider-card {
  border-radius: 22px;
  border-color: rgba(215,226,219,.96);
  box-shadow: 0 10px 34px rgba(38,72,67,.055);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.provider-card:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(38,72,67,.10); border-color: #c9d9cf; }
.provider-avatar { background: linear-gradient(145deg, #dce9df, #eef5f0); box-shadow: inset 0 0 0 1px rgba(24,60,58,.05); }
.distance-pill { border-radius: 999px; background: #f6eee8; color: #8b513d; padding: 5px 9px; font-size: 12px; font-weight: 700; }
.compact-select { min-width: 205px; }

.provider-panel { box-shadow: 0 26px 70px rgba(18,48,46,.18); background: linear-gradient(135deg, #173c39, #224f4b); }
.about-card { box-shadow: 0 14px 40px rgba(38,72,67,.06); }

@media (max-width: 650px) {
  .location-tools { grid-template-columns: 1fr; }
  .compact-select { width: 100%; min-width: 0; }
  .sort-label { width: 100%; align-items: flex-start; flex-direction: column; }
  .hero::after { display: none; }
}

/* Provider plans + self-service portal */
.primary-nav.always-open { display:flex; }
.primary-nav a.active { color: var(--accent); font-weight:700; }
.provider-hero { padding: 92px 0 82px; background: linear-gradient(135deg,#f5f2e9,#eaf2ec); border-bottom:1px solid var(--line); }
.provider-hero-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:72px; align-items:center; }
.provider-preview-card { background:white; padding:28px; border:1px solid var(--line); border-radius:26px; box-shadow:var(--shadow); }
.avatar-xl { width:84px; height:84px; display:grid; place-items:center; border-radius:22px; background:linear-gradient(145deg,#dce9df,#eef5f0); color:var(--ink); font-family:"Fraunces",serif; font-size:27px; margin-bottom:18px; }
.badge { display:inline-flex; border-radius:999px; padding:7px 10px; background:#e7f0e8; color:#27564f; font-size:11px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.badge.subtle { background:#f1eee7; color:#725e4e; }
.preview-tags { display:flex; flex-wrap:wrap; gap:7px; margin:18px 0; }
.preview-tags span { background:var(--sage-2); border-radius:999px; padding:6px 9px; font-size:12px; }
.mini-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin:20px 0; }
.mini-stats div { background:#f7f8f4; padding:12px; border-radius:12px; }
.mini-stats strong,.mini-stats span { display:block; }.mini-stats strong{font-size:22px;color:var(--ink)}.mini-stats span{font-size:10px;color:var(--muted)}
.center-heading { max-width:760px; margin:0 auto 38px; text-align:center; }
.plan-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:940px; margin:0 auto; }
.plan-card { position:relative; background:white; border:1px solid var(--line); border-radius:26px; padding:30px; box-shadow:0 12px 34px rgba(38,72,67,.055); }
.featured-plan { border:2px solid #8fb4a1; box-shadow:0 24px 60px rgba(38,72,67,.12); transform:translateY(-6px); }
.popular-label { position:absolute; right:20px; top:18px; border-radius:999px; background:var(--ink); color:white; padding:6px 9px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.plan-top { display:flex; justify-content:space-between; align-items:start; gap:16px; }.plan-name{font-size:22px;font-weight:800;color:var(--ink)}
.plan-price strong{font-family:"Fraunces",serif;font-size:40px;color:var(--ink)}.plan-price span{font-size:12px;color:var(--muted)}
.feature-list { list-style:none; padding:0; margin:22px 0; display:grid; gap:10px; color:var(--text); font-size:14px; }.feature-list li::before{content:"✓";color:#4c806f;font-weight:900;margin-right:8px}
.button.wide { width:100%; justify-content:center; text-align:center; }
.managed-strip { max-width:940px; margin:22px auto 0; padding:22px 24px; border:1px dashed #b8c8bf; border-radius:18px; display:flex; align-items:center; justify-content:space-between; gap:30px; background:#fbfcf9; }.managed-strip h3{margin:2px 0 6px}.managed-strip p{margin:0}
.onboarding-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:70px;align-items:start}.step-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}.step-list li{display:grid;grid-template-columns:42px 1fr;gap:12px;background:white;border-radius:15px;padding:14px;border:1px solid var(--line)}.step-list>li>span{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:var(--ink);color:white;font-weight:800}.step-list b,.step-list small{display:block}.step-list small{color:var(--muted);margin-top:3px}

.portal-body { background:#f5f7f3; }
.portal-shell { min-height:100vh; display:grid; grid-template-columns:260px 1fr; }
.portal-sidebar { position:sticky; top:0; height:100vh; background:#153633; color:white; padding:24px 18px; display:flex; flex-direction:column; }
.portal-brand { color:white; margin-bottom:28px; }.portal-brand small{color:#aec3bf}.portal-brand .brand-mark{background:rgba(255,255,255,.12)}
.portal-account { display:grid; grid-template-columns:38px 1fr; gap:10px; align-items:center; padding:14px; background:rgba(255,255,255,.06); border-radius:14px; margin-bottom:18px; }.portal-account strong,.portal-account small{display:block}.portal-account small{color:#a9c0bc;font-size:11px}.avatar-sm{width:38px;height:38px;border-radius:11px;background:#e2ece4;color:#153633;display:grid;place-items:center;font-weight:800}
.portal-nav { display:grid; gap:6px; }.portal-nav button{border:0;background:transparent;color:#d5e2df;text-align:left;padding:11px 12px;border-radius:10px;cursor:pointer;font-weight:650}.portal-nav button:hover,.portal-nav button.active{background:rgba(255,255,255,.1);color:white}.portal-nav button.locked{opacity:.48}.pro-dot{float:right;font-size:8px;padding:3px 5px;border-radius:999px;background:#e9c7aa;color:#4d3523;letter-spacing:.06em}
.portal-sidebar-bottom{margin-top:auto;border-top:1px solid rgba(255,255,255,.1);padding-top:16px;display:grid;gap:8px}.portal-sidebar-bottom a{color:#d5e2df;font-size:12px}.portal-sidebar-bottom span{color:#76938e;font-size:10px;text-transform:uppercase;letter-spacing:.08em}
.portal-main { padding:28px 34px 60px; min-width:0; }.portal-topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.portal-topbar h2{margin:3px 0 0}.portal-actions{display:flex;gap:10px;align-items:center}.status-pill{background:#e4f1e8;color:#2d6855;border-radius:999px;padding:7px 10px;font-size:11px;font-weight:800}.small-btn{padding:8px 11px;font-size:12px}
.portal-panel{display:none}.portal-panel.active{display:block}.dashboard-grid{display:grid;gap:14px}.top-metrics{grid-template-columns:repeat(3,1fr)}.metric-card{background:white;border:1px solid var(--line);border-radius:18px;padding:20px;box-shadow:0 8px 24px rgba(38,72,67,.035)}.metric-card>span,.metric-card>small{display:block}.metric-card>span{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;font-weight:700}.metric-card>strong{display:block;font-family:"Fraunces",serif;font-size:30px;color:var(--ink);margin:7px 0}.metric-card>small{color:var(--muted)}.progress{height:7px;background:var(--sage-2);border-radius:999px;overflow:hidden;margin:10px 0}.progress i{display:block;height:100%;background:#6d9b83}
.portal-card{background:white;border:1px solid var(--line);border-radius:20px;padding:24px;margin-top:16px;box-shadow:0 8px 26px rgba(38,72,67,.035)}.card-heading{display:flex;justify-content:space-between;gap:20px;align-items:start}.card-heading h3{margin:3px 0 0}.card-heading small{color:var(--muted)}
.task-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:18px}.task-grid button{border:1px solid var(--line);background:#fafbf8;border-radius:13px;padding:14px;text-align:left;cursor:pointer}.task-grid b,.task-grid span{display:block}.task-grid span{font-size:11px;color:var(--muted);margin-top:4px}.advanced-teaser{display:flex;justify-content:space-between;align-items:center;gap:30px;background:linear-gradient(135deg,#173b38,#285b55);color:white}.advanced-teaser h3{color:white}.advanced-teaser p{color:#c9dad7;max-width:650px}.advanced-teaser .eyebrow{color:#e6bcae}.teaser-stats{display:flex;gap:10px}.teaser-stats span{min-width:86px;background:rgba(255,255,255,.09);padding:12px;border-radius:12px;text-align:center;font-size:10px}.teaser-stats b{display:block;font-size:22px;color:white}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:20px}.form-grid label,.video-field{font-size:12px;font-weight:700;color:var(--ink)}.form-grid .input,.video-field .input{display:block;width:100%;margin-top:6px}.textarea{min-height:110px;resize:vertical}.span-2{grid-column:span 2}.edit-block{margin-top:24px;padding-top:20px;border-top:1px solid var(--line)}.edit-block h4{margin:0 0 10px}.static-chips .filter-chip.active{background:var(--ink);color:white;border-color:var(--ink)}
.media-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:22px 0}.media-upload{min-height:190px;border:1px solid var(--line);border-radius:16px;padding:18px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;background:#fafbf8}.media-upload .avatar-xl{margin:0 0 12px}.media-upload.empty{border-style:dashed}.media-upload.empty>span{font-size:28px;color:#6c8e84}.media-upload small{color:var(--muted);margin-top:4px}.video-field small{display:block;color:var(--muted);font-weight:400;margin-top:6px}
.analytics-header{display:flex;justify-content:space-between;align-items:center}.analytics-metrics{grid-template-columns:repeat(4,1fr);margin-top:16px}.analytics-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.bar-list{display:grid;gap:16px;margin-top:18px}.bar-list>div{display:grid;grid-template-columns:120px 1fr 28px;align-items:center;gap:10px;font-size:12px}.bar-list i{height:8px;border-radius:999px;background:linear-gradient(90deg,#7ca691 var(--w),#edf1ec var(--w))}.bar-list b{text-align:right}.source-list{display:grid;gap:10px;margin-top:16px}.source-list>div{display:flex;justify-content:space-between;border-bottom:1px solid #edf0eb;padding-bottom:9px;font-size:13px}.privacy-banner{margin-top:16px;border-left:4px solid #6f9b85;background:#eaf2ec;border-radius:0 12px 12px 0;padding:15px 16px;font-size:12px;color:#36574e}
.qr-layout{display:grid;grid-template-columns:1fr 300px;gap:60px;align-items:center}.code-box{font-family:monospace;background:#f4f5f1;border:1px solid var(--line);padding:12px;border-radius:10px;margin:18px 0}.qr-demo{width:250px;height:250px;border-radius:24px;background:#f3f5f1;display:grid;place-items:center;text-align:center;border:1px solid var(--line)}.qr-pattern{font-size:130px;line-height:1;color:#173b38}.qr-demo small{margin-top:-46px;color:var(--muted)}
.billing-options{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:24px 0}.plan-switch{display:flex;justify-content:space-between;align-items:center;text-align:left;border:1px solid var(--line);background:#fafbf8;border-radius:15px;padding:16px;cursor:pointer}.plan-switch.selected{border:2px solid #6d9b83;background:#f0f6f1}.plan-switch b,.plan-switch small{display:block}.plan-switch small{color:var(--muted);margin-top:3px}.billing-row{display:flex;justify-content:space-between;padding:13px 0;border-top:1px solid var(--line);font-size:13px}.checkout-summary{display:flex;justify-content:space-between;gap:20px;background:#f4f6f2;border-radius:12px;padding:14px;margin:20px 0}.flow-line{display:flex;flex-wrap:wrap;gap:8px;align-items:center;background:#eef3ef;border-radius:12px;padding:14px;font-size:11px;margin-bottom:20px}.flow-line b{color:#739286}
@media(max-width:1000px){.provider-hero-grid,.onboarding-grid{grid-template-columns:1fr}.portal-shell{grid-template-columns:1fr}.portal-sidebar{position:static;height:auto}.portal-nav{grid-template-columns:repeat(3,1fr)}.portal-sidebar-bottom{display:none}.top-metrics,.analytics-metrics{grid-template-columns:1fr 1fr}.task-grid{grid-template-columns:1fr 1fr}.advanced-teaser{display:block}.teaser-stats{margin-top:18px}.qr-layout{grid-template-columns:1fr}.qr-demo{width:220px;height:220px}.analytics-grid{grid-template-columns:1fr}}
@media(max-width:700px){.primary-nav.always-open{display:none}.plan-grid{grid-template-columns:1fr}.featured-plan{transform:none}.portal-main{padding:20px 14px 50px}.portal-nav{grid-template-columns:1fr 1fr}.portal-topbar{align-items:flex-start;gap:15px;flex-direction:column}.top-metrics,.analytics-metrics,.task-grid,.form-grid,.media-grid,.billing-options{grid-template-columns:1fr}.span-2{grid-column:auto}.analytics-header{align-items:flex-start;gap:12px;flex-direction:column}.bar-list>div{grid-template-columns:100px 1fr 28px}.managed-strip{display:block}.managed-strip .badge{margin-top:12px}.mini-stats{grid-template-columns:1fr}.teaser-stats{flex-wrap:wrap}}

/* =========================================================
   Public-site wellness redesign — September 2026 prototype
   ========================================================= */
.public-site {
  --well-ink:#253d3a;
  --well-forest:#355951;
  --well-forest-2:#466f65;
  --well-sage:#dce7dd;
  --well-sage-soft:#f2f5ef;
  --well-cream:#fbf7f0;
  --well-blush:#efe0d9;
  --well-sand:#eadfce;
  --well-mist:#dfe9e7;
  --well-lavender:#e6e1eb;
  --well-gold:#c79b6e;
  --well-text:#455956;
  --well-muted:#72827e;
  --well-line:rgba(53,89,81,.12);
  --well-shadow:0 24px 70px rgba(44,72,66,.10);
  background:#fcfaf6;
  color:var(--well-text);
  font-family:Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.public-site h1,.public-site h2,.public-site .brand strong,.public-site .plan-price strong {
  font-family:Georgia, "Times New Roman", serif;
  color:var(--well-ink);
  font-weight:500;
  letter-spacing:-.035em;
}
.public-site h3 { color:var(--well-ink); }
.public-site .shell { width:min(1200px,calc(100% - 48px)); }
.public-header { background:rgba(252,250,246,.92); border-bottom:1px solid rgba(53,89,81,.08); }
.public-header .nav-wrap { min-height:82px; }
.public-header .brand-mark,.wellness-footer .brand-mark { background:transparent; color:var(--well-forest); border:1px solid rgba(53,89,81,.16); }
.public-header .brand-mark svg,.wellness-footer .brand-mark svg { width:32px; height:32px; }
.public-header .brand strong { font-size:18px; }
.public-header .brand small { color:#72827e; letter-spacing:.02em; }
.public-header .primary-nav { gap:30px; }
.public-header .primary-nav a { font-weight:600; color:#506762; }
.public-header .primary-nav .nav-cta { padding:10px 16px; border-radius:999px; background:var(--well-forest); color:white; }
.public-header .primary-nav .nav-cta:hover { background:#294a43; color:white; }

.wellness-hero { padding:78px 0 86px; background:linear-gradient(180deg,#fbf8f1 0%,#f6f1e9 100%); overflow:hidden; }
.wellness-hero::before { display:none; }
.wellness-hero-grid { display:grid; grid-template-columns:1.02fr .98fr; gap:76px; align-items:center; }
.hero-copy-wrap { padding:20px 0 34px; }
.soft-eyebrow { color:#8b6a4f; letter-spacing:.14em; }
.wellness-hero h1 { font-size:clamp(48px,5.2vw,72px); line-height:1.02; max-width:720px; margin-bottom:24px; }
.wellness-hero .hero-copy { font-size:19px; line-height:1.72; color:#5b706c; max-width:650px; }
.warm-primary { background:var(--well-forest)!important; border-radius:999px!important; padding-inline:24px!important; min-height:52px!important; }
.warm-secondary { background:rgba(255,255,255,.72)!important; border-color:rgba(53,89,81,.17)!important; border-radius:999px!important; padding-inline:24px!important; min-height:52px!important; }
.hero-trust-row { display:flex; flex-wrap:wrap; gap:18px 26px; margin-top:26px; color:#6f817d; font-size:13px; }
.hero-trust-row span { display:flex; gap:7px; align-items:center; }
.hero-trust-row i { width:20px; height:20px; border-radius:50%; display:grid; place-items:center; background:#e3ebe2; color:#42675d; font-style:normal; font-size:11px; }
.hero-visual { position:relative; min-height:560px; display:grid; place-items:center; }
.landscape-card { position:relative; width:min(100%,520px); aspect-ratio:1 / 1.06; border-radius:190px 190px 42px 42px; overflow:hidden; background:linear-gradient(180deg,#eadfce,#f1e8dd 43%,#dae5dc 100%); box-shadow:var(--well-shadow); }
.landscape-sun { position:absolute; top:86px; right:92px; width:88px; height:88px; border-radius:50%; background:#f7e5bd; box-shadow:0 0 0 20px rgba(247,229,189,.18); }
.landscape-art { position:absolute; inset:auto 0 0; width:100%; height:78%; }
.hill-back { fill:#bacfc3; }.hill-mid{fill:#8ead9e}.hill-front{fill:#58796f}
.hero-leaf { position:absolute; background:#6e8d81; width:19px; height:57px; border-radius:100% 0 100% 0; transform-origin:bottom center; opacity:.8; }
.leaf-one{left:62px;bottom:88px;transform:rotate(-26deg)}.leaf-two{left:88px;bottom:73px;transform:rotate(15deg) scale(.8)}.leaf-three{left:112px;bottom:76px;transform:rotate(38deg) scale(.65)}
.hero-floating-card { position:absolute; left:-56px; bottom:40px; width:310px; display:grid; grid-template-columns:42px 1fr; gap:12px; align-items:start; padding:18px 20px; border-radius:20px; background:rgba(255,255,255,.94); box-shadow:0 18px 50px rgba(43,68,62,.17); }
.floating-icon { width:38px; height:38px; border-radius:50%; background:#efe3dc; color:#976b59; display:grid; place-items:center; font-size:20px; }
.hero-floating-card strong,.hero-floating-card small { display:block; }.hero-floating-card strong{color:var(--well-ink);font-family:Georgia,serif;font-size:16px;line-height:1.25;font-weight:500}.hero-floating-card small{margin-top:5px;color:#72827e;font-size:12px;line-height:1.45}
.soft-wave { display:none; }

.resource-section { background:#fffdf9; padding-top:96px; }
.center-heading { text-align:center; max-width:780px; margin:0 auto 50px; }
.center-heading h2 { font-size:clamp(36px,4vw,53px); line-height:1.08; margin-bottom:16px; }
.center-heading p { color:#72827e; font-size:17px; line-height:1.7; }
.editorial-resources { grid-template-columns:repeat(3,1fr); gap:20px; }
.editorial-card { min-height:282px; padding:30px; display:flex; flex-direction:column; justify-content:space-between; border:0; box-shadow:none; transition:transform .22s ease,box-shadow .22s ease; }
.editorial-card:hover { transform:translateY(-5px); box-shadow:0 20px 55px rgba(52,77,71,.09); }
.editorial-card h3 { font-family:Georgia,serif; font-size:24px; font-weight:500; margin-bottom:10px; }
.editorial-card p { color:#60736f; line-height:1.65; }
.line-icon { width:50px; height:50px; border-radius:50%; margin-bottom:30px; background:rgba(255,255,255,.6); }
.line-icon svg { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.65; stroke-linecap:round; stroke-linejoin:round; }
.card-arrow { display:block; margin-top:22px; color:#49685f; font-size:13px; font-weight:700; }
.sage-card{background:#e8efe7}.blush-card{background:#f1e4de}.sand-card{background:#f0e6d7}.mist-card{background:#e5efed}.lavender-card{background:#ebe7ef}.cream-card{background:#f6efe3}

.find-section { background:#e9eee8; padding:98px 0; }
.find-intro { display:grid; grid-template-columns:1.1fr .9fr; gap:90px; align-items:end; margin-bottom:40px; }
.light-eyebrow { color:#8e715d; }
.find-intro h2 { font-size:clamp(38px,4vw,55px); margin-bottom:0; }
.find-intro p { color:#667a75; font-size:16px; line-height:1.7; margin:0; }
.wellness-directory { grid-template-columns:360px 1fr; gap:28px; }
.wellness-filters { top:102px; border:0; border-radius:28px; box-shadow:0 18px 55px rgba(45,71,65,.08); padding:26px; background:#fffefa; }
.filter-kicker { display:block; color:#87958f; font-size:11px; text-transform:uppercase; letter-spacing:.12em; font-weight:700; margin-bottom:3px; }
.wellness-filters h3 { font-family:Georgia,serif; font-size:24px; font-weight:500; }
.wellness-filters .field-label { color:#526a65; font-size:12px; }
.search-input-wrap { position:relative; }.search-input-wrap>span{position:absolute;left:13px;top:50%;transform:translateY(-50%);color:#80918c;font-size:20px}.search-input-wrap .input{padding-left:38px}
.public-site .input,.public-site .compact-select { border-color:rgba(53,89,81,.14); background:#fbfcf9; border-radius:13px; color:#425953; }
.public-site .input:focus { border-color:#78998e; outline:3px solid rgba(120,153,142,.12); }
.public-site .filter-chip { background:#f5f7f2; border-color:rgba(53,89,81,.10); color:#536a65; padding:8px 11px; }
.public-site .filter-chip.active { background:#4f7168; color:white; border-color:#4f7168; }
.more-filters { margin-top:20px; border-top:1px solid rgba(53,89,81,.10); padding-top:15px; }
.more-filters summary { cursor:pointer; color:#4f6a63; font-weight:700; font-size:13px; }
.wellness-filters .privacy-note { background:#eef3ed; color:#657873; line-height:1.55; border-radius:16px; }
.wellness-toolbar { margin-bottom:17px; padding:4px 2px; }
.wellness-toolbar strong { color:#344f49; font-size:16px; }.wellness-toolbar span{color:#768781}
.public-site .results-list { gap:16px; }
.public-site .provider-card { border:0; border-radius:24px; padding:24px; grid-template-columns:84px 1fr auto; gap:19px; box-shadow:0 12px 38px rgba(51,74,68,.06); transition:transform .18s ease,box-shadow .18s ease; }
.public-site .provider-card:hover { transform:translateY(-2px); box-shadow:0 18px 50px rgba(51,74,68,.10); }
.public-site .provider-avatar { width:80px; height:80px; border-radius:50%; background:radial-gradient(circle at 35% 28%,#f3e6da,#d8e4da 70%); color:#49675f; font-family:Georgia,serif; font-size:23px; border:4px solid #f8f9f5; box-shadow:0 5px 18px rgba(56,80,73,.09); }
.public-site .provider-card h3 { font-family:Georgia,serif; font-weight:500; font-size:23px; margin-top:2px; }
.public-site .provider-meta { color:#7a8985; }
.public-site .match-tag { background:#f2f5ef; color:#536d65; }
.public-site .match-tag.matched { background:#e5efe6; color:#3d6957; }
.distance-pill { border-radius:999px; background:#f3eee7; color:#846e5f; padding:5px 9px; font-size:12px; }
.public-site .match-strength { color:#6e817b; font-weight:700; }
.public-site .card-link { background:#4d7167; border-radius:999px; padding:10px 15px; }
.public-site .verified { color:#8a9894; }

.gentle-info-section { background:#fffdf9; }
.gentle-info-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:84px; align-items:center; }
.gentle-info-grid h2 { font-size:clamp(38px,4vw,54px); line-height:1.08; }
.gentle-info-grid>div:last-child>p { color:#6a7d78; line-height:1.75; font-size:16px; }
.gentle-illustration { position:relative; min-height:420px; border-radius:54% 46% 43% 57% / 52% 46% 54% 48%; background:#e8eee6; overflow:hidden; }
.gentle-illustration .circle-one{position:absolute;width:190px;height:190px;border-radius:50%;background:#f1dfd4;left:50px;top:60px}.gentle-illustration .circle-two{position:absolute;width:130px;height:130px;border-radius:50%;background:#d6e3da;right:54px;bottom:62px}
.gentle-illustration .stem{position:absolute;width:4px;background:#718d7f;border-radius:999px;transform-origin:bottom}.stem-one{height:220px;left:49%;bottom:48px;transform:rotate(-12deg)}.stem-two{height:170px;left:61%;bottom:48px;transform:rotate(21deg)}
.gentle-illustration .leaf{position:absolute;width:58px;height:100px;border-radius:100% 0 100% 0;background:#8ba798}.leaf-a{left:38%;top:138px;transform:rotate(-44deg)}.leaf-b{left:52%;top:204px;transform:rotate(37deg) scale(.8)}.leaf-c{left:59%;top:116px;transform:rotate(58deg) scale(.7)}
.comfort-points { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; margin-top:30px; }
.comfort-points>span { background:#f5f3ed; border-radius:18px; padding:18px; }
.comfort-points i { width:30px; height:30px; border-radius:50%; display:grid; place-items:center; background:#dfe9df; color:#466b60; font-style:normal; font-weight:800; font-size:12px; margin-bottom:15px; }
.comfort-points b,.comfort-points small { display:block; }.comfort-points b{color:#35544c;font-size:13px}.comfort-points small{color:#788782;line-height:1.5;margin-top:5px}

.provider-invite-section { background:#f6f1e8; }
.provider-invite-card { background:#3e645b; color:white; border-radius:36px; padding:58px; display:grid; grid-template-columns:1.3fr .7fr; gap:58px; position:relative; overflow:hidden; }
.provider-invite-card::after { content:""; position:absolute; width:340px; height:340px; border-radius:50%; background:rgba(255,255,255,.05); right:-120px; top:-120px; }
.provider-invite-card h2,.provider-invite-card h3 { color:white; }.provider-invite-card h2{font-size:clamp(38px,4vw,54px);line-height:1.08}.provider-invite-card p{color:#dbe7e2;line-height:1.7}
.provider-price-pills { display:flex; gap:10px; flex-wrap:wrap; margin:24px 0 26px; }.provider-price-pills span{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.12);padding:9px 12px;border-radius:999px;font-size:13px}.provider-price-pills b{color:white}
.provider-actions { display:flex; gap:18px; align-items:center; flex-wrap:wrap; }.light-button{background:#fffdf8!important;color:#35574f!important;border-radius:999px!important}.text-link-light{color:#e2ece8;text-decoration:none;font-weight:700;font-size:13px}
.provider-feature-card { align-self:center; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.12); border-radius:24px; padding:26px; position:relative; z-index:1; }.provider-feature-card h3{font-family:Georgia,serif;font-size:24px;font-weight:500}.provider-feature-card ul{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px}.provider-feature-card li{color:#dbe7e2;font-size:13px;padding-left:23px;position:relative}.provider-feature-card li::before{content:"✓";position:absolute;left:0;color:#f4d9c3}.small-label{display:block;text-transform:uppercase;letter-spacing:.12em;font-size:10px;font-weight:800;color:#d9c2b1;margin-bottom:10px}

.about-section { background:#fffdf9; }
.about-wellness-grid { display:grid; grid-template-columns:1fr .85fr; gap:84px; align-items:center; }.about-wellness-grid h2{font-size:clamp(36px,4vw,52px);line-height:1.08}.about-wellness-grid p{color:#687a76;line-height:1.75}
.transparency-card { background:#f3f0e9; border-radius:26px; padding:30px; }.transparency-card .small-label{color:#8a6d59}.transparency-card small{display:block;color:#86918e;line-height:1.55;margin-top:18px;padding-top:18px;border-top:1px solid rgba(53,89,81,.10)}

.wellness-footer { background:#2f4d47; color:#dbe5e1; padding:48px 0; }
.wellness-footer-grid { display:grid; grid-template-columns:1fr auto auto; gap:52px; align-items:center; }.wellness-footer .brand-mark{color:#dce8e3;border-color:rgba(255,255,255,.18)}.footer-brand{display:flex;gap:12px;align-items:center}.footer-brand strong,.footer-brand small{display:block}.footer-brand strong{font-family:Georgia,serif;color:white;font-weight:500;font-size:18px}.footer-brand small{color:#a9bdb7}.footer-links{display:flex;gap:20px;flex-wrap:wrap}.footer-links a{color:#c6d5d0;text-decoration:none;font-size:13px}.footer-meta span,.footer-meta small,.footer-meta strong{display:block}.footer-meta span{font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:#8fa7a0}.footer-meta strong{color:white;font-size:13px;margin:4px 0}.footer-meta small{color:#a9bdb7}

.public-site .profile-dialog { border:0; border-radius:28px; box-shadow:0 30px 90px rgba(27,48,43,.22); }
.public-site .dialog-hero .provider-avatar { width:82px; height:82px; border-radius:50%; }

@media(max-width:1000px){
  .wellness-hero-grid,.find-intro,.gentle-info-grid,.provider-invite-card,.about-wellness-grid{grid-template-columns:1fr}.hero-visual{min-height:500px}.hero-floating-card{left:15px}.editorial-resources{grid-template-columns:1fr 1fr}.wellness-directory{grid-template-columns:1fr}.wellness-filters{position:static}.comfort-points{grid-template-columns:1fr}.wellness-footer-grid{grid-template-columns:1fr}.footer-links{order:3}.provider-invite-card{gap:28px}.gentle-illustration{min-height:340px}.public-header .primary-nav{gap:16px}
}
@media(max-width:760px){
  .public-site .shell{width:min(100% - 28px,1200px)}.wellness-hero{padding-top:48px}.wellness-hero h1{font-size:44px}.wellness-hero-grid{gap:28px}.hero-visual{min-height:420px}.landscape-card{width:100%;border-radius:120px 120px 30px 30px}.hero-floating-card{width:calc(100% - 28px);left:14px;bottom:16px}.editorial-resources{grid-template-columns:1fr}.editorial-card{min-height:240px}.find-section{padding:76px 0}.find-intro{gap:18px}.wellness-toolbar{align-items:flex-start;flex-direction:column}.public-site .provider-card{grid-template-columns:70px 1fr}.public-site .provider-avatar{width:68px;height:68px}.provider-side{grid-column:1 / -1;text-align:left;display:flex;align-items:center;gap:12px;flex-wrap:wrap}.provider-invite-card{padding:34px 24px}.gentle-illustration{min-height:300px}.hero-trust-row{display:grid;gap:10px}.public-header .primary-nav .nav-cta{display:none}
}

/* Provider-plan page to match the public wellness brand */
.provider-public-page .provider-hero { background:linear-gradient(180deg,#fbf8f1,#f4eee4); padding:84px 0 76px; position:relative; overflow:hidden; }
.provider-public-page .provider-hero::after { content:""; position:absolute; width:420px; height:420px; border-radius:50%; background:#dce8df; right:-140px; top:-170px; opacity:.65; }
.provider-public-page .provider-hero-grid { position:relative; z-index:1; }
.provider-public-page .provider-hero h1 { font-size:clamp(48px,5.2vw,70px); line-height:1.02; }
.provider-public-page .provider-preview-card { border:0; border-radius:30px; background:rgba(255,255,255,.92); box-shadow:var(--well-shadow); padding:30px; }
.provider-public-page .avatar-xl { border-radius:50%; background:radial-gradient(circle at 35% 28%,#f3e6da,#d8e4da 70%); color:#49675f; font-family:Georgia,serif; border:4px solid white; }
.provider-public-page #plans { background:#fffdf9; }
.provider-public-page .plan-grid { gap:22px; max-width:980px; margin-inline:auto; }
.provider-public-page .plan-card { border:0; border-radius:28px; box-shadow:0 16px 48px rgba(53,75,68,.07); background:#fff; padding:30px; }
.provider-public-page .featured-plan { border:2px solid #8fa99a; transform:translateY(-5px); }
.provider-public-page .popular-label { background:#45695f; }
.provider-public-page .managed-strip { background:#f3f0e8; border:0; border-radius:22px; }
.provider-public-page .muted-section { background:#e9eee8; }
.provider-public-page .step-list li { border:0; border-radius:18px; box-shadow:0 10px 30px rgba(55,77,71,.045); }
.provider-public-page .step-list>li>span { background:#4d7167; }
.provider-public-page .site-footer.footer-grid { background:#2f4d47; }
