:root {
  --ink: #151518;
  --night: #101820;
  --muted: #687380;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --line: #dfe7ec;
  --coral: #e95d52;
  --coral-dark: #bd4037;
  --teal: #087e8b;
  --mint: #e1f7f2;
  --blush: #ffe7df;
  --gold: #f2be4e;
  --plum: #633659;
  --green: #21a673;
  --red: #b4443c;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.13);
  --soft-shadow: 0 16px 36px rgba(16, 24, 32, 0.08);
  --hero-image: url("assets/hero-client-match.png");
  --provider-image: url("assets/provider-booking.png");
  --studio-image: url("assets/beauty-studio.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8fafb 0%, #eef5f5 42%, #f8f6f3 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

main,
.app-shell {
  max-width: 100%;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(245px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 3vw, 36px);
  border-bottom: 1px solid rgba(223, 231, 236, 0.92);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}

.launch-banner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(8, 126, 139, 0.18);
  background: var(--mint);
  color: #075c64;
  padding: 8px clamp(16px, 3vw, 36px);
  text-align: center;
}

.launch-banner span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 99px;
  background: white;
  color: var(--teal);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-banner strong {
  font-size: 14px;
}

.launch-banner button {
  border: 0;
  background: transparent;
  color: var(--coral-dark);
  font-weight: 900;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: white;
  font-weight: 900;
}

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

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.nav-button,
.primary-action,
.secondary-action,
.glass-action,
.danger-action,
.service-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.nav-button {
  position: relative;
  min-width: 120px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0 12px;
}

.nav-button.active {
  background: var(--night);
  color: white;
}

.notification-dot {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--coral);
}

.top-actions,
.hero-actions,
.decision-actions {
  display: flex;
  gap: 10px;
}

.top-actions {
  justify-content: end;
}

.primary-action,
.secondary-action,
.glass-action,
.danger-action {
  border: 1px solid transparent;
  padding: 0 16px;
}

.primary-action {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
  box-shadow: 0 12px 24px rgba(233, 93, 82, 0.24);
}

.primary-action:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.secondary-action {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.glass-action {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
  backdrop-filter: blur(12px);
}

.danger-action {
  background: #fff3f1;
  border-color: #edc7c1;
  color: var(--red);
}

.primary-action:hover,
.secondary-action:hover,
.glass-action:hover,
.danger-action:hover,
.service-chip:hover {
  transform: translateY(-1px);
}

.full {
  width: 100%;
}

.large {
  min-height: 50px;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.hero,
.provider-hero,
.security-hero {
  position: relative;
  display: grid;
  min-height: 450px;
  margin: 18px clamp(14px, 3vw, 36px) 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.95) 0%, rgba(16, 24, 32, 0.72) 42%, rgba(16, 24, 32, 0.2) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: var(--shadow);
}

.provider-hero {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.68) 48%, rgba(16, 24, 32, 0.18) 100%),
    var(--provider-image);
  background-size: cover;
  background-position: center;
}

.security-hero {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.95) 0%, rgba(16, 24, 32, 0.76) 44%, rgba(16, 24, 32, 0.35) 100%),
    var(--studio-image);
  background-size: cover;
  background-position: center;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: end;
  gap: 28px;
  padding: clamp(24px, 5vw, 58px);
}

.hero-copy {
  max-width: 900px;
}

.hero-subcopy {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

.provider-hero,
.security-hero {
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 18px;
  min-height: 320px;
  padding: clamp(24px, 5vw, 52px);
}

.security-hero {
  display: block;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.provider-hero .eyebrow,
.security-hero .eyebrow {
  color: #98f1e6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-grid;
  min-width: 150px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 750;
}

.hero-proof strong {
  color: white;
  font-size: 20px;
}

.hero-card {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.live-pill,
.availability-card,
.request-state,
.quiet-pill {
  display: inline-flex;
  min-height: 30px;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 99px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
}

.live-pill,
.availability-card {
  background: rgba(255, 255, 255, 0.17);
  color: white;
}

.live-pill span,
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #32d086;
  box-shadow: 0 0 0 5px rgba(50, 208, 134, 0.2);
}

.hero-card h2 {
  font-size: 34px;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-meter span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #98f1e6, var(--coral));
}

.hero-match-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
}

.hero-match-row div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  padding: 12px;
}

