:root {
  color-scheme: light;
  scroll-padding-top: 88px;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-client-menu-open,
body.is-owner-menu-open,
body.is-platform-menu-open {
  overflow: hidden;
}

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

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button-primary,
.button-secondary,
.button-brand,
.button-accept,
.button-reject {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-primary {
  background: #111827;
  color: #fff;
}

.button-secondary {
  border: 1px solid #d6d3d1;
  background: rgba(255, 255, 255, 0.76);
  color: #171717;
}

.button-brand {
  background: var(--brand-primary, #111827);
  color: #fff;
}

.button-accept {
  background: #047857;
  color: #fff;
}

.button-reject {
  background: #be123c;
  color: #fff;
}

.button-primary:hover,
.button-brand:hover,
.button-accept:hover,
.button-reject:hover,
.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.12);
}

.surface-card {
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
  box-shadow: 0 18px 44px rgba(68, 64, 60, 0.07);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #be123c;
}

.pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e7e5e4;
  background: #fafaf9;
  padding: 6px 10px;
  color: #44403c;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.status-pill--accepted {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

.status-pill--pending {
  border-color: #fde68a;
  background: #fffbeb;
  color: #b45309;
}

.status-pill--rejected {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.status-pill--today {
  border-color: #fb7185;
  background: #be123c;
  color: #fff;
}

.status-pill--featured {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.form-panel {
  display: grid;
  gap: 18px;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(68, 64, 60, 0.08);
}

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

label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #262626;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d3d1;
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
  font: inherit;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

input[type="color"] {
  min-height: 46px;
  padding: 5px;
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #f5f5f4;
  color: #a8a29e;
  cursor: not-allowed;
}

.errorlist {
  margin-top: 6px;
  color: #be123c;
  font-size: 0.85rem;
}

.form-help {
  display: block;
  margin-top: 6px;
  color: #78716c;
  font-size: 0.82rem;
  line-height: 1.45;
}

.platform-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(3, 3, 3, 0.76);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.platform-nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.platform-brand {
  color: inherit;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.platform-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 760;
}

.platform-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.platform-links a:hover,
.platform-links a:focus-visible {
  color: #fff;
}

.platform-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.platform-menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.platform-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0%, transparent 68%, rgba(190, 18, 60, 0.12) 68%, rgba(190, 18, 60, 0.12) 100%),
    linear-gradient(135deg, #030303 0%, #080808 52%, #14110f 100%);
  color: #fff;
}

.platform-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.platform-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92vh;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 64px;
}

.platform-hero__copy {
  max-width: 760px;
}

.platform-hero__promise {
  position: absolute;
  right: 0;
  bottom: clamp(48px, 10vw, 120px);
  width: min(30vw, 380px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.platform-hero__promise p {
  color: inherit;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 760;
  line-height: 1.35;
}

.platform-hero__promise p + p {
  margin-top: 14px;
}

.platform-hero__promise span {
  color: #fff;
}

.platform-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(190, 18, 60, 0.2);
  border-left: 4px solid #be123c;
  background: #fff1f2;
  padding: 8px 12px 8px 10px;
  color: #9f1239;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(190, 18, 60, 0.08);
}

.platform-kicker::before {
  display: block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #be123c;
  content: "";
}

.platform-hero .platform-kicker,
.platform-feature-section .platform-kicker,
.platform-growth-section .platform-kicker,
.platform-demo-cta .platform-kicker,
.platform-cta .platform-kicker {
  border-color: rgba(253, 164, 175, 0.32);
  border-left-color: #fda4af;
  background: rgba(253, 164, 175, 0.14);
  color: #fff1f2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.platform-hero .platform-kicker::before,
.platform-feature-section .platform-kicker::before,
.platform-growth-section .platform-kicker::before,
.platform-demo-cta .platform-kicker::before,
.platform-cta .platform-kicker::before {
  background: #fda4af;
}

.platform-hero h1 {
  margin-top: 18px;
  max-width: 820px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.platform-hero p:not(.platform-kicker) {
  margin-top: 24px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.platform-hero .button-primary {
  background: #fff;
  color: #111827;
}

.platform-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.platform-page-ready .platform-hero .platform-kicker {
  animation: platform-hero-rise 560ms ease both;
}

.platform-page-ready .platform-hero h1 {
  animation: platform-hero-rise 680ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.platform-page-ready .platform-hero p:not(.platform-kicker) {
  animation: platform-hero-rise 620ms 170ms ease both;
}

.platform-page-ready .platform-actions {
  animation: platform-hero-rise 600ms 250ms ease both;
}

.platform-page-ready .platform-hero__promise {
  animation: platform-promise-in 760ms 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.platform-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.platform-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--platform-reveal-delay, 0ms);
}

@keyframes platform-hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes platform-promise-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-page-ready .platform-hero .platform-kicker,
  .platform-page-ready .platform-hero h1,
  .platform-page-ready .platform-hero p:not(.platform-kicker),
  .platform-page-ready .platform-actions,
  .platform-page-ready .platform-hero__promise {
    animation: none;
  }

  .platform-reveal,
  .platform-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.platform-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  transform: translateY(-34px);
  overflow: hidden;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #e7e5e4;
  box-shadow: 0 24px 60px rgba(23, 23, 23, 0.12);
}

.platform-proof-strip div {
  display: grid;
  gap: 5px;
  background: #fff;
  padding: 24px;
}

.platform-proof-strip strong {
  color: #111827;
  font-size: 1rem;
  font-weight: 850;
}

.platform-proof-strip span {
  color: #57534e;
  font-size: 0.9rem;
  line-height: 1.45;
}

.platform-exchange {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    #f3f0ec;
  background-size: 48px 48px;
  padding-block: 88px;
}

.platform-exchange__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.18fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.platform-exchange__side h2 {
  margin-top: 12px;
  color: #111827;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.platform-exchange__side ul {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.platform-exchange__side li {
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  padding-top: 12px;
  color: #292524;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 760;
  line-height: 1.45;
}

.platform-exchange__side--result li {
  color: #111827;
  font-weight: 820;
}

.platform-exchange__arrow {
  display: grid;
  min-height: 220px;
  padding-top: clamp(76px, 8vw, 112px);
  place-items: center;
}

.platform-exchange__arrow span {
  position: relative;
  display: grid;
  width: clamp(72px, 7vw, 96px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(17, 24, 39, 0.18);
  border-radius: 999px;
  background: #111827;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.16);
}

.platform-exchange__arrow span::before,
.platform-exchange__arrow span::after {
  position: absolute;
  content: "";
}

.platform-exchange__arrow span::before {
  width: 36%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.platform-exchange__arrow span::after {
  width: 20%;
  aspect-ratio: 1;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateX(36%) rotate(45deg);
}

.platform-section {
  padding-block: 72px;
}

.platform-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.platform-section h2,
.platform-section-heading h2,
.platform-showcase h2,
.platform-cta h2 {
  margin-top: 12px;
  color: #111827;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.platform-section .platform-problem-list__heading {
  margin: 0 0 16px;
  color: #be123c;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.platform-problem-list {
  display: grid;
  gap: 14px;
}

.platform-problem-list p {
  border-left: 3px solid #be123c;
  background: #fff;
  padding: 18px 20px;
  color: #44403c;
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.55;
}

.platform-feature-section {
  background: #111827;
  color: #fff;
  padding-block: 84px;
}

.platform-feature-section h2 {
  color: #fff;
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.platform-feature-grid article {
  min-height: 280px;
  background: #172033;
  padding: 26px;
}

.platform-feature-grid span {
  color: #fda4af;
  font-size: 0.8rem;
  font-weight: 850;
}

.platform-feature-grid h3 {
  margin-top: 64px;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.2;
}

.platform-feature-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 54px;
  align-items: center;
  padding-block: 86px;
}

.platform-showcase__copy p:not(.platform-kicker) {
  margin-top: 18px;
  max-width: 680px;
  color: #57534e;
  font-size: 1.02rem;
  line-height: 1.7;
}

.platform-showcase__copy ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: #292524;
  font-weight: 720;
}

.platform-showcase__copy li {
  border-top: 1px solid #e7e5e4;
  padding-top: 10px;
}

.platform-showcase__actions {
  display: grid;
  gap: 14px;
}

.platform-demo-button {
  position: relative;
  display: grid;
  min-height: 158px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  padding: 24px;
  color: #111827;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.platform-demo-button::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 16px;
  font-size: 2.4rem;
  font-weight: 850;
  line-height: 1;
}

.platform-demo-button span {
  color: #be123c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.platform-demo-button strong {
  max-width: 280px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.platform-demo-button--site {
  background: #f3f0ec;
}

.platform-demo-button--portal {
  background: #111827;
  color: #fff;
}

.platform-demo-button--portal span {
  color: #fda4af;
}

.platform-demo-button:hover {
  border-color: rgba(17, 24, 39, 0.28);
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.14);
  transform: translateY(-3px);
}

.platform-onboarding {
  border-top: 1px solid #e7e5e4;
}

.platform-onboarding__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.platform-onboarding__steps article,
.platform-client-card {
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(68, 64, 60, 0.07);
}

.platform-onboarding__steps strong {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 850;
}

.platform-onboarding__steps p {
  margin-top: 12px;
  color: #57534e;
  font-size: 0.94rem;
  line-height: 1.55;
}

.platform-inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.platform-pricing-section {
  background: #fff;
  padding-block: 86px;
}

.platform-pricing-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 54px;
  align-items: center;
}

.platform-pricing-section h2 {
  max-width: 760px;
  margin-top: 12px;
  color: #111827;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.platform-pricing-section p:not(.platform-kicker) {
  max-width: 650px;
  margin-top: 20px;
  color: #57534e;
  font-size: 1.04rem;
  line-height: 1.7;
}

.platform-pricing-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #e7e5e4;
  box-shadow: 0 24px 60px rgba(68, 64, 60, 0.11);
}

.platform-pricing-card div {
  background: #fffaf3;
  padding: 26px;
}

.platform-pricing-card span,
.platform-start-pricing span {
  color: #be123c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-pricing-card strong {
  display: block;
  margin-top: 14px;
  color: #111827;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.platform-pricing-card p {
  margin-top: 12px;
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.55;
}

.platform-pricing-card .button-primary {
  margin: 18px;
}

.platform-dashboard-promo {
  background: #f3f0ec;
  padding-block: 84px;
}

.platform-dashboard-promo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.platform-dashboard-promo h2 {
  max-width: 760px;
  margin-top: 12px;
  color: #111827;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.platform-dashboard-promo p:not(.platform-kicker) {
  max-width: 640px;
  margin-top: 18px;
  color: #57534e;
  font-size: 1.04rem;
  line-height: 1.7;
}

.platform-dashboard-promo .button-primary {
  margin-top: 28px;
}

.platform-dashboard-card-stack {
  display: grid;
  gap: 14px;
}

.platform-dashboard-card-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
  box-shadow: 0 18px 44px rgba(68, 64, 60, 0.08);
}

.platform-dashboard-card-stack span {
  color: #be123c;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-dashboard-card-stack strong {
  grid-row: span 2;
  color: #111827;
  font-size: 2.4rem;
  font-weight: 900;
}

.platform-dashboard-card-stack p {
  color: #57534e;
  font-size: 0.92rem;
  font-weight: 700;
}

.platform-growth-section {
  background: #111827;
  color: #fff;
  padding-block: 84px;
}

.platform-growth-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.platform-growth-section h2 {
  max-width: 760px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.platform-growth-section p:not(.platform-kicker) {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.7;
}

.platform-growth-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.platform-growth-grid article {
  display: grid;
  min-height: 156px;
  align-content: space-between;
  background: #172033;
  padding: 24px;
}

.platform-growth-grid span {
  color: #fda4af;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-growth-grid strong {
  margin-top: 32px;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.18;
}

.platform-data-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
  padding-block: 86px;
}

.platform-data-section__copy h2 {
  margin-top: 12px;
  color: #111827;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.platform-data-section__copy p:not(.platform-kicker) {
  max-width: 650px;
  margin-top: 20px;
  color: #57534e;
  font-size: 1.04rem;
  line-height: 1.7;
}

.platform-data-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #e7e5e4;
}

.platform-data-grid article {
  display: grid;
  min-height: 180px;
  align-content: space-between;
  background: #fff;
  padding: 24px;
}

.platform-data-grid span {
  color: #be123c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.platform-data-grid strong {
  margin-top: 42px;
  color: #111827;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.platform-data-grid p {
  margin-top: 12px;
  color: #57534e;
  font-size: 0.94rem;
  line-height: 1.55;
}

.platform-demo-header {
  border-bottom: 1px solid #e7e5e4;
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(14px);
}

.platform-demo-nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.platform-demo-brand {
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}

.platform-demo-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #57534e;
  font-size: 0.88rem;
  font-weight: 760;
}

