:root {
  --velvet: #c80f62;
  --velvet-deep: #640330;
  --ink: #323439;
  --muted: #647084;
  --mint: #4cc68a;
  --gold: #ffbd3e;
  --paper: #f6fbf8;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--paper);
  isolation: isolate;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 22px;
  padding: 5px 16px;
  background: #23051b;
  color: #f6b3d0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  animation: slideDown 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.announcement strong {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: var(--header-h);
  padding: 0 40px;
  background: rgb(255 255 255 / 0.92);
  border-bottom: 1px solid rgb(49 64 58 / 0.08);
  backdrop-filter: blur(18px);
  animation: slideDown 800ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.logo-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #272a30;
  font-size: 15px;
  font-weight: 600;
}

.brand small {
  margin-top: 2px;
  color: var(--velvet);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  color: #454d58;
  font-size: 12px;
  font-weight: 500;
}

.nav-links a,
.pro-link {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.pro-link:hover {
  color: var(--velvet);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.pro-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #333942;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.globe {
  width: 13px;
  height: 13px;
  border: 1.6px solid currentColor;
  border-radius: 999px;
  box-shadow: inset 4px 0 0 rgb(0 0 0 / 0.08), inset -4px 0 0 rgb(0 0 0 / 0.08);
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 164px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 9px;
  background: linear-gradient(135deg, #d51067, #b80057);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgb(200 15 98 / 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgb(200 15 98 / 0.34);
}

.download-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 22px);
  overflow: hidden;
}

.hero-bg,
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-bg {
  z-index: -3;
  transform: scale(1.05);
  animation: bgReveal 1500ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-lines {
  z-index: -1;
  opacity: 0;
  mix-blend-mode: multiply;
  transform: translateY(36px) scale(1.08);
  animation: lineSweep 1600ms 450ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.copy-block {
  position: relative;
  z-index: 4;
  width: min(760px, calc(100% - 34px));
  margin: 26px auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(326px, 86vw);
  min-height: 34px;
  margin: 0 0 30px;
  padding: 0 22px;
  border: 1px solid rgb(200 15 98 / 0.34);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.44);
  color: var(--velvet);
  font-size: 12px;
  font-weight: 500;
  animation: riseIn 850ms 430ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 {
  margin: 0;
  color: #303236;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.04;
}

h1 span,
h1 strong {
  display: block;
  opacity: 0;
  transform: translateY(34px) rotateX(18deg);
  transform-origin: 50% 100%;
}

h1 span {
  animation: titleIn 900ms 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

h1 strong {
  color: var(--velvet);
  animation: titleIn 900ms 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lede {
  max-width: 660px;
  margin: 26px auto 0;
  color: #344053;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 400;
  line-height: 1.72;
  animation: riseIn 900ms 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lede strong {
  color: var(--velvet);
  font-weight: 500;
}

.phone-wrap {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -128px;
  width: min(1050px, 92vw);
  opacity: 1;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  animation: phoneEnter 1350ms 1050ms cubic-bezier(0.12, 1.26, 0.38, 1) both;
  will-change: transform;
}

.phone-glow {
  position: absolute;
  inset: auto 13% -2% 13%;
  height: 38%;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(200 15 98 / 0.24), transparent 62%);
  filter: blur(22px);
  opacity: 0;
  animation: glowIn 1100ms 1650ms ease both;
}

.phones {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 48px rgb(24 32 28 / 0.18));
  animation: phoneFloat 5.5s 2500ms ease-in-out infinite;
}

.scribble {
  position: absolute;
  z-index: 4;
  right: clamp(70px, 14vw, 245px);
  bottom: clamp(74px, 18vw, 215px);
  width: 200px;
  opacity: 0;
  transform: translate(18px, -4px) rotate(-3deg);
  animation: fadeSpin 950ms 1700ms ease both;
}

.scribble path {
  fill: none;
  stroke: #25272c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  stroke-dasharray: 315;
  stroke-dashoffset: 315;
  animation: drawPath 1800ms 1900ms ease both;
}

.orb {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  opacity: 0;
  animation:
    popIn 700ms 1350ms cubic-bezier(0.18, 1.7, 0.32, 1) both,
    drift 6s 2300ms ease-in-out infinite;
}

.orb-left {
  left: 8%;
  bottom: 16%;
  width: 28px;
  height: 28px;
  background: var(--mint);
}

.orb-gold {
  left: 27%;
  top: 21%;
  background: var(--gold);
  animation-delay: 1460ms, 2400ms;
}

.orb-pink {
  right: 17%;
  top: 16%;
  background: var(--velvet);
  animation-delay: 1560ms, 2350ms;
}

.orb-right {
  right: 6.5%;
  bottom: 24%;
  width: 24px;
  height: 24px;
  background: #56c98e;
  animation-delay: 1660ms, 2500ms;
}

.professionals-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 40px clamp(28px, 7vw, 88px) 64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  max-width: 1260px;
  margin: 0 auto 88px;
}

.stat-card {
  display: grid;
  min-height: 105px;
  place-items: center;
  padding: 16px;
  border: 2px solid var(--velvet);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgb(200 15 98 / 0.05);
}

.stat-card strong {
  color: var(--velvet);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.95;
}

.stat-card span {
  color: #667085;
  font-size: 14px;
  font-weight: 500;
}

.section-heading {
  max-width: 990px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin: 0 0 26px;
  padding: 0 14px;
  border: 1px solid rgb(200 15 98 / 0.22);
  border-radius: 999px;
  background: #fff8fb;
  color: var(--velvet);
  font-size: 11px;
  font-weight: 500;
}

.section-pill svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-heading h2 {
  margin: 0;
  color: var(--velvet);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.55;
}

.professionals-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 115px);
  max-width: 1080px;
  margin: 0 auto;
}