.hero-match-row small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-match-row strong {
  display: block;
  font-size: 20px;
}

.service-showcase,
.provider-pitch,
.how-it-works,
.conversion-strip,
.market-proof,
.live-market {
  display: grid;
  gap: 16px;
  margin: 16px clamp(14px, 3vw, 36px) 0;
  border-radius: 8px;
}

.service-showcase {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: stretch;
}

.market-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.market-proof div {
  display: grid;
  min-height: 110px;
  align-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.96);
  padding: 18px;
}

.market-proof strong {
  font-size: 18px;
}

.market-proof span {
  color: var(--muted);
  line-height: 1.35;
}

.section-intro,
.provider-pitch-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  padding: clamp(20px, 3vw, 28px);
}

.compact-intro {
  display: grid;
  align-content: center;
}

.section-intro h2,
.provider-pitch h2 {
  max-width: 680px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.02;
}

.section-intro p,
.provider-pitch p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.5;
}

.visual-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visual-service-card {
  position: relative;
  display: grid;
  min-height: 290px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: var(--night);
  color: white;
  padding: 15px;
  text-align: left;
  box-shadow: var(--soft-shadow);
}

.visual-service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.08) 20%, rgba(16, 24, 32, 0.78) 100%);
}

.visual-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.visual-service-card span,
.visual-service-card strong {
  position: relative;
  z-index: 1;
}

.visual-service-card span {
  font-size: 14px;
  font-weight: 850;
}

.visual-service-card strong {
  margin-top: 5px;
  font-size: 24px;
}

.visual-service-card.active {
  border-color: rgba(233, 93, 82, 0.8);
  box-shadow: 0 18px 44px rgba(233, 93, 82, 0.18);
}

.visual-service-card:hover img {
  transform: scale(1.045);
}

.how-it-works {
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  align-items: stretch;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-steps article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  padding: 18px;
}

.flow-steps article span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.flow-steps h3 {
  margin-bottom: 0;
}

.flow-steps p {
  color: var(--muted);
  line-height: 1.45;
}

.product-grid,
.provider-grid,
.security-grid {
  display: grid;
  gap: 16px;
  padding: 16px clamp(14px, 3vw, 36px) 34px;
}

.product-grid {
  padding-top: 16px;
}

.conversion-strip {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  margin-bottom: 34px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(8, 126, 139, 0.84)),
    var(--night);
  color: white;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 30px);
}

.conversion-strip .eyebrow {
  color: #98f1e6;
}

.conversion-strip h2 {
  max-width: 600px;
  font-size: clamp(28px, 3.4vw, 46px);
}

.conversion-strip p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.conversion-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.conversion-cards article {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.conversion-cards strong {
  font-size: 19px;
}

.conversion-cards span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.live-market {
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
}

.demand-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.demand-board article {
  display: grid;
  align-content: end;
  min-height: 170px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(225, 247, 242, 0.92)),
    var(--paper);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}

.demand-board strong {
  font-size: 21px;
}

.demand-board small {
  color: var(--muted);
  line-height: 1.35;
}

.quiet-pill {
  background: var(--night);
  color: white;
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.account-panel {
  grid-column: span 4;
}

.request-panel {
  grid-column: span 4;
}

.match-panel {
  grid-column: span 4;
}

.chat-panel {
  grid-column: span 6;
}

.payment-panel {
  grid-column: span 6;
}

.provider-grid {
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, 0.8fr) minmax(280px, 0.8fr) minmax(280px, 0.8fr);
}

.provider-pitch {
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  align-items: stretch;
}

.provider-pitch img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.pitch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pitch-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  border-radius: 99px;
  background: var(--mint);
  color: #075c64;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 850;
}

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

.app-panel,
.security-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  padding: 20px;
}

.request-panel {
  box-shadow: var(--shadow);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: white;
  font-weight: 900;
}

.identity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--soft);
  padding: 12px;
}

.identity-card.verified {
  background: var(--mint);
}

