:root {
  --blue: #173fdb;
  --deep: #0b238e;
  --yellow: #ffd84f;
  --pink: #ff7fa8;
  --cream: #fffaf0;
  --ink: #15204b;
  --line: #dbe2ff;
  --white: #fff;
  --shadow: 0 22px 60px rgba(15, 35, 130, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.topbar {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}
.brand-mark {
  width: 43px;
  height: 43px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--yellow);
}
.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav button,
.mobile-nav button {
  background: none;
  border: 0;
  color: inherit;
  font-weight: 600;
}
.profile-pill {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 15px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: 7px;
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
}
.mobile-nav {
  display: none;
}
.page {
  display: none;
  min-height: calc(100vh - 78px);
}
.page.active {
  display: block;
}
.hero {
  background: var(--blue);
  color: white;
  padding: 72px 7vw 92px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 216, 79, 0.25);
  border-radius: 50%;
  width: 340px;
  height: 340px;
}
.hero:before {
  top: -200px;
  left: 38%;
}
.hero:after {
  bottom: -270px;
  right: 18%;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
}
.hero .eyebrow {
  color: var(--yellow);
}
h1,
h2,
p {
  margin-top: 0;
}
.hero h1,
.page-title h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  margin: 18px 0 24px;
  letter-spacing: -0.04em;
}
.hero h1 em {
  color: var(--yellow);
}
.hero-copy > p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 610px;
  color: #e8ecff;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}
