@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --charcoal: #1c1c1e;
  --dusty-rose: #cda2a6;
  --dusty-rose-dark: #8b555b;
  --blush: #ead7d7;
  --ivory: #faf7f2;
  --sage: #c9d4c5;
  --warm-stone: #dcd4c8;
  --slate: #7d8790;
  --serif: "Cormorant Garamond", serif;
  --sans: "Lato", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #e8e1d9;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: clamp(0.75rem, 2.5vw, 2rem);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(250, 247, 242, 0.95), transparent 30rem),
    linear-gradient(135deg, #eee8e1 0%, #e2d9d0 100%);
  color: var(--charcoal);
  font-family: var(--sans);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.25rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.landing {
  isolation: isolate;
  position: relative;
  width: min(100%, 80rem);
  min-height: min(48rem, calc(100svh - clamp(1.5rem, 5vw, 4rem)));
  display: grid;
  grid-template-columns: minmax(22rem, 0.88fr) minmax(28rem, 1.12fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(125, 112, 100, 0.18);
  background: var(--ivory);
  box-shadow:
    0 2rem 5rem rgba(70, 57, 48, 0.13),
    0 0.25rem 1rem rgba(70, 57, 48, 0.06);
}

.site-header {
  z-index: 5;
  grid-column: 1 / -1;
  min-height: 4.5rem;
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(125, 112, 100, 0.16);
  background: rgba(250, 247, 242, 0.96);
}

.site-tabs {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(1.35rem, 3vw, 2.5rem);
}

.site-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(28, 28, 30, 0.62);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--dusty-rose-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-tab:hover,
.site-tab.is-active {
  color: var(--charcoal);
}

.site-tab:hover::after,
.site-tab.is-active::after {
  transform: scaleX(1);
}

.site-header-cta {
  align-self: center;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--charcoal);
  border-radius: 0.15rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-header-cta:hover:not(:disabled) {
  background: var(--dusty-rose-dark);
  border-color: var(--dusty-rose-dark);
  transform: translateY(-1px);
}

.site-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-header-login {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 1px solid rgba(28, 28, 30, 0.42);
  border-radius: 0.15rem;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-header-login:hover {
  border-color: var(--dusty-rose-dark);
  background: rgba(234, 215, 215, 0.36);
  color: var(--dusty-rose-dark);
  transform: translateY(-1px);
}

.site-tab:focus-visible,
.site-header-cta:focus-visible,
.site-header-login:focus-visible {
  outline: 3px solid rgba(184, 121, 128, 0.34);
  outline-offset: 3px;
}

.pricing-page {
  isolation: isolate;
  position: relative;
  width: min(100%, 80rem);
  min-height: min(48rem, calc(100svh - clamp(1.5rem, 5vw, 4rem)));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(125, 112, 100, 0.18);
  background: var(--ivory);
  box-shadow:
    0 2rem 5rem rgba(70, 57, 48, 0.13),
    0 0.25rem 1rem rgba(70, 57, 48, 0.06);
}

.pricing-hero {
  position: relative;
  min-height: 39rem;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 212, 197, 0.28), transparent 20rem),
    radial-gradient(circle at 14% 88%, rgba(234, 215, 215, 0.38), transparent 22rem),
    #f7f2ec;
}

.pricing-botanical {
  position: absolute;
  z-index: 0;
  top: -8rem;
  right: -4rem;
  width: min(25vw, 18rem);
  height: auto;
  opacity: 0.3;
  transform: rotate(7deg);
}

.pricing-copy,
.pricing-billing-toggle,
.pricing-plans,
.pricing-comparison {
  position: relative;
  z-index: 1;
}

.pricing-copy h1 {
  max-width: 10ch;
}

.pricing-copy h1 > span,
.pricing-copy h1 em {
  white-space: nowrap;
}

.pricing-copy .intro {
  max-width: 42rem;
}

.pricing-billing-toggle {
  width: fit-content;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}

.pricing-billing-toggle > p {
  margin: 0;
  color: #625d59;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-billing-options {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid rgba(125, 112, 100, 0.24);
  border-radius: 2rem;
  background: rgba(250, 247, 242, 0.88);
  box-shadow: 0 0.3rem 0.85rem rgba(70, 57, 48, 0.06);
}

.pricing-billing-options button {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border: 0;
  border-radius: 1.65rem;
  background: transparent;
  color: #625d59;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.pricing-billing-options button span {
  padding: 0.22rem 0.42rem;
  border-radius: 1rem;
  background: #dce8d8;
  color: #466044;
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-billing-options button[aria-pressed="true"] {
  background: var(--charcoal);
  color: var(--ivory);
  box-shadow: 0 0.2rem 0.55rem rgba(70, 57, 48, 0.14);
}

.pricing-billing-options button:focus-visible {
  outline: 3px solid rgba(184, 121, 128, 0.34);
  outline-offset: 3px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(7, auto);
  column-gap: 1.25rem;
  row-gap: 0;
  margin-top: clamp(2.25rem, 5vw, 4rem);
}

@media (max-width: 72rem) and (min-width: 52.0625rem) {
  .pricing-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(7, auto) 1.25rem repeat(7, auto);
  }

  .pricing-plan:nth-child(1),
  .pricing-plan:nth-child(2) {
    grid-row: 1 / span 7;
  }

  .pricing-plan:nth-child(3),
  .pricing-plan:nth-child(4) {
    grid-row: 9 / span 7;
  }

  .pricing-plan:nth-child(odd) {
    grid-column: 1;
  }

  .pricing-plan:nth-child(even) {
    grid-column: 2;
  }

  .pricing-plan-featured {
    transform: none;
  }
}

.pricing-plan {
  min-width: 0;
  display: grid;
  grid-row: 1 / span 7;
  grid-template-rows: subgrid;
  row-gap: 0;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid rgba(125, 112, 100, 0.2);
  background: rgba(250, 247, 242, 0.92);
  box-shadow: 0 1.5rem 3rem rgba(70, 57, 48, 0.1);
}

.pricing-plan-featured {
  position: relative;
  border-color: rgba(139, 85, 91, 0.52);
  background: #fffdf9;
  box-shadow: 0 1.75rem 3.5rem rgba(70, 57, 48, 0.16);
  transform: translateY(-0.8rem);
}

.pricing-popular {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  background: var(--dusty-rose-dark);
  color: var(--ivory);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-label {
  margin: 0;
  color: var(--dusty-rose-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-plan h2 {
  margin: 0.6rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.pricing-price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
}

.pricing-price-inquiry strong {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
}

.pricing-price span {
  color: #726a66;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pricing-price .pricing-amount {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.pricing-price small,
.feature-price-billing {
  display: block;
  margin-top: 0.45rem;
  color: #726a66;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.pricing-price small[hidden],
.feature-price-billing[hidden] {
  display: none;
}

.pricing-trial {
  width: fit-content;
  margin: 0.8rem 0 0;
  padding: 0.3rem 0.5rem;
  background: #dce8d8;
  color: #466044;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.pricing-description {
  min-height: 8.5rem;
  margin: 1.2rem 0 0;
  color: #4f4845;
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing-plan ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  position: relative;
  padding-left: 1.25rem;
  color: #403a37;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-plan li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--dusty-rose-dark);
  transform: rotate(45deg);
}

.pricing-plan-cta {
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pricing-plan-featured .pricing-plan-cta,
.pricing-plan-cta:hover:not(:disabled) {
  background: var(--charcoal);
  color: var(--ivory);
}

.pricing-plan-cta:hover:not(:disabled) {
  transform: translateY(-1px);
}

.pricing-plan-cta:focus-visible {
  outline: 3px solid rgba(184, 121, 128, 0.34);
  outline-offset: 3px;
}

.pricing-plan-cta:disabled,
.pricing-page .site-header-cta:disabled {
  cursor: default;
}

.pricing-custom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.85fr) minmax(11rem, 0.5fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid rgba(139, 85, 91, 0.32);
  background:
    linear-gradient(110deg, rgba(234, 215, 215, 0.34), transparent 48%),
    rgba(250, 247, 242, 0.92);
  box-shadow: 0 1.25rem 2.75rem rgba(70, 57, 48, 0.08);
}

.pricing-custom-copy h2 {
  margin: 0.55rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.pricing-custom-copy > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: #4f4845;
  font-size: 0.9rem;
  line-height: 1.65;
}

.pricing-custom ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-custom li {
  position: relative;
  padding-left: 1.15rem;
  color: #403a37;
  font-size: 0.85rem;
  line-height: 1.45;
}

.pricing-custom li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--dusty-rose-dark);
  transform: rotate(45deg);
}

.pricing-custom-action {
  display: grid;
  gap: 1rem;
}

.pricing-custom-action > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.pricing-comparison {
  margin-top: clamp(4.5rem, 8vw, 7rem);
}

.pricing-comparison-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.pricing-table-scroll {
  margin-top: 2rem;
  overflow-x: auto;
  border: 1px solid rgba(125, 112, 100, 0.2);
  background: rgba(250, 247, 242, 0.9);
}

.pricing-table-scroll:focus-visible {
  outline: 3px solid rgba(184, 121, 128, 0.34);
  outline-offset: 3px;
}

.pricing-comparison table {
  width: 100%;
  min-width: 47rem;
  border-collapse: collapse;
  color: #403a37;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pricing-comparison th,
.pricing-comparison td {
  width: 22%;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(125, 112, 100, 0.14);
  border-bottom: 1px solid rgba(125, 112, 100, 0.14);
  text-align: left;
  vertical-align: top;
}

.pricing-comparison th:first-child {
  width: 34%;
}

.pricing-comparison tr:last-child > * {
  border-bottom: 0;
}

.pricing-comparison tr > *:last-child {
  border-right: 0;
}

.pricing-comparison thead th {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-comparison tbody th {
  font-weight: 700;
}

.feature-title,
.feature-detail,
.feature-price,
.feature-price-tax {
  display: block;
}

.feature-detail {
  margin-top: 0.25rem;
  color: #746c68;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

.feature-price-tax {
  margin-top: 0.2rem;
  color: #746c68;
  font-size: 0.7rem;
  line-height: 1.3;
}

.pricing-comparison .is-featured {
  background: rgba(234, 215, 215, 0.32);
}

.feature-included {
  color: #3e6548;
  font-weight: 700;
}

.feature-not-applicable {
  color: #8c837e;
  font-size: 1.1rem;
}

.pricing-comparison td:has(> .feature-included),
.pricing-comparison td:has(> .feature-not-applicable) {
  text-align: center;
  vertical-align: middle;
}

.brand-panel,
.content-panel {
  position: relative;
  min-width: 0;
}

.brand-panel {
  display: grid;
  place-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 10% 90%, rgba(234, 215, 215, 0.24), transparent 17rem),
    var(--ivory);
  border-right: 1px solid rgba(125, 112, 100, 0.14);
}

.brand-panel::before,
.brand-panel::after {
  content: "";
  position: absolute;
  left: clamp(1.5rem, 4vw, 3.5rem);
  right: clamp(1.5rem, 4vw, 3.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 162, 166, 0.58), transparent);
}

.brand-panel::before {
  top: clamp(1.5rem, 4vw, 3.5rem);
}

.brand-panel::after {
  bottom: clamp(1.5rem, 4vw, 3.5rem);
}

.brand-lockup {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  display: grid;
  justify-items: center;
  animation: reveal 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-cat {
  width: min(32%, 9rem);
  min-width: 5.5rem;
  height: auto;
  margin-bottom: 0.55rem;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-sans {
  font-family: var(--sans);
}

.brand-logo-serif {
  font-family: var(--serif);
}

.content-panel {
  display: grid;
  align-items: center;
  padding: clamp(4rem, 9vw, 8.5rem) clamp(2.5rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 212, 197, 0.27), transparent 21rem),
    radial-gradient(circle at 25% 86%, rgba(234, 215, 215, 0.35), transparent 20rem),
    #f7f2ec;
}

.content {
  position: relative;
  z-index: 2;
  width: min(100%, 37rem);
  animation: reveal 900ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.beta-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.45rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(139, 85, 91, 0.22);
  border-radius: 2rem;
  background: rgba(250, 247, 242, 0.72);
  color: var(--dusty-rose-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(0.5rem);
}

.beta-badge span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--dusty-rose-dark);
  box-shadow: 0 0 0 0.24rem rgba(139, 85, 91, 0.12);
  animation: beta-pulse 2.6s ease-out infinite;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--dusty-rose-dark);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.4vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-wrap: balance;
}

h1 em {
  display: inline;
  color: var(--dusty-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.ornament {
  width: 5.5rem;
  height: 0.75rem;
  display: flex;
  align-items: center;
  margin: clamp(1.8rem, 4vw, 2.8rem) 0;
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--dusty-rose);
}

.ornament span {
  width: 0.48rem;
  height: 0.48rem;
  margin: 0 0.55rem;
  background: var(--dusty-rose);
  transform: rotate(45deg);
}

.intro {
  max-width: 29rem;
  margin: 0;
  color: #4c4a49;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: clamp(2rem, 5vw, 3.3rem);
}

.hero-actions .app-link {
  margin-top: 0;
}

.text-link {
  position: relative;
  padding: 0.65rem 0;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: var(--dusty-rose-dark);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.text-link:focus-visible {
  outline: 3px solid var(--dusty-rose-dark);
  outline-offset: 4px;
}

.app-link {
  width: fit-content;
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: clamp(2rem, 5vw, 3.3rem);
  padding: 0.85rem 1.1rem 0.85rem 1.35rem;
  border: 1px solid var(--charcoal);
  border-radius: 0.2rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.app-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.app-link:hover {
  background: var(--dusty-rose-dark);
  border-color: var(--dusty-rose-dark);
  box-shadow: 0 0.8rem 1.8rem rgba(100, 61, 66, 0.16);
  transform: translateY(-2px);
}

.app-link:hover svg {
  transform: translateX(0.2rem);
}

.app-link:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--dusty-rose-dark);
  outline-offset: 4px;
}

.botanical {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  width: clamp(10rem, 21vw, 17rem);
  height: auto;
  opacity: 0.56;
  user-select: none;
}

.botanical-top {
  top: -6rem;
  right: -3.6rem;
  transform: rotate(7deg);
}

.botanical-bottom {
  right: -5.5rem;
  bottom: -11rem;
  opacity: 0.28;
  transform: rotate(165deg) scale(0.8);
}

.product-story {
  grid-column: 1 / -1;
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 5.5rem);
  overflow: hidden;
  border-top: 1px solid rgba(125, 112, 100, 0.14);
  background: var(--ivory);
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.story-intro .eyebrow,
.preview-copy .eyebrow,
.workflow-heading .eyebrow,
.story-cta .eyebrow {
  margin-bottom: 1.1rem;
}

.product-story h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.product-story h2 em {
  color: var(--dusty-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.story-lead,
.preview-copy > p {
  margin: 0;
  color: #575250;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
}

.feature-card {
  --feature-accent: #8f5b62;
  --feature-accent-line: rgba(143, 91, 98, 0.42);
  position: relative;
  min-height: 19rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(89, 78, 70, 0.14);
  border-radius: 0.15rem;
  background: rgba(242, 238, 232, 0.7);
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: clamp(1.75rem, 3vw, 2.5rem);
  width: 2.8rem;
  height: 1px;
  background: var(--feature-accent-line);
  content: "";
}

.feature-card::after {
  content: none;
}

.feature-card-sage {
  --feature-accent: #697563;
  --feature-accent-line: rgba(105, 117, 99, 0.42);
}

.feature-card-stone {
  --feature-accent: #846e50;
  --feature-accent-line: rgba(132, 110, 80, 0.42);
}

.feature-number {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--feature-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.feature-number::before {
  width: 1.5rem;
  height: 1px;
  background: var(--feature-accent-line);
  content: "";
}

.feature-icon {
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 3.65rem;
  fill: none;
  stroke: var(--feature-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.feature-card-sage .feature-icon {
  stroke: var(--feature-accent);
}

.feature-card-stone .feature-icon {
  stroke: var(--feature-accent);
}

.feature-card:nth-child(1) { --reveal-delay: 0ms; }
.feature-card:nth-child(2) { --reveal-delay: 140ms; }
.feature-card:nth-child(3) { --reveal-delay: 280ms; }

.product-story h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.feature-card h3 {
  font-size: 1.72rem;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.feature-card p {
  max-width: 25rem;
  margin: 1.05rem 0 0;
  color: #5b5552;
  font-size: 0.94rem;
  line-height: 1.75;
}

.product-preview {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(30rem, 1.3fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.preview-copy h2 {
  max-width: 8ch;
  margin-bottom: 1.8rem;
}

.preview-copy > .preview-audience {
  margin-bottom: 0.9rem;
  color: var(--dusty-rose-dark);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 600;
  line-height: 1;
}

.preview-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: #4e4a48;
  font-size: 0.9rem;
}

.preview-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.preview-list span {
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  background: var(--dusty-rose);
  transform: rotate(45deg);
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(77, 66, 59, 0.15);
  border-radius: 0.45rem;
  background: white;
  box-shadow:
    0 2.5rem 5rem rgba(70, 57, 48, 0.14),
    0 0.3rem 1rem rgba(70, 57, 48, 0.08);
  transform: rotate(0.6deg);
}

.app-window-bar {
  height: 2.45rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 0.85rem;
  border-bottom: 1px solid #e7e2dc;
  background: #faf9f7;
}

.window-dots {
  display: flex;
  gap: 0.3rem;
}

.window-dots span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #dfd7ce;
}

.window-dots span:first-child {
  background: var(--dusty-rose);
}

.window-title {
  color: #948d87;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-window-body {
  min-height: 27rem;
  display: grid;
  grid-template-columns: 5.25rem 1fr;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  padding: 1.6rem 0.75rem;
  border-right: 1px solid #eee9e3;
  background: #282729;
}

.sidebar-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.sidebar-mark img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.sidebar-line {
  width: 2.8rem;
  height: 0.32rem;
  border-radius: 2rem;
  background: rgba(250, 247, 242, 0.22);
}

.sidebar-line.short {
  width: 2rem;
}

.sidebar-line.active {
  background: var(--dusty-rose);
}

.app-dashboard {
  min-width: 0;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: #f7f5f2;
}

.dashboard-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-header > div {
  display: grid;
  gap: 0.3rem;
}

.dashboard-kicker,
.dashboard-date {
  color: #8a827d;
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-header strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 600;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.1rem 0 0.55rem;
  color: #6e6762;
  font-size: 0.58rem;
}

.calendar-toolbar > span {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #e4ded7;
  border-radius: 50%;
  background: white;
  color: var(--dusty-rose-dark);
}

.calendar-toolbar small {
  margin-left: auto;
  color: #98908a;
  font-size: 0.52rem;
}

.flow-calendar {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  grid-template-rows: 2.1rem repeat(3, 3.8rem);
  overflow: hidden;
  border: 1px solid #e4ded7;
  border-radius: 0.25rem;
  background: white;
}

.timeline-team-heading {
  display: flex;
  align-items: flex-end;
  padding: 0 0.7rem 0.45rem;
  border-bottom: 1px solid #e9e4de;
  color: #8d8580;
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.timeline-hours {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0.4rem 0.45rem;
  border-bottom: 1px solid #e9e4de;
  border-left: 1px solid #eee9e3;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 1px),
      #f0ece7 calc(25% - 1px),
      #f0ece7 25%
    );
}

.timeline-hours time {
  color: #8d8580;
  font-size: 0.43rem;
}

.timeline-person {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem;
  border-bottom: 1px solid #eee9e3;
}

.timeline-person > :is(span, img) {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1e2e3;
  color: var(--dusty-rose-dark);
  font-size: 0.46rem;
  font-weight: 700;
}

.timeline-person > img {
  object-fit: cover;
  border: 1px solid rgba(125, 112, 100, 0.14);
}

.timeline-person:nth-of-type(3) > span {
  background: #e5ece2;
  color: #65725f;
}

.timeline-person:nth-of-type(5) > span {
  background: #ece7e0;
  color: #756b61;
}

.timeline-person > div {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.timeline-person strong,
.timeline-person small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-person strong {
  font-size: 0.52rem;
  font-weight: 600;
}

.timeline-person small {
  color: #98908a;
  font-size: 0.41rem;
}

.timeline-track {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid #f0ece7;
  border-bottom: 1px solid #eee9e3;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(12.5% - 1px),
      #f3efea calc(12.5% - 1px),
      #f3efea 12.5%
    );
}

.horizontal-appointment,
.horizontal-absence {
  position: absolute;
  z-index: 2;
  top: 0.38rem;
  bottom: 0.38rem;
  left: var(--appointment-start);
  width: var(--appointment-width);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.45rem 0.55rem;
  overflow: hidden;
  border-left: 0.18rem solid var(--dusty-rose-dark);
  border-radius: 0.18rem;
  background: #f4e5e6;
  box-shadow: 0 0.2rem 0.5rem rgba(70, 57, 48, 0.08);
}

.horizontal-appointment strong,
.horizontal-appointment small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-appointment strong {
  font-size: 0.5rem;
}

.horizontal-appointment small {
  color: #756d68;
  font-size: 0.41rem;
}

.appointment-rose {
  border-left-color: var(--dusty-rose-dark);
  background: #f4e5e6;
}

.appointment-sage {
  border-left-color: #70806a;
  background: #e5ece2;
}

.appointment-stone {
  border-left-color: #89796a;
  background: #eee8e1;
}

.studio-appointment-lina {
  --appointment-start: 9%;
  --appointment-width: 30%;
}

.studio-appointment-noah-one {
  --appointment-start: 31%;
  --appointment-width: 23%;
}

.studio-appointment-noah-two {
  --appointment-start: 65%;
  --appointment-width: 25%;
}

.studio-absence-maria {
  --appointment-start: 7%;
  --appointment-width: 57%;
}

.horizontal-absence {
  align-items: center;
  border: 1px dashed #c7bbb0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(220, 212, 200, 0.25),
      rgba(220, 212, 200, 0.25) 0.28rem,
      rgba(250, 247, 242, 0.82) 0.28rem,
      rgba(250, 247, 242, 0.82) 0.56rem
    );
  color: #81766c;
  font-size: 0.45rem;
  font-weight: 600;
}

.timeline-now {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: #6f9871;
  opacity: 0.7;
}

.appointment-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e4ded7;
  border-radius: 0.25rem;
  background: white;
}

.appointment-detail > div {
  display: grid;
  gap: 0.2rem;
}

.appointment-detail > div span {
  color: var(--dusty-rose-dark);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-detail > div strong {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 600;
}

.appointment-detail ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.appointment-detail li {
  padding: 0.25rem 0.4rem;
  border-radius: 1rem;
  background: #f3efea;
  color: #756e69;
  font-size: 0.45rem;
}

.appointment-finder-showcase {
  position: relative;
  margin: clamp(4.5rem, 8vw, 7.5rem) 0;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(125, 112, 100, 0.14);
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 212, 197, 0.34), transparent 22rem),
    linear-gradient(135deg, #f6eeeb 0%, #f9f5f0 56%, #eff3ed 100%);
}

.appointment-finder-showcase::after {
  content: none;
}

.finder-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.finder-heading .eyebrow {
  margin-bottom: 1rem;
  color: var(--dusty-rose-dark);
}

.finder-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.4vw, 4.25rem);
}

.finder-heading > p {
  margin: 0;
  color: #625352;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.finder-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
}

.finder-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid rgba(185, 121, 128, 0.15);
  border-radius: 0.3rem;
  background: rgba(250, 247, 242, 0.78);
}

.finder-step-number {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--dusty-rose-dark);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.finder-steps strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
}

.finder-steps p {
  margin: 0.38rem 0 0;
  color: #6b5b59;
  font-size: 0.78rem;
  line-height: 1.55;
}

.finder-window {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(77, 66, 59, 0.15);
  border-radius: 0.4rem;
  background: white;
  box-shadow:
    0 2rem 4rem rgba(70, 57, 48, 0.12),
    0 0.25rem 0.8rem rgba(70, 57, 48, 0.06);
}

.finder-window-body {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(23rem, 1.2fr);
  gap: 1px;
  background: #e5e1dc;
}

.finder-controls,
.finder-matches {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8f6f3;
}

.finder-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.finder-filter {
  display: grid;
  gap: 0.23rem;
  padding: 0.85rem;
  border: 1px solid #e2ddd6;
  border-radius: 0.3rem;
  background: white;
}

.finder-filter > span,
.finder-time-choice > span,
.finder-matches-heading span {
  color: #8a827d;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-filter strong {
  overflow: hidden;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finder-filter small {
  color: #8d8580;
  font-size: 0.48rem;
}

.finder-time-choice {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e0da;
}

.finder-time-choice > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.55rem;
}

.finder-time-choice i {
  padding: 0.36rem 0.55rem;
  border: 1px solid #dfdad3;
  border-radius: 2rem;
  background: white;
  color: #77706b;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 600;
}

.finder-time-choice i.selected {
  border-color: #2d2b2c;
  background: #2d2b2c;
  color: white;
}

.finder-matches {
  background: white;
}

.finder-matches-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e7e2dc;
}

.finder-matches-heading > div {
  display: grid;
  gap: 0.3rem;
}

.finder-matches-heading strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.finder-matches-heading > small {
  color: var(--dusty-rose-dark);
  font-size: 0.52rem;
  font-weight: 700;
}

.finder-result-grid {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.75rem;
}

.finder-result {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e6e1da;
  border-radius: 0.28rem;
  background: #fbfaf8;
}

.finder-result.selected {
  border-color: rgba(185, 121, 128, 0.36);
  background: #fcf2f2;
}

.finder-result time {
  color: #5f3f43;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.finder-result > div {
  display: grid;
  gap: 0.12rem;
}

.finder-result strong {
  font-size: 0.62rem;
}

.finder-result small {
  color: #8d8580;
  font-size: 0.48rem;
}

.finder-result > span {
  padding: 0.38rem 0.55rem;
  border-radius: 0.2rem;
  background: #2d2b2c;
  color: white;
  font-size: 0.48rem;
  font-weight: 700;
}

.performance-showcase {
  display: grid;
  grid-template-columns: minmax(30rem, 1.3fr) minmax(17rem, 0.7fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.performance-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.8rem;
}

.performance-copy > p {
  margin: 0;
  color: #575250;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.performance-window {
  overflow: hidden;
  border: 1px solid rgba(77, 66, 59, 0.15);
  border-radius: 0.45rem;
  background: white;
  box-shadow:
    0 2.5rem 5rem rgba(70, 57, 48, 0.14),
    0 0.3rem 1rem rgba(70, 57, 48, 0.08);
  transform: rotate(-0.6deg);
}

.performance-dashboard {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: #f7f5f2;
}

.performance-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.performance-header > div {
  display: grid;
  gap: 0.3rem;
}

.performance-header strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 600;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #65745f;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-indicator i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #7f9a77;
  box-shadow: 0 0 0 0.2rem rgba(127, 154, 119, 0.16);
}

.performance-filters {
  display: flex;
  gap: 0.35rem;
  margin: 1.25rem 0 0.7rem;
}

.performance-filters span {
  padding: 0.32rem 0.48rem;
  border: 1px solid #e4ded7;
  border-radius: 0.2rem;
  background: white;
  color: #837b75;
  font-size: 0.46rem;
}

.performance-filters .selected {
  border-color: #2d2b2c;
  background: #2d2b2c;
  color: white;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.performance-stats > div {
  display: grid;
  gap: 0.4rem;
  padding: 0.8rem;
  border: 1px solid #e4ded7;
  border-radius: 0.25rem;
  background: white;
}

.performance-stats span,
.performance-stats small {
  color: #918983;
  font-size: 0.5rem;
}

.performance-stats strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  font-weight: 600;
}

.performance-stats small {
  justify-self: end;
  margin-top: -0.9rem;
}

.performance-charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.performance-chart-card {
  padding: 0.8rem;
  border: 1px solid #e4ded7;
  border-radius: 0.25rem;
  background: white;
}

.performance-chart-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.performance-chart-card > div strong {
  font-size: 0.57rem;
}

.performance-chart-card > div small {
  color: #98908a;
  font-size: 0.43rem;
  text-transform: uppercase;
}

.performance-chart-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.performance-chart-card li {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr) 1.4rem;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.48rem;
}

.performance-chart-card li > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.performance-chart-card li i {
  position: relative;
  height: 0.28rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #eeeae5;
}

.performance-chart-card li i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width);
  border-radius: inherit;
  background: var(--dusty-rose-dark);
}

.performance-chart-card:nth-child(2) li i::after {
  background: #778772;
}

.performance-chart-card li:nth-child(1) i { --bar-width: 92%; }
.performance-chart-card li:nth-child(2) i { --bar-width: 68%; }
.performance-chart-card li:nth-child(3) i { --bar-width: 44%; }

.performance-chart-card:nth-child(2) li:nth-child(1) i { --bar-width: 84%; }
.performance-chart-card:nth-child(2) li:nth-child(2) i { --bar-width: 64%; }
.performance-chart-card:nth-child(2) li:nth-child(3) i { --bar-width: 51%; }

.performance-chart-card li b {
  color: #6f6863;
  font-weight: 600;
  text-align: right;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  margin-inline: calc(clamp(1.5rem, 6vw, 5.5rem) * -1);
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.5rem, 6vw, 5.5rem);
  border-top: 1px solid rgba(125, 112, 100, 0.16);
  border-bottom: 1px solid rgba(125, 112, 100, 0.16);
  background:
    radial-gradient(circle at 8% 12%, rgba(250, 247, 242, 0.66), transparent 22rem),
    linear-gradient(120deg, #e8eee5 0%, #efede7 100%);
}

.workflow-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.role-intro {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  color: #625d59;
  font-size: 0.98rem;
  line-height: 1.75;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1.3rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(125, 112, 100, 0.16);
}

.workflow-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.workflow-list li:nth-child(1) { --reveal-delay: 0ms; }
.workflow-list li:nth-child(2) { --reveal-delay: 100ms; }
.workflow-list li:nth-child(3) { --reveal-delay: 200ms; }

.workflow-list > li > span {
  padding-top: 0.35rem;
  color: var(--dusty-rose-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.workflow-list h3 {
  font-size: 1.45rem;
}

.profile-network-section {
  margin: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(125, 112, 100, 0.14);
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 212, 197, 0.34), transparent 22rem),
    linear-gradient(135deg, #f6eeeb 0%, #f9f5f0 56%, #eff3ed 100%);
}

.profile-network-section + .feature-grid {
  margin-top: 0;
  margin-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.profile-network-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.profile-network-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.7vw, 4.5rem);
}

.profile-network-heading > p {
  margin: 0;
  color: #575250;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.profile-network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.7rem, 5vw, 4.5rem);
}

.profile-showcase-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 112, 100, 0.16);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.4rem 3rem rgba(70, 57, 48, 0.09);
}