.profile-phone {
  position: relative;
  justify-self: center;
  width: min(390px, 100%);
  transform-origin: 50% 85%;
}

.profile-phone::after {
  position: absolute;
  right: 8%;
  bottom: 1%;
  left: 8%;
  height: 60px;
  border-radius: 999px;
  background: rgb(28 32 38 / 0.12);
  filter: blur(20px);
  content: "";
  z-index: -1;
}

.profile-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-panel {
  padding-top: 10px;
}

.feature-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 55px;
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  background: var(--velvet);
  color: #fff;
  box-shadow: 0 15px 30px rgb(200 15 98 / 0.18);
}

.feature-icon svg,
.store-buttons svg,
.store-logo {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.store-buttons svg {
  fill: currentColor;
  stroke: none;
}

.store-logo {
  border-radius: 6px;
  object-fit: cover;
}

.feature-item h3 {
  margin: 0 0 12px;
  color: #222838;
  font-size: 22px;
  font-weight: 800;
}

.feature-item p {
  max-width: 520px;
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.download-panel {
  margin-top: 10px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.download-panel > span {
  display: block;
  margin-bottom: 16px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  min-height: 58px;
  padding: 9px 18px;
  border-radius: 9px;
  background: #030303;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.store-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgb(0 0 0 / 0.18);
}

.store-buttons small {
  display: block;
  font-size: 8px;
  font-weight: 500;
}

.reveal-spin {
  opacity: 0;
  transform: translateY(88px) scale(0.78) rotateX(58deg) rotateZ(-8deg);
  transform-origin: 50% 100%;
  transition:
    opacity 780ms ease,
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal-spin.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0) rotateZ(0);
}

.stat-card:nth-child(2),
.feature-item:nth-child(2) {
  --reveal-delay: 90ms;
}

.stat-card:nth-child(3),
.feature-item:nth-child(3) {
  --reveal-delay: 180ms;
}

.stat-card:nth-child(4),
.download-panel {
  --reveal-delay: 270ms;
}

.celebrity-section {
  position: relative;
  overflow: hidden;
  padding: 56px clamp(28px, 7vw, 88px) 54px;
  background:
    radial-gradient(circle at 18% 15%, rgb(200 15 98 / 0.04), transparent 34%),
    #fff7fd;
}

.celebrity-heading {
  margin-bottom: 8px;
}

.celebrity-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

.celebrity-heading > p:last-child {
  max-width: 600px;
}

.celebrity-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.35fr) minmax(320px, 0.95fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.follow-card,
.access-card {
  border: 1px solid rgb(200 15 98 / 0.28);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 20px 50px rgb(200 15 98 / 0.05);
}

.follow-card {
  padding: 28px 30px 30px;
}

.follow-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.velvet-tile {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #d41169, #b60657);
  overflow: hidden;
}

.velvet-tile img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.velvet-tile::after,
.side-mark::after {
  content: none;
}

.popular-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgb(200 15 98 / 0.24);
  border-radius: 999px;
  color: var(--velvet);
  font-size: 11px;
  font-weight: 500;
}

.follow-card h3 {
  margin: 0 0 18px;
  color: #1f2533;
  font-size: 31px;
  font-weight: 500;
}

.follow-card > p,
.access-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.access-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
}