.platform-demo-nav a {
  text-decoration: none;
}

.platform-demo-nav a:hover,
.platform-demo-nav a:focus-visible {
  color: #111827;
}

.platform-dashboard-hero {
  background: #111827;
  color: #fff;
  padding-block: 82px;
}

.platform-dashboard-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 36px;
  align-items: end;
}

.platform-dashboard-hero h1 {
  max-width: 840px;
  margin-top: 14px;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.platform-dashboard-hero p:not(.platform-kicker) {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.platform-dashboard-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.platform-dashboard-note strong {
  font-size: 1rem;
  font-weight: 850;
}

.platform-dashboard-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.platform-dashboard-shell {
  margin-block: 42px 84px;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 28px 80px rgba(68, 64, 60, 0.12);
}

.platform-dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e7e5e4;
  padding: 8px 6px 18px;
}

.platform-dashboard-topbar div {
  display: grid;
  gap: 2px;
}

.platform-dashboard-topbar span,
.platform-dashboard-panel__heading span {
  color: #be123c;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-dashboard-topbar strong {
  color: #111827;
  font-size: 1.15rem;
  font-weight: 900;
}

.platform-dashboard-topbar a {
  color: #111827;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.platform-dashboard-metrics article,
.platform-dashboard-panel,
.platform-dashboard-side section {
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #fafaf9;
}

.platform-dashboard-metrics article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.platform-dashboard-metrics span {
  color: #57534e;
  font-size: 0.82rem;
  font-weight: 760;
}

.platform-dashboard-metrics strong {
  color: #111827;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.platform-dashboard-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #f5f5f4;
  padding: 4px;
}

.platform-dashboard-tabs span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 0 12px;
  color: #57534e;
  font-size: 0.82rem;
  font-weight: 850;
}

.platform-dashboard-tabs .is-active {
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 18px rgba(68, 64, 60, 0.1);
}

.platform-dashboard-tabs strong {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.75rem;
}

.platform-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 16px;
  margin-top: 16px;
}