.avatar {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: white;
  font-weight: 900;
}

.identity-card strong,
.identity-card span {
  display: block;
}

.identity-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.wide-field {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 96px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(8, 126, 139, 0.74);
  background: white;
  box-shadow: 0 0 0 4px rgba(8, 126, 139, 0.12);
}

.password-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8edf0;
}

.password-meter span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.password-meter span.strength-medium {
  width: 62%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.password-meter span.strength-strong {
  width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 16px;
}

.service-chip {
  justify-content: start;
  border: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--ink);
  padding: 0 12px;
}

.service-chip.active {
  border-color: rgba(8, 126, 139, 0.45);
  background: var(--mint);
  color: #075c64;
  box-shadow: 0 10px 20px rgba(8, 126, 139, 0.12);
}

.finder-card,
.upload-card,
.price-preview,
.match-trust-card,
.review-strip,
.payment-breakdown {
  margin-bottom: 16px;
}

.finder-card,
.upload-card,
.match-trust-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 248, 0.96)),
    var(--paper);
  padding: 14px;
}

.finder-card {
  display: grid;
  gap: 12px;
}

.finder-card strong,
.upload-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.finder-card span,
.upload-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.style-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.style-options button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: var(--muted);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 850;
}

.style-options button.active {
  border-color: rgba(8, 126, 139, 0.32);
  background: var(--mint);
  color: #075c64;
}

.upload-card {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.upload-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-card svg {
  color: var(--teal);
}

.price-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.price-preview article,
.payment-breakdown div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 11px;
}

.price-preview small,
.payment-breakdown span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.price-preview strong,
.payment-breakdown strong {
  font-size: 16px;
}