.access-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgb(200 15 98 / 0.16);
  border-radius: 9px;
  background: #fff;
  color: #5c6678;
  font-size: 13px;
}

.mini-icon {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 7px;
  background: var(--velvet);
  color: #fff;
}

.mini-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.start-following {
  display: inline-flex;
  width: 100%;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  background: var(--velvet);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.start-following:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgb(200 15 98 / 0.22);
}

.start-following svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.celebrity-side {
  display: grid;
  gap: 18px;
}

.access-card {
  min-height: 246px;
  padding: 30px 28px;
}

.side-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
}

.side-mark img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.access-card h3 {
  margin: 0 0 12px;
  color: #202638;
  font-size: 23px;
  font-weight: 500;
}

.access-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: #5c6678;
  font-size: 12px;
  list-style: none;
}

.access-card li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--velvet);
  vertical-align: 2px;
  content: "";
}

.content-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.content-chips span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 7px;
  background: #fff1f7;
  color: var(--velvet);
  font-size: 12px;
  font-weight: 500;
}

.celebrity-download {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: none;
  margin: 48px auto 0;
  padding: 18px 16px 0;
  text-align: center;
}

.celebrity-download p {
  margin: 0 0 17px;
  color: #252b39;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.25;
}

.celebrity-download .store-buttons {
  justify-content: center;
}

.celebrity-section .store-buttons a {
  min-width: 142px;
  min-height: 58px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 14px;
}

.celebrity-section .store-buttons svg {
  width: 27px;
  height: 27px;
}

.celebrity-section .store-buttons small {
  font-size: 8px;
}

.celebrity-side .access-card:first-child {
  --reveal-delay: 120ms;
}

.celebrity-side .access-card:last-child {
  --reveal-delay: 220ms;
}

.celebrity-download {
  --reveal-delay: 320ms;
}

.communities-section,
.providers-section,
.why-section {
  position: relative;
  overflow: hidden;
  padding: 76px clamp(28px, 7vw, 88px);
}

.communities-section {
  background: #fff;
}

.providers-section {
  background:
    radial-gradient(circle at 50% 28%, rgb(200 15 98 / 0.05), transparent 36%),
    #fcfbff;
}

.why-section {
  background:
    linear-gradient(90deg, #fff 0 48%, #f9e6f0 48% 75%, #fff 75%),
    #fff;
}

.community-board {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.community-feature,
.community-card,
.provider-card,
.why-card {
  border: 1px solid rgb(200 15 98 / 0.28);
  background: rgb(255 255 255 / 0.86);
  box-shadow: 0 18px 44px rgb(200 15 98 / 0.06);
}

.community-feature {
  grid-row: span 2;
  padding: 28px 30px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgb(22 24 30 / 0.06), rgb(200 15 98 / 0.1)),
    #fff;
  box-shadow:
    0 18px 46px rgb(200 15 98 / 0.18),
    0 0 44px rgb(200 15 98 / 0.08);
}

.community-feature-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.community-emoji {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.featured-badge {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--velvet);
  font-size: 10px;
  font-weight: 600;
}

.community-feature h3,
.community-card h3 {
  margin: 0;
  color: #202638;
  font-size: 30px;
  font-weight: 400;
}

.community-card h3 {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
}

.community-feature > p,
.community-card p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 12px;
}

.community-card p {
  color: var(--velvet);
  font-size: 10px;
}

.member-row {
  display: flex;
  align-items: center;
  margin: 20px 0 24px;
}

.member-row span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-right: -6px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff6a63;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.member-row small {
  margin-left: 18px;
  color: #253041;
  font-size: 12px;
}

.community-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.community-topics span {
  min-height: 74px;
  padding: 15px;
  border-radius: 9px;
  background: rgb(255 255 255 / 0.78);
  color: #667085;
  font-size: 11px;
}

.community-topics strong {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
}

.community-join {
  display: inline-flex;
  width: 100%;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  border-radius: 9px;
  background: var(--velvet);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.community-join:hover,
.provider-cta a:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgb(200 15 98 / 0.2);
}

.community-join svg,
.secondary-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.community-card {
  min-height: 236px;
  padding: 24px;
  border-radius: 10px;
}

.provider-pill {
  background: var(--velvet);
  color: #fff;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto 72px;
}

.provider-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  min-height: 206px;
  padding: 30px;
  border-radius: 14px;
}