.primary,
.secondary,
.feature button,
.price-card button {
  padding: 14px 20px;
  border-radius: 7px;
  border: 0;
  font-weight: 700;
}
.primary {
  background: var(--yellow);
  color: var(--deep);
}
.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
}
.trust-row {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: #cad4ff;
}
.conversation-card {
  background: #fff;
  color: var(--ink);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  position: relative;
  z-index: 2;
}
.conversation-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.conversation-head small {
  display: block;
  color: #7881a5;
  margin-top: 4px;
}
.live {
  background: #e9fff5;
  color: #13875e;
  height: min-content;
  padding: 5px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
}
.bubble {
  background: #f0f3ff;
  border-radius: 16px 16px 16px 3px;
  padding: 14px 16px;
  margin-top: 18px;
  width: 90%;
}
.bubble.reply {
  background: #fff5c9;
  margin-left: auto;
  border-radius: 16px 16px 3px 16px;
}
.bubble b {
  font-size: 11px;
  color: var(--blue);
}
.bubble p {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.45;
}
.typing {
  font-size: 11px;
  color: #7d86a8;
  margin-top: 16px;
}
.typing span {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  margin-right: 2px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 22px 7vw;
  background: var(--cream);
  margin-top: -42px;
  position: relative;
  z-index: 3;
}
.feature {
  border-radius: 20px;
  padding: 35px;
  display: flex;
  gap: 25px;
  min-height: 250px;
}
.feature.blue {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.feature.yellow {
  background: var(--yellow);
}
.feature-icon {
  font-size: 38px;
  color: var(--blue);
}
.feature small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-weight: 700;
}
.feature h2 {
  font:
    700 30px "Playfair Display",
    serif;
  margin: 10px 0;
}
.feature p {
  line-height: 1.6;
  color: #5c6484;
}
.feature button {
  padding: 0;
  background: none;
  color: var(--blue);
}
.manifesto {
  text-align: center;
  padding: 100px 20px;
  background: var(--cream);
}
.manifesto p {
  font-size: 18px;
}
.manifesto h2 {
  font:
    italic 700 clamp(50px, 7vw, 90px) "Playfair Display",
    serif;
  color: var(--blue);
}
.page-title {
  padding: 55px 7vw 35px;
}
.page-title h1 {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--blue);
  margin-bottom: 14px;
}
.page-title p {
  color: #687092;
  font-size: 18px;
}
.centered {
  text-align: center;
}
.chat-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  margin: 0 7vw 70px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  min-height: 650px;
}
.room-list {
  border-right: 1px solid var(--line);
  background: #f7f8ff;
  padding: 14px;
}
.room-button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 4px;
  color: var(--ink);
}
.room-button.active {
  background: var(--blue);
  color: #fff;
}
.room-button b {
  display: block;
  margin-bottom: 4px;
}
.room-button span {
  font-size: 12px;
  opacity: 0.7;
}
.chat-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.chat-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.chat-header h2 {
  margin-bottom: 4px;
}
.chat-header p {
  font-size: 13px;
  color: #7780a3;
  margin: 0;
}
.online {
  color: #18855e;
  font-size: 12px;
}
.message-list {
  padding: 24px;
  overflow: auto;
  flex: 1;
  background: linear-gradient(#fff, #fbfbff);
}
.message {
  margin-bottom: 20px;
  max-width: 70%;
}
.message.self {
  margin-left: auto;
}
.message-meta {
  font-size: 11px;
  color: #7d86a8;
  margin-bottom: 5px;
}
.message-body {
  padding: 12px 15px;
  background: #eef1ff;
  border-radius: 15px 15px 15px 3px;
  line-height: 1.5;
}
.message.self .message-body {
  background: var(--yellow);
  border-radius: 15px 15px 3px 15px;
}
.message-form {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.message-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
}
.message-form button {
  border: 0;
  background: var(--blue);
  color: #fff;
  border-radius: 9px;
  padding: 0 22px;
  font-weight: 700;
}
.safety-note {
  text-align: center;
  font-size: 10px;
  color: #8a91ad;
}
.directory-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.searchbar {
  margin: 0 7vw 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.searchbar input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 11px;
}
.searchbar select {
  border: 0;
  background: transparent;
  color: var(--blue);
}
.category-chips {
  padding: 0 7vw 25px;
  display: flex;
  gap: 8px;
  overflow: auto;
}
.chip {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 99px;
  padding: 9px 14px;
  color: var(--ink);
}
.chip.active {
  background: var(--blue);
  color: #fff;
}
.provider-grid {
  padding: 0 7vw 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.provider-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 23px;
  box-shadow: 0 8px 25px rgba(15, 35, 130, 0.06);
}
.provider-card .category {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.provider-card h3 {
  font:
    700 24px "Playfair Display",
    serif;
  margin: 14px 0 9px;
}
.stars {
  color: #f5b900;
  letter-spacing: 2px;
}
.provider-card p {
  color: #687092;
  font-size: 14px;
  line-height: 1.5;
}
.provider-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.provider-type {
  font-size: 10px;
  color: var(--pink);
  font-weight: 700;
  text-align: right;
}
.provider-rating {
  min-height: 25px;
}
.awaiting {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.latest-review {
  margin: 15px 0;
  padding: 13px;
  border-left: 3px solid var(--pink);
  background: #fff8e2;
  font:
    italic 14px/1.5 "Playfair Display",
    serif;
}
.review-provider {
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}
.review-provider:hover {
  background: var(--blue);
  color: #fff;
}
.verified {
  font-size: 11px;
  color: #18855e;
  font-weight: 700;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 20px 7vw 100px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.price-card.featured {
  background: var(--blue);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}
.tier {
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.price-card h2 {
  font:
    700 29px "Playfair Display",
    serif;
  margin: 15px 0;
}
.price b {
  font-size: 42px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.price-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(120, 130, 170, 0.2);
}
.price-card li:before {
  content: "✓";
  color: #1aa56f;
  margin-right: 9px;
}
.price-card .muted {
  opacity: 0.5;
}
.price-card button {
  width: 100%;
  background: var(--yellow);
  color: var(--deep);
}
.popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--pink);
  color: #fff;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
}
dialog {
  border: 0;
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow);
  max-width: 500px;
  width: calc(100% - 32px);
}
dialog::backdrop {
  background: rgba(7, 18, 75, 0.7);
}
.modal-card {
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-card h2 {
  font:
    700 36px "Playfair Display",
    serif;
  margin: 0;
}
.modal-card p {
  color: #70799a;
}
.modal-card label {
  font-size: 13px;
  font-weight: 600;
}
.modal-card input:not([type="checkbox"]),
.modal-card select,
.modal-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
  margin-top: 6px;
}
.modal-card textarea {
  min-height: 110px;
  resize: vertical;
}
.close {
  position: absolute;
  right: 17px;
  top: 15px;
  border: 0;
  background: none;
  font-size: 25px;
}
.wide {
  width: 100%;
}
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 30px);
  opacity: 0;
  background: var(--deep);
  color: #fff;
  padding: 13px 20px;
  border-radius: 99px;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
footer {
  background: var(--deep);
  color: #fff;
  padding: 42px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p,
footer small {
  margin: 0;
  color: #cbd3ff;
}
@media (max-width: 850px) {
  .desktop-nav,
  .profile-pill {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .mobile-nav.open {
    display: flex;
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    z-index: 20;
    background: var(--deep);
    color: #fff;
    padding: 20px;
    gap: 20px;
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 52px 6vw 75px;
  }
  .conversation-card {
    transform: none;
  }
  .feature-grid,
  .provider-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    margin-top: -30px;
    padding-inline: 5vw;
  }
  .chat-layout {
    grid-template-columns: 1fr;
    margin-inline: 4vw;
  }
  .room-list {
    display: flex;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .room-button {
    min-width: 170px;
  }
  .provider-grid {
    padding-inline: 5vw;
  }
  .price-card.featured {
    transform: none;
  }
  .directory-title {
    align-items: flex-start;
    gap: 20px;
  }
  .trust-row {
    flex-wrap: wrap;
  }
  .page-title {
    padding-inline: 5vw;
  }
  footer {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .topbar {
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .feature {
    padding: 26px;
    display: block;
  }
  .feature-icon {
    display: block;
    margin-bottom: 10px;
  }
  .conversation-card {
    padding: 18px;
  }
  .message {
    max-width: 88%;
  }
  .directory-title {
    display: block;
  }
  .directory-title button {
    margin-top: 10px;
  }
  .searchbar {
    margin-inline: 5vw;
  }
  .searchbar select {
    max-width: 120px;
  }
  .pricing-grid {
    padding-inline: 5vw;
  }
  .profile-pill {
    display: none;
  }
}

/* Approved September 2026 landing-page system */
:root {
  --blue: #174fdb;
  --deep: #143bb8;
  --yellow: #f4c546;
  --pink: #ff456e;
  --cream: #fffafb;
  --ink: #143aab;
  --line: #cdd9ff;
  --periwinkle: #f1f4ff;
  --blush: #fff4f5;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

.approved-topbar {
  height: 112px;
  padding: 12px 4.5vw;
  background: rgba(255, 250, 251, 0.96);
  color: var(--deep);
  border-bottom: 1px solid rgba(205, 217, 255, 0.55);
  backdrop-filter: blur(18px);
}

.approved-topbar .brand-logo {
  width: 205px;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  box-shadow: none;
}

.location-pill {
  margin-left: auto;
  margin-right: 3vw;
  padding: 12px 18px;
  border: 1px solid #b8c8ff;
  border-radius: 10px;
  background: rgba(255,255,255,.66);
  color: var(--deep);
  font-weight: 700;
  font-size: 15px;
}

.location-pill > span:first-child { color: var(--pink); margin-right: 7px; }
.location-pill > span:last-child { margin-left: 8px; }

.approved-topbar .desktop-nav { gap: clamp(16px, 2.4vw, 38px); }
.approved-topbar .desktop-nav button {
  color: var(--deep);
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .015em;
}
.approved-topbar .desktop-nav button:hover { color: var(--pink); }

.join-pill {
  margin-left: 28px;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--pink);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  gap: 10px;
  align-items: center;
}

#home {
  background: var(--cream);
  color: var(--deep);
}

#home::before,
#home::after {
  width: 185px;
  height: 92px;
  opacity: .5;
  background:
    radial-gradient(ellipse at 18% 62%, #dfe7ff 0 23%, transparent 24%),
    radial-gradient(ellipse at 40% 46%, #eef2ff 0 28%, transparent 29%),
    radial-gradient(ellipse at 65% 60%, #d8e2ff 0 28%, transparent 29%),
    radial-gradient(ellipse at 86% 70%, #eef2ff 0 20%, transparent 21%);
  filter: blur(2px);
}
#home::before { left: -42px; bottom: 8px; }
#home::after { right: -35px; top: 4px; }

.directory-hero {
  min-height: calc(100vh - 112px);
  padding: 26px 3.7vw 38px;
  grid-template-columns: minmax(420px, .78fr) minmax(700px, 1.45fr);
  gap: 3.4vw;
  align-items: start;
  background: var(--cream);
  color: var(--deep);
}

.directory-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 520px;
  left: -130px;
  top: 45px;
  border-radius: 52% 48% 54% 46%;
  background: rgba(255, 224, 229, .38);
  pointer-events: none;
}
.directory-hero::after { display: none; }
.directory-hero-copy { padding: 24px 0 0; position: relative; z-index: 1; }

.directory-hero h1 {
  margin: 0 0 18px;
  color: var(--deep);
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: clamp(58px, 5.4vw, 92px);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: none;
}
.directory-hero h1 span { display: block; }
.directory-hero h1 .lowercase-line { padding-top: .05em; }
.directory-hero h1 i {
  color: var(--pink);
  font-family: "Nunito Sans", sans-serif;
  font-size: .72em;
  font-style: normal;
  font-weight: 500;
  margin-left: .08em;
}

.directory-hero-copy > .hero-deck {
  margin: 0 0 14px;
  color: var(--pink);
  font: 700 clamp(25px, 2vw, 35px)/1.02 "Cormorant Garamond", serif;
  letter-spacing: -.02em;
  max-width: 520px;
}
.directory-hero-copy > .hero-body {
  margin: 0;
  color: #2346a0;
  font: 600 14px/1.55 "Nunito Sans", sans-serif;
  max-width: 450px;
}

.hero-search {
  max-width: 500px;
  margin: 18px 0 20px;
  border: 1px solid #b9c8fa;
  border-radius: 9px;
  background: rgba(255,255,255,.82);
  box-shadow: none;
}
.hero-search span { color: var(--deep); }
.hero-search input { color: var(--deep); }
.hero-search button {
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.community-support { max-width: 520px; margin-top: 12px; }
.community-support h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.community-support h2::before,
.community-support h2::after { content: ""; height: 1px; flex: 1; background: #9db3f7; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.support-grid article {
  padding: 0 12px;
  text-align: center;
  border-right: 1px solid #b8c8f7;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-grid article:first-child { padding-left: 0; }
.support-grid article:last-child { border-right: 0; padding-right: 0; }
.support-icon { font-size: 36px; line-height: 1; color: var(--blue); margin-bottom: 8px; }
.support-icon.coral { color: var(--pink); }
.support-grid b { font-size: 11px; text-transform: uppercase; font-weight: 900; }
.support-grid small { margin-top: 6px; font-size: 9px; line-height: 1.35; color: #34529d; }

.home-directory-board {
  margin-top: 0;
  padding: 22px 20px 18px;
  border: 1px solid #c7d4fb;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
  color: var(--deep);
  box-shadow: none;
}
.home-board-head b {
  font-family: "Nunito Sans", sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: var(--deep);
}
.home-board-head span { color: var(--pink); font-weight: 900; text-transform: uppercase; }
.home-board-head button { border-color: #aebff6; background: rgba(255,255,255,.65); color: var(--deep); text-transform: uppercase; }
.home-directory-board > p { color: #2346a0; font-size: 13px; font-weight: 600; }
.home-board-search { background: rgba(255,255,255,.7); border-color: #b4c3f5; }
.home-board-filters { margin: 11px 0 14px; }
.home-board-filters span { background: rgba(255,255,255,.52); border-color: #b9c7f3; padding: 6px 11px; }
.home-board-filters .active { background: var(--pink); border-color: var(--pink); color: #fff; }
.home-provider-grid { grid-template-columns: repeat(4,1fr); gap: 10px; }
.home-provider {
  min-height: 178px;
  padding: 13px 12px;
  border: 1px solid #c9d4f6;
  border-radius: 11px;
  background: rgba(255,249,250,.82);
}
.home-provider-icon { color: var(--pink); font-size: 28px; }
.home-provider h3 { color: var(--deep); font: 800 12px/1.2 "Nunito Sans", sans-serif; }
.starter-badge.yellow,
.starter-badge.pink { background: rgba(255,255,255,.45); color: var(--deep); border: 1px solid #b5c5f7; }
.home-provider small { color: #324e9b; }
.home-provider button { color: var(--pink); background: transparent; border-color: #ff9ab3; }

/* Carry the approved brand system into the functional pages. */
.page-title h1,
.section-heading h2,
.community-proof h2,
.directory-cta h2,
.modal-card h2,
.price-card h2 { font-family: "Bodoni Moda", serif; }
.page-title, .directory-categories, .community-proof { background: var(--cream); }
.primary { background: var(--pink); color: #fff; }
.category-chips button.active, .price-card.featured { border-color: var(--pink); }

@media (max-width: 1200px) {
  .directory-hero { grid-template-columns: minmax(380px,.8fr) minmax(590px,1.2fr); gap: 24px; }
  .directory-hero h1 { font-size: clamp(52px,5.1vw,76px); }
  .support-grid small { display: none; }
}

@media (max-width: 980px) {
  .approved-topbar { height: 86px; padding: 8px 5vw; }
  .approved-topbar .brand-logo { width: 145px; height: 68px; border-radius: 14px; }
  .location-pill, .approved-topbar .desktop-nav, .join-pill { display: none; }
  .approved-topbar .menu-button { display: block; color: var(--deep); }
  .directory-hero { min-height: auto; grid-template-columns: 1fr; padding: 30px 6vw 55px; }
  .directory-hero-copy { max-width: 720px; }
  .directory-hero h1 { font-size: clamp(58px,10vw,84px); }
  .home-directory-board { margin-top: 18px; }
  .support-grid small { display: block; }
}

@media (max-width: 620px) {
  .directory-hero { padding: 24px 18px 42px; }
  .directory-hero::before { width: 420px; height: 390px; left: -180px; }
  .directory-hero h1 { font-size: clamp(46px,15vw,68px); line-height: .98; }
  .directory-hero-copy > .hero-deck { font-size: 26px; }
  .hero-search { display: grid; grid-template-columns: 32px 1fr; padding: 6px; }
  .hero-search button { grid-column: 1 / -1; width: 100%; }
  .community-support h2 { font-size: 11px; }
  .support-grid { gap: 4px; }
  .support-grid article { padding: 0 6px; }
  .support-grid b { font-size: 9px; }
  .support-grid small { display: none; }
  .home-directory-board { padding: 16px 12px; border-radius: 14px; }
  .home-board-head { align-items: flex-start; }
  .home-board-head > div { display: block; }
  .home-board-head b { font-size: 28px; }
  .home-board-head span { display: block; margin-top: 4px; font-size: 11px; }
  .home-board-head button { font-size: 9px; }
  .home-provider-grid { grid-template-columns: repeat(2,1fr); }
  .home-provider { min-height: 170px; }
}

@media (max-width: 390px) {
  .home-provider-grid { grid-template-columns: 1fr; }
  .directory-hero h1 { font-size: 44px; }
}

/* Approved electric-blue directory homepage */
:root {
  --blue: #2156e8;
  --deep: #1335aa;
  --yellow: #ffd329;
  --pink: #ff3f83;
}
body {
  background: var(--blue);
}
.topbar {
  height: 98px;
  background: var(--blue);
  padding: 0 4vw;
}
.brand-logo {
  width: 185px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  border-radius: 4px;
}
.brand-mark {
  display: none;
}
.desktop-nav button {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.profile-pill {
  background: var(--yellow);
  color: var(--deep);
  border: 0;
  font-weight: 700;
}
#home {
  position: relative;
  overflow: hidden;
  background: var(--blue);
}
#home::before,
#home::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 130px;
  opacity: 0.6;
  background:
    radial-gradient(circle at 15% 20%, #aab9ff 0 10px, transparent 11px),
    radial-gradient(circle at 32% 25%, #879cff 0 13px, transparent 14px),
    radial-gradient(circle at 50% 20%, #b8c4ff 0 12px, transparent 13px),
    radial-gradient(circle at 72% 35%, #728cf7 0 15px, transparent 16px),
    radial-gradient(circle at 88% 24%, #a9b7ff 0 11px, transparent 12px),
    radial-gradient(circle at 22% 55%, #7890f8 0 18px, transparent 19px),
    radial-gradient(circle at 48% 58%, #9cabff 0 22px, transparent 23px),
    radial-gradient(circle at 75% 62%, #738af2 0 20px, transparent 21px);
  filter: blur(1px);
}
#home::before {
  left: -35px;
  bottom: 15px;
}
#home::after {
  right: -25px;
  top: 12px;
  transform: scale(0.85);
}
.directory-hero {
  min-height: 720px;
  padding: 45px 4vw 55px;
  grid-template-columns: 34% 66%;
  gap: 28px;
  background: transparent;
  position: relative;
  z-index: 1;
  align-items: start;
}
.directory-hero::after {
  display: none;
}
.directory-hero-copy {
  padding-top: 15px;
}
.directory-hero .eyebrow {
  display: none;
}
.directory-hero h1 {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(54px, 5.4vw, 88px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  margin: 0 0 22px;
  letter-spacing: -0.05em;
}
.directory-hero h1 em {
  color: #fff;
  font-style: normal;
}
.directory-hero-copy > p {
  color: var(--pink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 490px;
}
.hero-search {
  max-width: 520px;
  margin: 28px 0 22px;
}
.hero-search button {
  background: var(--yellow);
  color: var(--deep);
}
.directory-hero .trust-row {
  color: #fff;
  font-size: 12px;
}
.home-directory-board {
  background: #fff;
  color: var(--deep);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(4, 25, 125, 0.22);
  min-width: 0;
}
.home-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.home-board-head > div {
  display: flex;
  gap: 18px;
  align-items: center;
}
.home-board-head b {
  font-size: 27px;
  color: var(--deep);
}
.home-board-head span {
  color: var(--pink);
  font-weight: 700;
}
.home-board-head button {
  border: 1px solid #91a4fa;
  background: #fff;
  color: var(--deep);
  border-radius: 7px;
  padding: 10px 13px;
  font-weight: 700;
}
.home-directory-board > p {
  margin: 7px 0 16px;
  font-size: 13px;
}
.home-board-search {
  border: 1px solid #9caef8;
  border-radius: 9px;
  padding: 12px 14px;
  color: #7f89ad;
}
.home-board-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 18px;
}
.home-board-filters span {
  border: 1px solid #a9b7f0;
  border-radius: 99px;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 700;
}
.home-board-filters .active {
  background: var(--yellow);
  border-color: var(--yellow);
}
.home-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.home-provider {
  border: 1px solid #aebbf3;
  border-radius: 12px;
  padding: 15px 13px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-provider-icon {
  color: var(--pink);
  font-size: 31px;
  height: 36px;
}
.home-provider h3 {
  font-size: 14px;
  line-height: 1.2;
  margin: 8px 0 10px;
  color: var(--deep);
  min-height: 34px;
}
.starter-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 99px;
}
.starter-badge.yellow {
  background: var(--yellow);
  color: var(--deep);
}
.starter-badge.pink {
  background: var(--pink);
  color: #fff;
}
.home-provider small {
  font-size: 8px;
  color: var(--deep);
  margin: 9px 0;
}
.home-provider button {
  width: 100%;
  margin-top: auto;
  background: #fff;
  color: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 6px;
  padding: 8px 5px;
  font-size: 9px;
  font-weight: 700;
}
.directory-categories,
.community-proof {
  background: #fff;
}
.directory-cta {
  background: var(--blue);
}
@media (max-width: 1050px) {
  .directory-hero {
    grid-template-columns: 1fr;
  }
  .home-provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .topbar {
    height: 78px;
  }
  .brand-logo {
    width: 130px;
    height: 70px;
  }
  .directory-hero {
    padding: 32px 5vw 50px;
  }
  .directory-hero h1 {
    font-size: 48px;
  }
  .home-directory-board {
    padding: 16px;
  }
  .home-board-head {
    align-items: flex-start;
  }
  .home-board-head > div {
    display: block;
  }
  .home-board-head span {
    display: block;
    margin-top: 4px;
  }
  .home-board-head button {
    font-size: 9px;
  }
  .home-provider-grid {
    grid-template-columns: 1fr;
  }
}

/* Directory-first landing page */
.directory-hero {
  background: var(--blue);
  color: #fff;
  padding: 78px 7vw 95px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.directory-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 55px solid rgba(255, 216, 79, 0.12);
  border-radius: 50%;
  right: -180px;
  top: -210px;
}
.directory-hero-copy {
  position: relative;
  z-index: 1;
}
.directory-hero .eyebrow {
  color: var(--yellow);
}
.directory-hero h1 {
  font:
    700 clamp(48px, 6vw, 80px)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.045em;
  margin: 18px 0 25px;
}
.directory-hero h1 em {
  color: var(--yellow);
}
.directory-hero-copy > p {
  font-size: 19px;
  line-height: 1.6;
  color: #dfe5ff;
  max-width: 660px;
}
.hero-search {
  background: #fff;
  border-radius: 12px;
  padding: 7px 7px 7px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 23px;
  max-width: 690px;
  box-shadow: 0 15px 45px rgba(2, 13, 70, 0.25);
}
.hero-search span {
  color: var(--blue);
  font-size: 22px;
}
.hero-search input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  padding: 12px 4px;
}
.hero-search button {
  background: var(--yellow);
  color: var(--deep);
  border: 0;
  border-radius: 7px;
  padding: 14px 18px;
  font-weight: 700;
}
.directory-preview {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transform: rotate(1deg);
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-badge {
  font-size: 9px;
  background: var(--yellow);
  color: var(--deep);
  padding: 7px 10px;
  border-radius: 99px;
  font-weight: 700;
}
.save-heart {
  font-size: 30px;
  color: var(--pink);
}
.directory-preview > small {
  display: block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 26px;
}
.directory-preview h2 {
  font:
    700 35px "Playfair Display",
    serif;
  margin: 10px 0;
}
.preview-rating span {
  color: #f5b900;
  letter-spacing: 2px;
}
.preview-rating small {
  color: #7b83a2;
}
.directory-preview blockquote {
  background: #f4f6ff;
  border-left: 3px solid var(--pink);
  margin: 24px 0;
  padding: 18px;
  font:
    italic 17px/1.5 "Playfair Display",
    serif;
}
.reviewer {
  display: flex;
  gap: 11px;
  align-items: center;
}
.reviewer > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}
.reviewer p {
  margin: 0;
}
.reviewer small {
  display: block;
  color: #7b83a2;
  margin-top: 3px;
}
.directory-categories {
  padding: 85px 7vw;
  background: var(--cream);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading h2,
.community-proof h2,
.directory-cta h2 {
  font:
    700 clamp(38px, 5vw, 60px)/1.05 "Playfair Display",
    serif;
  margin: 12px 0 0;
}
.section-heading button {
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 700;
}
.category-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.home-category {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  transition: 0.2s;
  color: var(--ink);
}
.home-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.home-category > span {
  grid-row: 1/3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef1ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.home-category b {
  font:
    700 20px "Playfair Display",
    serif;
}
.home-category small {
  color: #777f9f;
  margin-top: 5px;
}
.community-proof {
  background: #fff;
  padding: 95px 7vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
}
.proof-copy h2 em {
  color: var(--blue);
}
.proof-copy > p {
  color: #697190;
  line-height: 1.7;
  font-size: 17px;
}
.proof-steps article {
  display: flex;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.proof-steps article > span {
  font:
    italic 700 31px "Playfair Display",
    serif;
  color: var(--pink);
}
.proof-steps h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
.proof-steps p {
  margin: 0;
  color: #747c9b;
  line-height: 1.55;
}
.directory-cta {
  text-align: center;
  background: var(--blue);
  color: #fff;
  padding: 95px 7vw;
}
.directory-cta .eyebrow {
  color: var(--yellow);
}
.directory-cta h2 {
  margin: 16px auto 22px;
  max-width: 850px;
}
.directory-cta p {
  color: #d8dfff;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.65;
}
.directory-cta > div {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 850px) {
  .directory-hero {
    grid-template-columns: 1fr;
    padding: 52px 6vw 75px;
  }
  .directory-preview {
    transform: none;
  }
  .category-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-proof {
    grid-template-columns: 1fr;
    padding-inline: 6vw;
  }
}
@media (max-width: 520px) {
  .directory-hero h1 {
    font-size: 47px;
  }
  .hero-search {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .hero-search button {
    grid-column: 1/3;
  }
  .category-card-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    display: block;
  }
  .section-heading button {
    margin-top: 18px;
  }
  .directory-cta > div {
    flex-direction: column;
  }
}