.place-field {
  margin: 14px 0 16px;
  padding: 0;
  border: 0;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.segmented label {
  display: block;
}

.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.segmented span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.segmented input:checked + span {
  background: var(--night);
  color: white;
}

.budget-field {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
}

.budget-field input {
  grid-column: 1 / -1;
  accent-color: var(--teal);
}

.match-status,
.incoming-request,
.secure-checkout,
.receipt {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 14px;
}

.match-explain {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  border: 1px solid rgba(8, 126, 139, 0.22);
  border-radius: 8px;
  background: var(--mint);
  padding: 14px;
}

.match-explain span {
  color: #075c64;
  line-height: 1.4;
}

.match-status {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.match-status p {
  margin-bottom: 0;
  color: var(--muted);
}

.status-indicator {
  width: 42px;
  height: 6px;
  border-radius: 99px;
  background: var(--line);
}

.match-status.searching .status-indicator {
  background: linear-gradient(90deg, var(--teal), var(--coral));
  animation: glow 800ms ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.provider-queue {
  display: grid;
  gap: 10px;
}

.queue-card {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 12px;
}

.queue-card.active {
  border-color: rgba(233, 93, 82, 0.36);
  background: var(--blush);
}

.queue-card.accepted {
  border-color: rgba(33, 166, 115, 0.32);
  background: var(--mint);
}

.queue-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.queue-top strong {
  font-size: 17px;
}

.score {
  color: #075c64;
  font-weight: 900;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 99px;
  background: var(--soft);
  color: var(--ink);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.match-trust-card {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  background: var(--night);
  color: white;
}

.match-trust-card small,
.match-trust-card span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.match-trust-card strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
}

.match-trust-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-trust-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.match-trust-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #98f1e6;
}

.review-strip {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.review-strip blockquote {
  display: flex;
  gap: 9px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  padding: 12px;
  line-height: 1.4;
}

.review-strip svg {
  color: var(--coral);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.timeline-item {
  display: grid;
  min-height: 62px;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.timeline-item.active {
  border-color: rgba(8, 126, 139, 0.35);
  background: var(--mint);
  color: #075c64;
}

.timeline-item.done {
  border-color: var(--night);
  background: var(--night);
  color: white;
}

.payment-card,
.metrics-grid {
  display: grid;
  gap: 10px;
}

.payment-card {
  grid-template-columns: repeat(3, 1fr);
}

.payment-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.payment-card div,
.metric {
  display: grid;
  align-content: center;
  min-height: 96px;
  gap: 5px;
  border-radius: 8px;
  background: #fbfcfd;
  padding: 13px;
}

.payment-card small,
.metric span {
  color: var(--muted);
  font-weight: 800;
}

.payment-card strong,
.metric strong {
  font-size: 22px;
}

.secure-checkout {
  display: flex;
  align-items: start;
  gap: 12px;
  margin: 12px 0;
  background: var(--mint);
}

.secure-checkout span,
.receipt span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.receipt {
  margin-top: 12px;
  background: var(--mint);
}

.chat-rules {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(8, 126, 139, 0.22);
  border-radius: 8px;
  background: var(--mint);
  padding: 14px;
}

.chat-rules svg {
  color: #075c64;
}

.chat-rules span {
  display: block;
  margin-top: 4px;
  color: #075c64;
  line-height: 1.4;
}

.chat-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 310px;
  margin: 12px 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(251, 252, 253, 0.92), rgba(255, 255, 255, 0.98)),
    white;
  padding: 12px;
}

.chat-placeholder {
  display: grid;
  align-content: center;
  min-height: 100%;
  gap: 6px;
  color: var(--muted);
  text-align: center;
}

.chat-placeholder strong {
  color: var(--ink);
}

.chat-message {
  max-width: 84%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px 12px;
  box-shadow: 0 8px 18px rgba(16, 24, 32, 0.06);
}

.chat-message span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.chat-message p {
  margin: 0;
  line-height: 1.45;
}

.chat-message.from-client {
  justify-self: end;
  border-color: rgba(8, 126, 139, 0.25);
  background: var(--mint);
}

.chat-message.from-beautician {
  justify-self: start;
}

.chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chat-composer textarea {
  min-height: 86px;
  resize: vertical;
}

.blocked-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.blocked-examples button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: var(--muted);
  padding: 0 11px;
  font-weight: 850;
}

.blocked-examples button:hover {
  border-color: rgba(8, 126, 139, 0.28);
  color: #075c64;
}

.incoming-request {
  min-height: 220px;
}

.request-state {
  margin-bottom: 10px;
  background: var(--blush);
  color: #944138;
}

.incoming-request.accepted,
.queue-card.accepted {
  background: var(--mint);
}

.incoming-request.declined {
  background: #fff3f1;
}

.incoming-request p {
  color: var(--muted);
}

.decision-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.profile-score {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 8px;
  background:
    radial-gradient(circle, white 0 45%, transparent 46%),
    conic-gradient(var(--teal) 0 96%, #e8edf0 96% 100%);
  margin-bottom: 14px;
}

.profile-score strong {
  font-size: 38px;
}

.profile-score span {
  color: var(--muted);
  font-weight: 800;
}

.checklist {
  display: grid;
  gap: 9px;
}

.checklist span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}

.checklist svg {
  color: var(--teal);
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 13px;
}

.schedule-list time {
  grid-row: 1 / span 2;
  color: var(--teal);
  font-weight: 900;
}

.schedule-list span {
  color: var(--muted);
  font-size: 13px;
}

.schedule-list .highlight {
  border-color: rgba(233, 93, 82, 0.3);
  background: var(--blush);
}

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

.security-hero h1 {
  max-width: 930px;
}

.security-card {
  box-shadow: var(--soft-shadow);
}

.security-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.security-card p {
  color: var(--muted);
  line-height: 1.5;
}

.audit-panel {
  margin: 0 clamp(14px, 3vw, 36px) 34px;
}

.audit-log {
  display: grid;
  gap: 8px;
}

.audit-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 12px;
}

.audit-row time {
  color: var(--teal);
  font-weight: 900;
}

.audit-row span {
  color: var(--muted);
  font-size: 13px;
}

.account-dialog {
  width: min(430px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 0;
}

.account-dialog::backdrop {
  background: rgba(16, 24, 32, 0.5);
}

.account-dialog form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(410px, calc(100vw - 36px));
  border-radius: 8px;
  background: var(--night);
  color: white;
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  box-shadow: var(--shadow);
}

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

.sticky-cta {
  position: static;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(520px, calc(100vw - 28px));
  margin: 18px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.92);
  color: white;
  padding: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.sticky-cta span {
  flex: 1;
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 750;
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.25;
}

@media (max-width: 1380px) {
  .product-grid,
  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-panel,
  .request-panel,
  .match-panel,
  .chat-panel,
  .payment-panel {
    grid-column: auto;
  }

  .service-showcase,
  .provider-pitch,
  .how-it-works,
  .conversion-strip,
  .live-market {
    grid-template-columns: 1fr;
  }

  .market-proof,
  .flow-steps,
  .conversion-cards,
  .demand-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-panel {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  .topbar {
    position: static;
    grid-template-columns: 1fr;
  }

  .launch-banner {
    display: grid;
    justify-items: center;
  }

  .main-nav,
  .top-actions {
    width: 100%;
    min-width: 0;
  }

  .nav-button,
  .top-actions button {
    flex: 1;
    min-width: 0;
  }

  .top-actions {
    justify-content: stretch;
  }

  .hero,
  .provider-hero {
    grid-template-columns: 1fr;
    min-height: 520px;
    margin: 12px 12px 0;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.58) 48%, rgba(16, 24, 32, 0.9) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: center;
  }

  .provider-hero {
    background:
      linear-gradient(180deg, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.55) 48%, rgba(16, 24, 32, 0.9) 100%),
      var(--provider-image);
    background-size: cover;
    background-position: center;
  }

  .security-hero {
    margin: 12px 12px 0;
  }

  h1 {
    font-size: 35px;
  }

  .product-grid,
  .provider-grid,
  .security-grid,
  .visual-services {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .service-showcase,
  .provider-pitch,
  .how-it-works,
  .conversion-strip,
  .market-proof,
  .live-market {
    margin: 12px 12px 0;
  }

  .hero-proof span {
    flex: 1 1 140px;
  }

  .sticky-cta {
    align-items: stretch;
  }

  .sticky-cta span {
    display: none;
  }

  .sticky-cta .primary-action {
    width: 100%;
  }

  .visual-service-card {
    min-height: 240px;
  }

  .field-grid,
  .service-grid,
  .segmented,
  .price-preview,
  .payment-card,
  .payment-breakdown,
  .chat-composer,
  .metrics-grid,
  .decision-actions,
  .timeline,
  .market-proof,
  .flow-steps,
  .conversion-cards,
  .demand-board {
    grid-template-columns: 1fr;
  }

  .account-panel,
  .request-panel,
  .match-panel,
  .chat-panel,
  .payment-panel {
    grid-column: auto;
  }

  .chat-thread {
    height: 280px;
  }

  .wide-field {
    grid-column: auto;
  }

  .audit-panel {
    margin: 0 12px 24px;
  }

  .audit-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .topbar,
  .launch-banner,
  main,
  .view {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .provider-hero,
  .service-showcase,
  .provider-pitch,
  .how-it-works,
  .conversion-strip,
  .market-proof,
  .live-market,
  .product-grid,
  .provider-grid,
  .security-grid,
  .visual-services {
    width: auto;
    max-width: none;
  }

  .topbar {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
  }

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

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: hidden;
  }

  .nav-button {
    min-height: 38px;
    padding: 0 7px;
    font-size: 13px;
  }

  .nav-button svg {
    width: 16px;
    height: 16px;
  }

  .top-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-actions button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .launch-banner {
    gap: 6px;
    padding: 10px 12px;
  }

  .hero,
  .provider-hero {
    min-height: auto;
    padding: 18px;
  }

  .hero-copy,
  .hero-card,
  .section-intro,
  .provider-pitch-copy,
  .app-panel,
  .visual-service-card,
  .market-proof div,
  .flow-steps article {
    min-width: 0;
    max-width: 100%;
  }

  h1 {
    font-size: 31px;
    line-height: 1.04;
  }

  .section-intro h2,
  .provider-pitch h2 {
    font-size: 28px;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .hero-subcopy,
  .hero-card p,
  .section-intro p {
    overflow-wrap: break-word;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    padding: 16px;
  }
}