.provider-icon,
.why-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 12px;
  background: var(--velvet);
  color: #fff;
}

.provider-icon svg,
.why-icon svg,
.download-floating svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.provider-card h3 {
  margin: 6px 0 24px;
  color: #1f2533;
  font-size: 20px;
  font-weight: 500;
}

.provider-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #667085;
  font-size: 12px;
  list-style: none;
}

.provider-card li::before {
  margin-right: 10px;
  color: var(--velvet);
  content: "\2713";
}

.provider-cta {
  display: grid;
  justify-items: center;
  max-width: 1240px;
  min-height: 220px;
  margin: 0 auto;
  padding: 42px 28px;
  border: 1px solid rgb(200 15 98 / 0.2);
  border-radius: 14px;
  background: #e8abc9;
  text-align: center;
}

.provider-cta h3 {
  margin: 0;
  color: #222838;
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 400;
}

.provider-cta p {
  margin: 18px 0 28px;
  color: #667085;
  font-size: 14px;
}

.provider-cta a,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.provider-cta a,
.primary-action {
  padding: 0 26px;
  background: var(--velvet);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

.why-reasons {
  display: grid;
  gap: 18px;
}

.why-card {
  min-height: 196px;
  padding: 24px;
  border-radius: 10px;
}

.why-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.why-card h3 {
  margin: 0 0 12px;
  color: #202638;
  font-size: 19px;
  font-weight: 500;
}

.why-card p {
  margin: 0 0 18px;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.why-tags span,
.final-chip-row span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff1f7;
  color: var(--velvet);
  font-size: 10px;
  font-weight: 500;
}

.why-phone-wrap {
  position: relative;
  justify-self: center;
  width: min(330px, 100%);
}

.why-phone-wrap img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 34px rgb(20 24 32 / 0.18));
}

.download-floating,
.rating-floating {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  min-width: 126px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 34px rgb(22 26 34 / 0.14);
}

.download-floating {
  top: 54px;
  left: -74px;
}

.rating-floating {
  right: -62px;
  bottom: 118px;
}

.download-floating span,
.rating-floating span {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #ffe2ef;
  color: var(--velvet);
}

.rating-floating span {
  background: #fff1c2;
  color: #f5a400;
  font-size: 18px;
}

.download-floating strong,
.rating-floating strong {
  color: #222838;
  font-size: 18px;
  line-height: 1;
}

.download-floating small,
.rating-floating small {
  color: #667085;
  font-size: 9px;
}

.final-cta {
  display: grid;
  justify-items: center;
  max-width: 1240px;
  margin: 72px auto 0;
  padding: 42px 28px;
  border: 4px solid var(--velvet);
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.final-cta h3 {
  margin: 0;
  color: var(--velvet);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
}

.final-cta p {
  margin: 12px 0 24px;
  color: #394456;
  font-size: 16px;
}

.final-chip-row,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-actions {
  margin-top: 18px;
}

.secondary-action {
  gap: 10px;
  min-width: 150px;
  padding: 0 22px;
  border: 1px solid rgb(200 15 98 / 0.26);
  background: #fff;
  color: #202638;
  font-size: 12px;
  font-weight: 700;
}

.practice-section {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 72px clamp(28px, 5vw, 68px) 62px;
  background:
    radial-gradient(circle at 50% 8%, rgb(200 15 98 / 0.14), transparent 34%),
    linear-gradient(90deg, #070006 0%, #2d0018 52%, #430022 100%);
  color: #fff;
}

.practice-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 0.05), transparent 26%),
    linear-gradient(180deg, rgb(0 0 0 / 0.05), rgb(0 0 0 / 0.18));
  content: "";
  pointer-events: none;
}

.practice-intro,
.practice-join-heading {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  text-align: center;
}

.practice-intro {
  display: grid;
  justify-items: center;
  max-width: 1180px;
}

.practice-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  margin: 0 0 24px;
  padding: 0 12px 0 20px;
  border-radius: 999px;
  background: #fff5eb;
  color: var(--velvet);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.2);
}

.practice-pill span {
  font-size: 16px;
  line-height: 1;
}

.practice-pill strong {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--velvet);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.practice-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 5.8vw, 80px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  white-space: nowrap;
}

.practice-intro h2 span {
  color: var(--velvet);
}