.platform-dashboard-panel,
.platform-dashboard-side section {
  padding: 18px;
}

.platform-dashboard-side {
  display: grid;
  gap: 16px;
}

.platform-dashboard-panel__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.platform-dashboard-panel__heading h2 {
  margin-top: 4px;
  color: #111827;
  font-size: 1.18rem;
  font-weight: 900;
}

.platform-dashboard-panel__heading small {
  color: #78716c;
  font-size: 0.78rem;
  font-weight: 800;
}

.platform-demo-appointments,
.platform-mini-list,
.platform-staff-pills {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.platform-demo-appointment {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.platform-demo-appointment__time {
  display: grid;
  gap: 3px;
  border-right: 1px solid #e7e5e4;
  padding-right: 12px;
}

.platform-demo-appointment__time strong {
  color: #111827;
  font-size: 1.04rem;
  font-weight: 900;
}

.platform-demo-appointment__time span,
.platform-demo-appointment small,
.platform-mini-list small {
  color: #78716c;
  font-size: 0.78rem;
  font-weight: 760;
}

.platform-demo-appointment h3 {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.platform-demo-appointment p {
  margin-top: 3px;
  color: #57534e;
  font-size: 0.88rem;
  font-weight: 760;
}

.platform-demo-actions {
  display: grid;
  gap: 6px;
}

.platform-demo-actions span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.platform-demo-actions span:first-child {
  background: #047857;
}

.platform-demo-actions span:last-child {
  background: #be123c;
}

.platform-mini-list article {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid #e7e5e4;
  padding-bottom: 10px;
}

.platform-mini-list strong {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 900;
}

.platform-mini-list span {
  color: #44403c;
  font-size: 0.86rem;
  font-weight: 800;
}

.platform-staff-pills {
  display: flex;
  flex-wrap: wrap;
}

.platform-staff-pills span {
  border: 1px solid #e7e5e4;
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: #57534e;
  font-size: 0.78rem;
  font-weight: 850;
}

.platform-staff-pills .is-active {
  background: #111827;
  color: #fff;
}

.platform-demo-empty {
  color: #78716c;
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-demo-cta {
  background: #171717;
  color: #fff;
  padding-block: 76px;
}

.platform-demo-cta h2 {
  max-width: 860px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.platform-demo-cta .button-primary {
  margin-top: 28px;
  background: #fff;
  color: #111827;
}

.platform-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.platform-client-card {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.platform-client-card:hover,
.platform-client-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(68, 64, 60, 0.12);
}

.platform-client-card span {
  color: #be123c;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-client-card strong {
  display: block;
  margin-top: 18px;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 850;
}

.platform-cta {
  background: #171717;
  color: #fff;
  padding-block: 86px;
}

.platform-start-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.platform-cta h2 {
  max-width: 820px;
  color: #fff;
}

.platform-start-section__copy p:not(.platform-kicker) {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.7;
}

.platform-start-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.platform-start-pricing span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 12px;
}

.platform-start-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  color: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

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

.platform-start-form textarea {
  min-height: 132px;
  resize: vertical;
}

.platform-checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #262626;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.35;
}

.platform-checkbox-field input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.platform-checkbox-field span {
  margin-bottom: 0;
}

.platform-website-field[hidden] {
  display: none;
}

.platform-start-form small {
  display: block;
  margin-top: 8px;
  color: #78716c;
  font-size: 0.82rem;
  line-height: 1.45;
}

.platform-start-form .button-primary {
  width: 100%;
  margin-top: 2px;
}

.platform-cta .button-primary {
  background: #111827;
  color: #fff;
}

@media (max-width: 980px) {
  .platform-hero__inner {
    display: grid;
    align-content: center;
  }

  .platform-hero__promise {
    position: static;
    width: min(100%, 540px);
    margin-top: 34px;
  }

  .platform-exchange__inner {
    grid-template-columns: 1fr;
  }

  .platform-exchange__arrow {
    min-height: 96px;
    padding-top: 0;
  }

  .platform-exchange__arrow span {
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .platform-form-grid {
    grid-template-columns: 1fr;
  }

  .platform-nav {
    min-height: 68px;
  }

  .platform-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }

  .platform-links {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 3, 3, 0.94);
    padding: 8px 16px 18px;
    font-size: 0.98rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    backdrop-filter: blur(16px);
  }

  .platform-header.is-menu-open .platform-links {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .platform-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
  }

  .platform-links a:last-child {
    border-bottom: 0;
  }

  .platform-hero,
  .platform-hero__inner {
    min-height: auto;
  }

  .platform-hero {
    background:
      linear-gradient(180deg, #030303 0%, #080808 72%, #14110f 100%);
    overflow-x: clip;
  }

  .platform-hero__inner {
    padding-top: 128px;
    padding-bottom: 72px;
  }

  .platform-hero__copy {
    min-width: 0;
    max-width: 100%;
  }

  .platform-kicker {
    max-width: 100%;
    align-items: flex-start;
    padding: 8px 10px 8px 9px;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    line-height: 1.25;
    white-space: normal;
  }

  .platform-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 3.35rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .platform-hero p:not(.platform-kicker) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .platform-actions .button-primary,
  .platform-actions .button-secondary {
    width: 100%;
    min-width: 0;
  }

  .platform-proof-strip,
  .platform-split,
  .platform-feature-grid,
  .platform-showcase,
  .platform-onboarding__steps,
  .platform-dashboard-promo__inner,
  .platform-pricing-section__inner,
  .platform-growth-section__inner,
  .platform-data-section,
  .platform-start-section,
  .platform-dashboard-hero__inner,
  .platform-dashboard-metrics,
  .platform-dashboard-grid,
  .platform-client-grid {
    grid-template-columns: 1fr;
  }

  .platform-proof-strip {
    transform: translateY(-18px);
  }

  .platform-section,
  .platform-showcase,
  .platform-feature-section,
  .platform-dashboard-promo,
  .platform-pricing-section,
  .platform-growth-section,
  .platform-data-section,
  .platform-exchange,
  .platform-cta {
    padding-block: 58px;
  }

  .platform-feature-grid article {
    min-height: 220px;
  }

  .platform-feature-grid h3 {
    margin-top: 42px;
  }

  .platform-showcase__actions {
    grid-template-columns: 1fr;
  }

  .platform-demo-button {
    min-height: 136px;
  }

  .platform-demo-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .platform-demo-nav nav {
    justify-content: flex-start;
  }

  .platform-dashboard-shell {
    width: min(100% - 20px, 1120px);
    padding: 12px;
  }

  .platform-dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-dashboard-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .platform-dashboard-tabs::-webkit-scrollbar {
    display: none;
  }

  .platform-dashboard-tabs span {
    flex: 0 0 auto;
  }

  .platform-demo-appointment {
    grid-template-columns: 1fr;
  }

  .platform-demo-appointment__time {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid #e7e5e4;
    padding-right: 0;
    padding-bottom: 10px;
  }

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

@media (max-width: 380px) {
  .platform-kicker {
    font-size: 0.62rem;
  }

  .platform-hero h1 {
    font-size: clamp(2.35rem, 11.2vw, 2.65rem);
  }
}