.profile-card-cover {
  position: relative;
  min-height: 8.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(205, 162, 166, 0.4), transparent 12rem),
    linear-gradient(120deg, #e7d5d5, #ede8df 58%, #dfe8dc);
}

.profile-card-cover > img {
  position: absolute;
  top: -8.5rem;
  right: -1.6rem;
  width: 12rem;
  opacity: 0.2;
  transform: rotate(14deg);
}

.profile-card-cover > span,
.professional-profile-top > span:first-child {
  color: var(--dusty-rose-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-card-cover > span {
  position: absolute;
  top: 1.2rem;
  left: 1.3rem;
}

.profile-card-content,
.professional-profile-card {
  padding: clamp(1.3rem, 2.7vw, 2rem);
}

.studio-profile-card,
.studio-profile-card .profile-card-content {
  display: flex;
  flex-direction: column;
}

.studio-profile-card .profile-card-content {
  flex: 1;
}

.profile-card-identity,
.professional-profile-identity,
.professional-profile-top,
.profile-studios,
.profile-card-footer {
  display: flex;
  align-items: center;
}

.profile-card-identity {
  position: relative;
  gap: 0.8rem;
  margin-top: -3.25rem;
}

.studio-profile-emblem {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0.35rem solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #2d2b2c;
  box-shadow: 0 0.5rem 1rem rgba(70, 57, 48, 0.14);
}

.studio-profile-emblem img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
}

.profile-card-identity > div:nth-child(2),
.professional-profile-identity > div {
  min-width: 0;
}

.profile-showcase-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.1rem);
  font-weight: 600;
}