.practice-lede {
  max-width: 850px;
  margin: 0 auto;
  color: rgb(255 255 255 / 0.92);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.practice-note {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgb(255 255 255 / 0.52);
  font-size: 16px;
  line-height: 1.5;
}

.practice-join-heading {
  max-width: 760px;
  margin-top: 72px;
}

.practice-join-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
}

.practice-join-heading p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 16px;
}

.wellness-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 178px;
  gap: 18px 16px;
  max-width: 1304px;
  margin: 40px auto 0;
}

.wellness-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding: 22px 22px 20px;
  border: 1px solid rgb(200 15 98 / 0.42);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgb(20 0 12 / 0.78), rgb(88 7 45 / 0.66)),
    var(--wellness-image);
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 20px 44px rgb(0 0 0 / 0.16);
}

.wellness-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.1), rgb(20 0 12 / 0.5)),
    radial-gradient(circle at 15% 18%, rgb(200 15 98 / 0.26), transparent 28%);
  content: "";
}

.wellness-icon,
.wellness-card h4,
.wellness-card p {
  position: relative;
  z-index: 1;
}

.wellness-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  margin: 0 0 18px;
  border-radius: 13px;
  background: var(--velvet);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 16px 28px rgb(200 15 98 / 0.28);
}

.wellness-card h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
}

.wellness-card p {
  margin: 0;
  color: #8ea0b8;
  font-size: 12px;
  line-height: 1.25;
}

.wellness-therapists {
  --wellness-image: url("https://images.unsplash.com/photo-1544027993-37dbfe43562a?auto=format&fit=crop&w=700&q=80");
}

.wellness-psychologists {
  --wellness-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=700&q=80");
}

.wellness-life {
  --wellness-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=700&q=80");
}

.wellness-career {
  --wellness-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=700&q=80");
}

.wellness-fitness {
  --wellness-image: url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=700&q=80");
}

.wellness-nutrition {
  --wellness-image: url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=700&q=80");
}

.wellness-mindfulness {
  --wellness-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=700&q=80");
}

.wellness-relationship {
  --wellness-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=700&q=80");
}

.wellness-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.wellness-card:nth-child(3) {
  --reveal-delay: 150ms;
}

.wellness-card:nth-child(4) {
  --reveal-delay: 220ms;
}

.wellness-card:nth-child(5) {
  --reveal-delay: 290ms;
}

.wellness-card:nth-child(6) {
  --reveal-delay: 360ms;
}

.wellness-card:nth-child(7) {
  --reveal-delay: 430ms;
}

.wellness-card:nth-child(8) {
  --reveal-delay: 500ms;
}

.practice-benefits {
  position: relative;
  z-index: 1;
  max-width: 1304px;
  margin: 74px auto 0;
}

.practice-benefits-heading {
  margin-bottom: 44px;
  text-align: center;
}

.practice-benefits-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
}

.practice-benefits-heading p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.86fr 0.86fr;
  gap: 16px;
}

.benefit-card {
  min-height: 206px;
  padding: 26px;
  border: 1px solid rgb(200 15 98 / 0.28);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.06);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.benefit-audience {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 404px;
  padding: 34px;
  background:
    radial-gradient(circle at 92% 10%, rgb(200 15 98 / 0.2), transparent 34%),
    rgb(200 15 98 / 0.08);
}

.benefit-rates {
  border-color: rgb(55 175 154 / 0.32);
}

.benefit-booking,
.benefit-reputation {
  border-color: rgb(196 116 29 / 0.34);
  background: rgb(196 67 29 / 0.14);
}

.benefit-privacy,
.benefit-analytics {
  border-color: rgb(112 79 186 / 0.36);
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 48px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.benefit-audience .benefit-icon {
  margin-bottom: 46px;
}

.benefit-card h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-audience h4 {
  max-width: 720px;
  font-size: 31px;
  font-weight: 500;
}

.benefit-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.66);
  font-size: 15px;
  line-height: 1.45;
}

.benefit-audience p {
  max-width: 720px;
  font-size: 20px;
}

.benefit-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 56px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 14px;
  list-style: none;
}

.benefit-card li::before {
  margin-right: 12px;
  color: var(--velvet);
  content: "\2713";
}

.benefit-rates {
  --reveal-delay: 90ms;
}

.benefit-booking {
  --reveal-delay: 170ms;
}

.benefit-privacy {
  --reveal-delay: 250ms;
}

.benefit-reputation {
  --reveal-delay: 330ms;
}

.benefit-analytics {
  --reveal-delay: 410ms;
}

.practice-flow {
  position: relative;
  z-index: 1;
  max-width: 1304px;
  margin: 74px auto 0;
}

.practice-flow-heading,
.love-heading {
  text-align: center;
}

.practice-flow-heading h3,
.love-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 31px);
  font-weight: 700;
}

.practice-flow-heading p,
.love-heading p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 0.52);
  font-size: 12px;
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 54px;
}

.flow-steps::before {
  position: absolute;
  top: 31px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: rgb(255 255 255 / 0.48);
  content: "";
}

.flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--velvet);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 18px 38px rgb(200 15 98 / 0.28);
}

.flow-step small {
  color: rgb(255 255 255 / 0.4);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.flow-step h4 {
  margin: 9px 0 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.flow-step p {
  max-width: 250px;
  margin: 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.love-heading {
  margin-top: 70px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.testimonial-card {
  min-height: 206px;
  padding: 22px 24px;
  border: 1px solid rgb(200 15 98 / 0.28);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.055);
}

.stars {
  color: #ffd21c;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-card > p {
  min-height: 78px;
  margin: 16px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(255 255 255 / 0.09);
  color: rgb(255 255 255 / 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.testimonial-author {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
}

.testimonial-author > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #24445a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: #fff;
  font-size: 11px;
}

.testimonial-author small {
  margin-top: 3px;
  color: rgb(255 255 255 / 0.42);
  font-size: 9px;
}

.testimonial-author em {
  color: #58d9c8;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.practice-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 76px;
  padding: 34px 42px;
  border: 1px solid rgb(200 15 98 / 0.28);
  border-radius: 16px;
  background: rgb(200 15 98 / 0.11);
}

.practice-metrics div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.practice-metrics span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--velvet);
  color: #fff;
  font-size: 22px;
}

.practice-metrics strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.practice-metrics small {
  margin-top: 7px;
  color: rgb(255 255 255 / 0.58);
  font-size: 10px;
}

.practice-final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1304px;
  margin: 76px auto 0;
  padding: 54px 36px 46px;
  border: 1px solid rgb(200 15 98 / 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgb(200 15 98 / 0.12), transparent 35%),
    #fff;
  color: #303236;
  text-align: center;
  box-shadow: 0 22px 70px rgb(0 0 0 / 0.18);
}

.cta-brain {
  display: block;
  margin-bottom: 22px;
  font-size: 40px;
  line-height: 1;
}

.practice-final-cta h3 {
  margin: 0;
  color: #303236;
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.15;
}

.practice-final-cta p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #3d3f45;
  font-size: 20px;
  line-height: 1.45;
}

.practice-final-cta > small {
  margin-top: 16px;
  color: #9c9ca3;
  font-size: 15px;
}

.practice-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.practice-apply,
.practice-call {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.practice-apply {
  min-width: 414px;
  padding: 0 28px;
  background: var(--velvet);
  color: #fff;
  box-shadow: 0 20px 42px rgb(200 15 98 / 0.24);
}

.practice-call {
  min-width: 178px;
  padding: 0 26px;
  border: 2px solid rgb(200 15 98 / 0.28);
  background: #fff;
  color: #41434a;
}

.practice-apply svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.practice-apply:hover,
.practice-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgb(200 15 98 / 0.2);
}

.practice-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 34px;
  color: #85858b;
  font-size: 15px;
}

.practice-trust-row span::first-letter {
  color: var(--velvet);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 58px 68px 48px;
  background: #111827;
  color: #9ca3af;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(38px, 7vw, 92px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.footer-logo strong,
.footer-column h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 8px;
}

.footer-column a {
  color: #9ca3af;
  font-size: 15px;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 18px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: #1f2937;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.social-links img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  object-fit: cover;
}

.flow-step:nth-child(2),
.testimonial-card:nth-child(2) {
  --reveal-delay: 110ms;
}

.flow-step:nth-child(3),
.testimonial-card:nth-child(3) {
  --reveal-delay: 220ms;
}

.flow-step:nth-child(4) {
  --reveal-delay: 330ms;
}

.community-card:nth-child(2),
.provider-card:nth-child(2),
.why-card:nth-child(2) {
  --reveal-delay: 120ms;
}

.community-card:nth-child(3),
.why-card:nth-child(3) {
  --reveal-delay: 220ms;
}

.community-card:nth-child(4) {
  --reveal-delay: 280ms;
}

.community-card:nth-child(5),
.provider-cta,
.why-phone-wrap {
  --reveal-delay: 340ms;
}