.profile-card-identity p,
.professional-profile-identity p {
  margin: 0.12rem 0 0;
  color: #857d77;
  font-size: 0.68rem;
}

.profile-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  padding: 0.35rem 0.48rem;
  border: 1px solid #e3ddd6;
  border-radius: 2rem;
  background: #f9f7f4;
  color: #77706b;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-status i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #7f9a77;
  box-shadow: 0 0 0 0.16rem rgba(127, 154, 119, 0.13);
}

.profile-card-description {
  margin: 1.45rem 0 0;
  color: #5b5653;
  font-size: 0.88rem;
  line-height: 1.72;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.profile-tags span,
.profile-studios > div {
  padding: 0.4rem 0.55rem;
  border: 1px solid #e6e0da;
  border-radius: 2rem;
  background: #f7f4f0;
  color: #716a65;
  font-size: 0.57rem;
}

.profile-card-footer {
  justify-content: space-between;
  gap: 1rem;
  margin: 1.55rem calc(clamp(1.3rem, 2.7vw, 2rem) * -1) calc(clamp(1.3rem, 2.7vw, 2rem) * -1);
  padding: 1rem clamp(1.3rem, 2.7vw, 2rem);
  border-top: 1px solid #e9e3dd;
  background: rgba(245, 241, 236, 0.7);
}

.profile-card-footer > span {
  flex: 0 0 auto;
  color: var(--dusty-rose-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card-footer strong {
  max-width: 18rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
}

.professional-profile-card {
  display: flex;
  flex-direction: column;
}

.professional-profile-top {
  justify-content: space-between;
  gap: 1rem;
}

.professional-profile-identity {
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.professional-profile-identity > img {
  width: 4.8rem;
  height: 4.8rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0.5rem 1rem rgba(70, 57, 48, 0.12);
}

.profile-specialties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.profile-specialties > div {
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid #e7e1db;
  border-radius: 0.25rem;
  background: #f8f5f1;
}

.profile-specialties span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--dusty-rose-dark);
  font-size: 0.48rem;
  font-weight: 700;
}

.profile-specialties strong {
  display: block;
  overflow: hidden;
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-studios {
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.profile-studios > span {
  margin-right: 0.15rem;
  color: #8a827d;
  font-size: 0.58rem;
}

.profile-studios > div {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.professional-profile-card .profile-card-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.studio-profile-card .profile-card-footer {
  margin-top: auto;
}

.personal-calendar-showcase {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(30rem, 1.3fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.personal-calendar-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.8rem;
}

.personal-calendar-copy > .personal-audience {
  margin-bottom: 0.9rem;
  color: var(--dusty-rose-dark);
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  font-weight: 600;
  line-height: 1;
}

.personal-calendar-copy > p {
  margin: 0;
  color: #575250;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.personal-calendar-window {
  overflow: hidden;
  border: 1px solid rgba(77, 66, 59, 0.15);
  border-radius: 0.45rem;
  background: white;
  box-shadow:
    0 2.5rem 5rem rgba(70, 57, 48, 0.14),
    0 0.3rem 1rem rgba(70, 57, 48, 0.08);
  transform: rotate(0.45deg);
}

.personal-calendar-dashboard {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: #f7f5f2;
}

.personal-calendar-header,
.personal-profile {
  display: flex;
  align-items: center;
}

.personal-calendar-header {
  justify-content: space-between;
  gap: 1rem;
}

.personal-profile {
  gap: 0.7rem;
}

.personal-profile img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  object-fit: cover;
}

.personal-profile > div {
  display: grid;
  gap: 0.18rem;
}

.personal-profile strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 600;
}

.freelancer-badge {
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(139, 85, 91, 0.24);
  border-radius: 2rem;
  background: #f4e8e8;
  color: var(--dusty-rose-dark);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin: 1.15rem 0 0.7rem;
}

.studio-filters > span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.34rem 0.48rem;
  border: 1px solid #e4ded7;
  border-radius: 1.5rem;
  background: white;
  color: #756e69;
  font-size: 0.46rem;
}

.studio-filters .selected {
  border-color: #2d2b2c;
  background: #2d2b2c;
  color: white;
}

.studio-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
}

.studio-dot-rose { background: #b36f78; }
.studio-dot-sage { background: #7f9679; }
.studio-dot-stone { background: #9b8875; }

.personal-calendar-toolbar {
  margin-top: 0.7rem;
}

.personal-flow-calendar {
  grid-template-columns: 6.5rem minmax(0, 1fr);
}

.personal-flow-calendar .timeline-hours {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(20% - 1px),
      #f0ece7 calc(20% - 1px),
      #f0ece7 20%
    );
}

.personal-flow-calendar .timeline-track {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(10% - 1px),
      #f3efea calc(10% - 1px),
      #f3efea 10%
    );
}

.personal-studio > span {
  width: 0.65rem;
  height: 0.65rem;
  border: 0;
}

.personal-studio-rose > span { background: #b36f78; }
.personal-studio-sage > span { background: #7f9679; }
.personal-studio-stone > span { background: #9b8875; }

.personal-appointment-nova-one {
  --appointment-start: 10%;
  --appointment-width: 18%;
}

.personal-appointment-nova-two {
  --appointment-start: 76%;
  --appointment-width: 16%;
}

.personal-appointment-bloom {
  --appointment-start: 32%;
  --appointment-width: 18%;
}

.personal-appointment-belle {
  --appointment-start: 54%;
  --appointment-width: 18%;
}

.personal-calendar-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e4ded7;
  border-radius: 0.25rem;
  background: white;
  color: #706964;
  font-size: 0.46rem;
}

.personal-calendar-note span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.personal-calendar-note i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #7f9a77;
  box-shadow: 0 0 0 0.18rem rgba(127, 154, 119, 0.14);
}

.personal-calendar-note small {
  color: #918983;
  font-size: inherit;
}

.workflow-list p {
  margin: 0.5rem 0 0;
  color: #625d59;
  font-size: 0.92rem;
  line-height: 1.65;
}

.boutique-section {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  margin-bottom: clamp(4.5rem, 8vw, 7rem);
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(125, 112, 100, 0.14);
  background:
    radial-gradient(circle at 95% 10%, rgba(201, 212, 197, 0.42), transparent 22rem),
    linear-gradient(135deg, #f5ebe9 0%, #f8f3ed 62%, #eef2eb 100%);
}

.boutique-section .eyebrow {
  margin: 0;
}

.boutique-mark {
  display: grid;
  align-content: space-between;
  gap: 2.2rem;
}

.co-creation-seal {
  width: min(112%, 16rem);
  height: auto;
  margin-inline: auto;
  overflow: visible;
  color: var(--dusty-rose-dark);
}

.seal-ring {
  transform-box: fill-box;
  transform-origin: center;
}

.seal-outer,
.seal-inner {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seal-outer {
  stroke-width: 0.8;
  opacity: 0.52;
}

.seal-inner {
  stroke-width: 0.65;
  opacity: 0.3;
}

.seal-copy,
.seal-caption {
  fill: currentColor;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.23em;
}

.seal-copy {
  font-size: 9px;
}

.seal-caption {
  font-size: 7px;
}

.has-js .boutique-section .seal-draw {
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
}

.has-js .boutique-section .seal-emblem,
.has-js .boutique-section .seal-caption {
  opacity: 0;
}

.has-js .boutique-section .seal-emblem {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.82);
}

.has-js .boutique-section.is-visible .seal-draw {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.has-js .boutique-section.is-visible .seal-ring {
  animation: seal-settle 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.has-js .boutique-section.is-visible .seal-emblem,
.has-js .boutique-section.is-visible .seal-caption {
  opacity: 1;
  transition: opacity 700ms ease 650ms;
}

.has-js .boutique-section.is-visible .seal-emblem {
  transform: scale(1);
  transition:
    opacity 700ms ease 650ms,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 560ms;
}

.boutique-section h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.4vw, 4.1rem);
}

.boutique-section > div > p {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: #575250;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
}

.boutique-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.boutique-principles li {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(139, 85, 91, 0.2);
  border-radius: 2rem;
  background: rgba(250, 247, 242, 0.6);
  color: #6d5b59;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.story-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 2rem;
  margin: 1rem calc(clamp(1.5rem, 6vw, 5.5rem) * -1) calc(clamp(5rem, 9vw, 8rem) * -1);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5.5rem);
  overflow: hidden;
  background: #2d2b2c;
  color: var(--ivory);
}

.story-cta > img {
  position: absolute;
  top: -9rem;
  right: 22%;
  width: 16rem;
  opacity: 0.08;
  transform: rotate(18deg);
}

.story-cta > div,
.story-cta > beta-signup {
  position: relative;
  z-index: 1;
}

.story-cta h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.cta-copy {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: rgba(250, 247, 242, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

.story-cta .eyebrow,
.story-cta h2 em {
  color: #dfb9bc;
}

beta-signup {
  min-width: 0;
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 64rem;
  margin-top: clamp(1rem, 2.5vw, 2rem);
  scroll-margin-top: 2rem;
}

.beta-signup-card {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border: 1px solid rgba(250, 247, 242, 0.2);
  border-radius: 0.35rem;
  background:
    linear-gradient(135deg, rgba(250, 247, 242, 0.98), rgba(245, 235, 233, 0.96));
  color: var(--charcoal);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.18);
}

.beta-signup-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.beta-signup-eyebrow {
  margin: 0;
  color: var(--dusty-rose-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.beta-signup-title {
  max-width: 18ch;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

.beta-signup-description {
  max-width: 44rem;
  margin: 0;
  color: #575250;
  font-size: 0.98rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.beta-signup-form {
  position: relative;
  min-width: 0;
}

.beta-signup-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.4rem;
}

.beta-signup-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.beta-signup-field-textarea,
.beta-signup-field-checkbox,
.beta-signup-privacy {
  grid-column: 1 / -1;
}

.beta-signup-field > label:not(.beta-signup-checkbox-label) {
  color: #3f3b39;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.beta-signup-label-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.beta-signup-required,
.beta-signup-field-error {
  color: #8b3f48;
}

.beta-signup-field :is(input:not([type="checkbox"]), select, textarea) {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(99, 84, 77, 0.28);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.84);
  color: var(--charcoal);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.beta-signup-field :is(input:not([type="checkbox"]), select) {
  min-height: 3.15rem;
  padding: 0.7rem 0.85rem;
}

.beta-signup-field textarea {
  min-height: 8.5rem;
  padding: 0.85rem;
  resize: vertical;
}

.beta-signup-field :is(input:not([type="checkbox"]), select, textarea)::placeholder {
  color: #837a75;
  opacity: 1;
}

.beta-signup-field :is(input:not([type="checkbox"]), select, textarea):hover {
  border-color: rgba(99, 84, 77, 0.48);
}

.beta-signup-field :is(input:not([type="checkbox"]), select, textarea):focus-visible,
.beta-signup-checkbox-label input:focus-visible,
.beta-signup-secondary-button:focus-visible,
.beta-signup-submit:focus-visible,
.beta-signup-email-link:focus-visible,
.beta-signup-privacy-link:focus-visible {
  outline: 3px solid var(--dusty-rose-dark);
  outline-offset: 3px;
}

.beta-signup-field :is(input:not([type="checkbox"]), select, textarea)[aria-invalid="true"] {
  border-color: #8b3f48;
  box-shadow: 0 0 0 1px #8b3f48;
}

.beta-signup-checkbox-label {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  color: #4d4744;
  font-size: 0.86rem;
  line-height: 1.55;
  cursor: pointer;
}

.beta-signup-checkbox-label input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.16rem 0 0;
  accent-color: var(--dusty-rose-dark);
}

.beta-signup-help,
.beta-signup-field-error,
.beta-signup-form-message {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.beta-signup-help {
  color: #726a66;
}

.beta-signup-field-error {
  font-weight: 700;
}

.beta-signup-privacy {
  margin-top: 1.3rem;
}

.beta-signup-privacy-link,
.beta-signup-email-link {
  color: var(--dusty-rose-dark);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.beta-signup-form-message {
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid #8b3f48;
  background: rgba(139, 63, 72, 0.09);
  color: #6f3038;
  font-weight: 700;
}

.beta-signup-submit,
.beta-signup-secondary-button {
  min-height: 3.25rem;
  border: 1px solid var(--charcoal);
  border-radius: 0.2rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.beta-signup-submit {
  width: fit-content;
  max-width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1.35rem;
  background: var(--charcoal);
  color: var(--ivory);
}

.beta-signup-submit:hover:not(:disabled) {
  border-color: var(--dusty-rose-dark);
  background: var(--dusty-rose-dark);
  transform: translateY(-2px);
}

.beta-signup-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.beta-signup-status {
  margin: 0;
  padding: 1.2rem;
  border: 1px solid rgba(250, 247, 242, 0.22);
  color: var(--ivory);
  font-weight: 700;
}

.beta-signup-unavailable,
.beta-signup-success {
  display: grid;
  gap: 1rem;
}

.beta-signup-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 0.35rem;
}

.beta-signup-secondary-button {
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--charcoal);
}

.beta-signup-secondary-button:hover {
  border-color: var(--dusty-rose-dark);
  color: var(--dusty-rose-dark);
}

.beta-signup-honeypot,
.beta-signup-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.legal-footer {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.15rem 1.5rem;
  border-top: 1px solid rgba(125, 112, 100, 0.14);
  background: var(--ivory);
  color: var(--slate);
  font-size: 0.82rem;
}

.legal-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-footer a:hover {
  color: var(--charcoal);
}

.legal-footer a:focus-visible {
  outline: 3px solid var(--dusty-rose-dark);
  outline-offset: 4px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

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

@keyframes beta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 85, 91, 0.28);
  }

  58%,
  100% {
    box-shadow: 0 0 0 0.48rem rgba(139, 85, 91, 0);
  }
}

@keyframes seal-settle {
  from {
    transform: rotate(-12deg) scale(0.94);
  }

  to {
    transform: rotate(0) scale(1);
  }
}

.has-js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .feature-grid.reveal-on-scroll .feature-card,
.has-js .role-list li {
  opacity: 0;
  transform: translateY(2.6rem) scale(0.97);
  filter: blur(0.22rem);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 700ms ease var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.has-js .feature-grid.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.has-js .feature-grid.is-visible .feature-card,
.has-js .workflow-section.is-visible .role-list li {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.has-js .profile-network-section .profile-showcase-card {
  opacity: 0;
  transform: translateY(2rem) scale(0.98);
  transition:
    opacity 700ms ease 220ms,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.has-js .profile-network-section .profile-showcase-card:nth-child(2) {
  transition-delay: 360ms;
}

.has-js .profile-network-section.is-visible .profile-showcase-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.has-js .product-preview .horizontal-appointment,
.has-js .product-preview .horizontal-absence {
  opacity: 0;
  transform: translateX(-0.8rem);
  transition:
    opacity 600ms ease 350ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 350ms;
}

.has-js .product-preview.is-visible .horizontal-appointment,
.has-js .product-preview.is-visible .horizontal-absence {
  opacity: 1;
  transform: translateX(0);
}

.has-js .personal-calendar-showcase .horizontal-appointment {
  opacity: 0;
  transform: translateX(-0.8rem);
  transition:
    opacity 600ms ease 350ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 350ms;
}

.has-js .personal-calendar-showcase.is-visible .horizontal-appointment {
  opacity: 1;
  transform: translateX(0);
}

.has-js .performance-chart-card li i::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 450ms;
}

.has-js .performance-showcase.is-visible .performance-chart-card li i::after {
  transform: scaleX(1);
}

@media (max-width: 52rem) {
  body {
    padding: 0;
    place-items: stretch;
  }

  .landing {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
    border: 0;
    box-shadow: none;
  }

  .pricing-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    border: 0;
    box-shadow: none;
  }

  .pricing-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.5rem clamp(1.5rem, 7vw, 3rem);
  }

  .pricing-copy h1 {
    max-width: 9ch;
  }

  .pricing-copy h1 > span,
  .pricing-copy h1 em {
    white-space: normal;
  }

  .pricing-plans {
    max-width: 38rem;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.25rem;
    margin-right: auto;
    margin-left: auto;
  }

  .pricing-plan {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
  }

  .pricing-plan-featured {
    transform: none;
  }

  .pricing-custom {
    max-width: 38rem;
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .pricing-custom-action > p {
    text-align: left;
  }

  .pricing-description {
    min-height: 0;
  }

  .site-header {
    min-height: 4.25rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .brand-panel {
    min-height: 17rem;
    padding: 2.25rem 1.5rem 1.6rem;
    border-right: 0;
    border-bottom: 1px solid rgba(125, 112, 100, 0.14);
  }

  .brand-panel::before {
    top: 1rem;
  }

  .brand-panel::after {
    bottom: 1rem;
  }

  .brand-lockup {
    width: min(74vw, 19rem);
  }

  .content-panel {
    align-items: center;
    padding: clamp(3rem, 12vw, 5rem) clamp(1.5rem, 7vw, 3rem);
  }

  .content {
    width: min(100%, 34rem);
    margin: 0 auto;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .botanical-top {
    top: -7rem;
    right: -5rem;
  }

  .botanical-bottom {
    display: none;
  }

  .product-story {
    padding: 4.5rem 1.5rem;
  }

  .story-intro,
  .product-preview,
  .finder-heading,
  .profile-network-heading,
  .profile-network-grid,
  .personal-calendar-showcase,
  .performance-showcase,
  .workflow-section,
  .boutique-section {
    grid-template-columns: 1fr;
  }

  .story-intro {
    gap: 1.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 2.5rem;
  }

  .product-preview {
    gap: 3rem;
  }

  .appointment-finder-showcase {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    padding: 2.5rem 1rem 1rem;
  }

  .finder-heading {
    gap: 1.5rem;
  }

  .finder-heading h2 {
    max-width: 13ch;
  }

  .finder-steps,
  .finder-window-body {
    grid-template-columns: 1fr;
  }

  .finder-steps {
    gap: 0.5rem;
  }

  .personal-calendar-showcase {
    gap: 3rem;
  }

  .performance-showcase {
    gap: 3rem;
  }

  .performance-copy {
    order: -1;
  }

  .preview-copy h2 {
    max-width: 10ch;
  }

  .workflow-section {
    gap: 3rem;
  }

  .profile-network-section {
    padding: 2.5rem 1.5rem;
  }

  .profile-network-heading,
  .profile-network-grid {
    gap: 1.8rem;
  }

  .boutique-section {
    gap: 1.4rem;
    padding: 2.2rem 1.5rem;
  }

  .boutique-mark {
    gap: 1.8rem;
  }

  .co-creation-seal {
    width: min(72vw, 13rem);
    margin: 0 auto 0.7rem;
  }

  .story-cta {
    grid-template-columns: 1fr;
    align-items: start;
    margin-right: -1.5rem;
    margin-bottom: -4.5rem;
    margin-left: -1.5rem;
    padding: 4rem 1.5rem;
  }

  .beta-signup-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) {
  .site-header {
    min-height: 4.25rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .site-tabs {
    flex: 1 1 auto;
    min-height: 2.75rem;
    gap: clamp(0.75rem, 3vw, 1.35rem);
  }

  .site-tab {
    font-size: clamp(0.88rem, 3.3vw, 1rem);
    white-space: nowrap;
  }

  .site-header-actions {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
  }

  .site-header-cta,
  .site-header-login {
    width: auto;
    min-height: 2.5rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 24rem) {
  .brand-panel {
    min-height: 14rem;
  }

  .profile-card-identity {
    align-items: flex-start;
  }

  .profile-card-identity > .profile-status {
    display: none;
  }

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

  .profile-card-footer strong {
    text-align: left;
  }

  .profile-specialties {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 3.7rem);
  }

  .app-link {
    width: 100%;
  }

  .beta-signup-card {
    padding: 1.25rem 1rem;
  }

  .beta-signup-submit,
  .beta-signup-secondary-button {
    width: 100%;
  }

  .beta-signup-fallback-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-window-body {
    grid-template-columns: 3.4rem 1fr;
  }

  .app-sidebar {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }

  .sidebar-line {
    width: 2rem;
  }

  .sidebar-line.short {
    width: 1.4rem;
  }

  .dashboard-date {
    display: none;
  }

  .app-dashboard {
    padding: 1rem 0.65rem;
  }

  .timeline-person small,
  .appointment-detail ul {
    display: none;
  }

  .flow-calendar {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .timeline-person {
    gap: 0.3rem;
    padding: 0.4rem;
  }

  .timeline-person > :is(span, img) {
    width: 1.15rem;
    height: 1.15rem;
  }

  .timeline-person strong {
    font-size: 0.45rem;
  }

  .horizontal-appointment {
    padding: 0.35rem;
  }

  .horizontal-appointment strong {
    font-size: 0.44rem;
  }

  .horizontal-appointment small {
    display: none;
  }

  .performance-dashboard {
    padding: 1rem 0.65rem;
  }

  .finder-filter-grid {
    grid-template-columns: 1fr;
  }

  .finder-controls,
  .finder-matches {
    padding: 1rem 0.75rem;
  }

  .finder-result {
    grid-template-columns: 2.8rem 1fr auto;
    gap: 0.5rem;
    padding: 0.6rem;
  }

  .personal-calendar-dashboard {
    padding: 1rem 0.65rem;
  }

  .studio-filters > span:nth-child(4) {
    display: none;
  }

  .personal-flow-calendar {
    grid-template-columns: 5.2rem minmax(0, 1fr);
  }

  .personal-studio small,
  .personal-calendar-note small {
    display: none;
  }

  .performance-filters span:first-child,
  .performance-filters span:nth-child(2) {
    display: none;
  }

  .performance-chart-card li {
    grid-template-columns: 2.5rem minmax(0, 1fr) 1.1rem;
    gap: 0.25rem;
  }
}

@media (max-height: 43rem) and (min-width: 52.0625rem) {
  .landing {
    min-height: 39rem;
  }

  .brand-panel,
  .content-panel {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

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

  .has-js .reveal-on-scroll,
  .has-js .feature-grid.reveal-on-scroll .feature-card,
  .has-js .role-list li,
  .has-js .profile-network-section .profile-showcase-card,
  .has-js .product-preview .horizontal-appointment,
  .has-js .product-preview .horizontal-absence,
  .has-js .personal-calendar-showcase .horizontal-appointment {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .has-js .performance-chart-card li i::after {
    transform: scaleX(1);
  }

  .has-js .boutique-section .seal-draw {
    stroke-dashoffset: 0;
  }

  .has-js .boutique-section .seal-emblem,
  .has-js .boutique-section .seal-caption {
    opacity: 1;
  }

  .has-js .boutique-section .seal-emblem {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  .landing,
  .brand-panel,
  .brand-panel::before,
  .brand-panel::after {
    border-color: var(--charcoal);
  }

  .intro {
    color: var(--charcoal);
  }
}