.community-card:nth-child(6),
.final-cta {
  --reveal-delay: 420ms;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgReveal {
  from {
    opacity: 0;
    transform: scale(1.12);
    filter: blur(12px) saturate(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0) saturate(1);
  }
}

@keyframes lineSweep {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes phoneEnter {
  0% {
    transform: translateX(-50%) translateY(170px) scale(0.82) rotateX(18deg);
    filter: blur(8px);
  }
  62% {
    transform: translateX(-50%) translateY(-18px) scale(1.025) rotateX(0);
    filter: blur(0);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1) rotateX(0);
    filter: blur(0);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-0.35deg);
  }
}

@keyframes glowIn {
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drift {
  50% {
    translate: 0 -14px;
  }
}

@keyframes fadeSpin {
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .hero {
    min-height: 100vh;
    border: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 0 20px;
  }

  .nav-links,
  .pro-link {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-stage {
    min-height: calc(100vh - var(--header-h) - 22px);
  }

  .copy-block {
    margin-top: 34px;
  }

  .lede {
    max-width: 560px;
  }

  .scribble {
    right: 8vw;
    bottom: 160px;
    width: 150px;
  }

  .professionals-section {
    padding: 34px 22px 56px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin-bottom: 62px;
  }

  .professionals-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-panel {
    width: min(620px, 100%);
    margin: 0 auto;
    padding-top: 0;
  }

  .profile-phone {
    width: min(360px, 80vw);
  }

  .celebrity-section {
    padding: 48px 22px;
  }

  .celebrity-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .communities-section,
  .providers-section,
  .why-section {
    padding: 58px 22px;
  }

  .community-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .community-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .provider-grid,
  .why-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .provider-grid {
    gap: 20px;
    margin-bottom: 42px;
  }

  .why-section {
    background:
      linear-gradient(180deg, #fff 0 38%, #f9e6f0 38% 78%, #fff 78%),
      #fff;
  }

  .why-phone-wrap {
    width: min(300px, 72vw);
  }

  .download-floating {
    left: -32px;
  }

  .rating-floating {
    right: -28px;
  }

  .practice-section {
    min-height: 0;
    padding: 72px 22px 64px;
  }

  .wellness-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
    max-width: 760px;
  }

  .practice-benefits {
    max-width: 760px;
  }

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

  .benefit-audience {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
  }

  .practice-flow {
    max-width: 760px;
  }

  .flow-steps,
  .testimonial-grid,
  .practice-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-steps::before {
    display: none;
  }

  .practice-final-cta {
    max-width: 760px;
  }

  .site-footer {
    width: 100%;
    margin-bottom: 0;
    padding: 48px 32px 40px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .announcement {
    gap: 8px;
    padding-inline: 8px;
    font-size: 8px;
  }

  .announcement span:last-child {
    display: none;
  }

  .site-header {
    padding-inline: 14px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

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

  .download-btn {
    min-width: 42px;
    width: 42px;
    padding: 0;
    border-radius: 10px;
  }

  .download-btn svg {
    width: 18px;
    height: 18px;
  }

  .download-btn {
    font-size: 0;
  }

  .copy-block {
    width: min(330px, calc(100% - 34px));
    margin-top: 26px;
  }

  .eyebrow {
    width: min(280px, 100%);
    min-width: 0;
    min-height: 30px;
    margin-bottom: 22px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 40px);
  }

  .lede {
    max-width: 315px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .phone-wrap {
    width: 148vw;
    bottom: -76px;
  }

  .scribble {
    display: none;
  }

  .orb-left {
    left: 5%;
    bottom: 31%;
  }

  .orb-right {
    right: 5%;
    bottom: 39%;
  }

  .professionals-section {
    padding: 24px 16px 44px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 50px;
  }

  .stat-card {
    min-height: 86px;
    border-radius: 10px;
    padding: 12px 8px;
  }

  .stat-card strong {
    font-size: 34px;
  }

  .stat-card span {
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

  .profile-phone {
    width: min(310px, 90vw);
  }

  .feature-item {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .store-buttons a {
    min-width: 142px;
  }

  .celebrity-section {
    padding: 42px 16px 44px;
  }

  .follow-card,
  .access-card {
    border-radius: 12px;
  }

  .follow-card {
    padding: 22px 18px 20px;
  }

  .follow-card-head {
    margin-bottom: 18px;
  }

  .velvet-tile {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    font-size: 38px;
  }

  .velvet-tile img {
    width: 46px;
    height: 46px;
  }

  .popular-badge {
    min-height: 27px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .follow-card h3 {
    font-size: 25px;
  }

  .access-list {
    gap: 12px;
  }

  .access-list li {
    min-height: 52px;
    align-items: flex-start;
    padding: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .access-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .access-card h3 {
    font-size: 20px;
  }

  .content-chips {
    gap: 9px;
  }

  .celebrity-download p {
    font-size: 16px;
  }

  .communities-section,
  .providers-section,
  .why-section {
    padding: 44px 16px;
  }

  .community-board,
  .community-topics,
  .provider-card {
    grid-template-columns: 1fr;
  }

  .community-feature {
    padding: 22px 18px;
  }

  .community-feature h3 {
    font-size: 25px;
  }

  .community-card {
    min-height: 150px;
    padding: 20px;
  }

  .community-card h3 {
    margin-top: 18px;
  }

  .provider-card {
    gap: 16px;
    min-height: 0;
    padding: 22px 18px;
  }

  .provider-card h3 {
    margin-top: 0;
    font-size: 18px;
  }

  .provider-cta {
    min-height: 0;
    padding: 34px 18px;
  }

  .why-card {
    min-height: 0;
    padding: 20px;
  }

  .why-phone-wrap {
    width: min(260px, 78vw);
  }

  .download-floating,
  .rating-floating {
    min-width: 106px;
    padding: 10px;
  }

  .download-floating {
    top: 38px;
    left: -18px;
  }

  .rating-floating {
    right: -18px;
    bottom: 92px;
  }

  .download-floating span,
  .rating-floating span {
    width: 28px;
    height: 28px;
  }

  .download-floating strong,
  .rating-floating strong {
    font-size: 15px;
  }

  .final-cta {
    margin-top: 44px;
    padding: 30px 16px;
    border-width: 3px;
    border-radius: 14px;
  }

  .final-cta p {
    font-size: 13px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-height: 46px;
  }

  .practice-section {
    min-height: 0;
    padding: 56px 16px 52px;
  }

  .practice-pill {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 11px;
    text-align: center;
  }

  .practice-pill strong {
    min-height: 23px;
    font-size: 9px;
  }

  .practice-intro h2 {
    font-size: 42px;
    line-height: 1.05;
    white-space: normal;
  }

  .practice-lede {
    font-size: 14px;
    line-height: 1.55;
  }

  .practice-note {
    margin-top: 20px;
    font-size: 12px;
  }

  .practice-join-heading {
    margin-top: 60px;
  }

  .practice-join-heading p {
    font-size: 12px;
  }

  .wellness-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
    margin-top: 32px;
  }

  .wellness-card {
    min-height: 148px;
    height: auto;
    padding: 18px;
  }

  .wellness-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 11px;
    font-size: 19px;
  }

  .practice-benefits {
    margin-top: 52px;
  }

  .practice-benefits-heading {
    margin-bottom: 28px;
  }

  .practice-benefits-heading p {
    font-size: 12px;
  }

  .benefits-grid,
  .benefit-card ul {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-audience {
    min-height: 0;
    padding: 22px 18px;
  }

  .benefit-icon,
  .benefit-audience .benefit-icon {
    margin-bottom: 24px;
  }

  .benefit-audience h4 {
    font-size: 22px;
  }

  .benefit-audience p,
  .benefit-card p {
    font-size: 13px;
  }

  .practice-flow {
    margin-top: 52px;
  }

  .flow-steps,
  .testimonial-grid,
  .practice-metrics {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    gap: 24px;
    margin-top: 34px;
  }

  .love-heading {
    margin-top: 48px;
  }

  .testimonial-card > p {
    min-height: 0;
  }

  .testimonial-author {
    grid-template-columns: 38px 1fr;
  }

  .testimonial-author em {
    grid-column: 2;
    text-align: left;
  }

  .practice-metrics {
    margin-top: 42px;
    padding: 24px 18px;
  }

  .practice-final-cta {
    margin-top: 48px;
    padding: 38px 18px 34px;
    border-radius: 16px;
  }

  .practice-final-cta p {
    font-size: 15px;
  }

  .practice-final-cta > small,
  .practice-trust-row {
    font-size: 12px;
  }

  .practice-apply,
  .practice-call {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 14px;
  }

  .practice-trust-row {
    gap: 12px;
  }

  .site-footer {
    padding: 42px 20px 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-spin {
    opacity: 1 !important;
    transform: none !important;
  }
}
