@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@300;700&family=Plus+Jakarta+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400&display=swap');

/* === Custom Properties === */
:root {
  --wsp-bg-light: #FAF7F3;
  --wsp-bg-cream: #F0E8DC;
  --wsp-bg-dark: #0D2E35;
  --wsp-bg-dark-alt: #132F37;
  --wsp-bg-teal: #0B4A55;
  --wsp-bg-white: #FFFFFF;
  --wsp-text-dark-primary: #F0EBE3;
  --wsp-text-dark-muted: #9ABEC4;
  --wsp-text-light-primary: #141E1F;
  --wsp-text-light-body: #3D5658;
  --wsp-text-light-muted: #4A6266;
  --wsp-accent-fill: #C07845;
  --wsp-accent-label-light: #8A4E1E;
  --wsp-accent-label-dark: #E09A6A;
  --wsp-teal-interactive: #1A7A8A;
  --wsp-nav-h: 68px;
  --wsp-section-pad: 120px;
  --wsp-section-pad-mob: 60px;
  --wsp-container-max: 1200px;
  --wsp-radius-card: 8px;
  --wsp-radius-btn: 4px;
  --wsp-shadow: 0 4px 20px rgba(13, 46, 53, 0.1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wsp-text-light-primary);
  background: var(--wsp-bg-light);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
address { font-style: normal; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  line-height: 1.15;
}

.wsp-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wsp-accent-label-light);
  display: inline-block;
  margin-bottom: 1rem;
}
.wsp-eyebrow--dark {
  color: var(--wsp-accent-label-dark);
}
.wsp-heading-xl {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.wsp-heading-lg {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.wsp-heading-md {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}
.wsp-heading-sm {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}
.wsp-body-lead {
  font-size: 1.125rem;
  color: var(--wsp-text-light-body);
  line-height: 1.7;
}
.wsp-body-muted {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
}
.wsp-text-on-dark { color: var(--wsp-text-dark-primary); }
.wsp-text-muted-on-dark { color: var(--wsp-text-dark-muted); }

/* === Layout === */
.wsp-container {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-container--narrow {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-container--article {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* === Sections === */
.wsp-section {
  padding-block: var(--wsp-section-pad);
}
.wsp-section--light { background: var(--wsp-bg-light); }
.wsp-section--cream { background: var(--wsp-bg-cream); }
.wsp-section--dark {
  background: var(--wsp-bg-dark);
  color: var(--wsp-text-dark-primary);
}
.wsp-section--dark-alt {
  background: var(--wsp-bg-dark-alt);
  color: var(--wsp-text-dark-primary);
}
.wsp-section--white { background: var(--wsp-bg-white); }
.wsp-section--teal {
  background: var(--wsp-bg-teal);
  color: var(--wsp-text-dark-primary);
}
.wsp-section--teal .wsp-eyebrow--dark { color: #F0B07A; }

/* === Buttons === */
.wsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--wsp-radius-btn);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.wsp-btn--primary {
  background: var(--wsp-bg-teal);
  color: var(--wsp-text-dark-primary);
  border: 2px solid var(--wsp-bg-teal);
}
.wsp-btn--primary:hover { background: var(--wsp-teal-interactive); border-color: var(--wsp-teal-interactive); }
.wsp-btn--outline-light {
  background: transparent;
  color: var(--wsp-text-light-primary);
  border: 2px solid var(--wsp-text-light-primary);
}
.wsp-btn--outline-light:hover { background: var(--wsp-text-light-primary); color: var(--wsp-bg-light); }
.wsp-btn--outline-dark {
  background: transparent;
  color: var(--wsp-text-dark-primary);
  border: 2px solid var(--wsp-text-dark-primary);
}
.wsp-btn--outline-dark:hover { background: var(--wsp-text-dark-primary); color: var(--wsp-bg-dark); }
.wsp-btn--ghost-on-dark {
  background: transparent;
  color: var(--wsp-text-dark-primary);
  border: 2px solid rgba(240,235,227,0.4);
}
.wsp-btn--ghost-on-dark:hover { border-color: var(--wsp-text-dark-primary); }
.wsp-btn--ghost-on-light {
  background: transparent;
  color: var(--wsp-text-light-primary);
  border: 2px solid rgba(20,30,31,0.3);
}
.wsp-btn--ghost-on-light:hover { border-color: var(--wsp-text-light-primary); }
.wsp-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* === Navigation === */
.wsp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--wsp-nav-h);
  background: var(--wsp-bg-dark);
  border-bottom: 1px solid rgba(240,235,227,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.wsp-nav--scrolled {
  background: var(--wsp-bg-dark);
  box-shadow: 0 2px 16px rgba(13,46,53,0.25);
}
.wsp-nav__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.wsp-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.wsp-nav__logo img { height: 32px; width: auto; }
.wsp-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.wsp-nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--wsp-text-dark-primary);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.wsp-nav__link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.wsp-nav__link--active { color: #fff; }
.wsp-nav__cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}
.wsp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
}
.wsp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wsp-text-dark-primary);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.wsp-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wsp-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.wsp-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.wsp-nav__menu {
  display: none;
  position: absolute;
  top: var(--wsp-nav-h);
  left: 0;
  right: 0;
  background: var(--wsp-bg-dark);
  padding: 1rem 24px 1.5rem;
  border-bottom: 1px solid rgba(240,235,227,0.1);
}
.wsp-nav__menu.wsp-nav__menu--open { display: block; }
.wsp-nav__menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wsp-nav__menu .wsp-nav__link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
}
.wsp-nav__menu .wsp-btn {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

/* index.html: transparent nav merges with dark hero */
.wsp-page--dark-top .wsp-nav {
  background: transparent;
  border-bottom-color: transparent;
}
.wsp-page--dark-top .wsp-nav--scrolled {
  background: var(--wsp-bg-dark);
  border-bottom-color: rgba(240,235,227,0.08);
}

/* === Index Hero === */
.wsp-hero {
  background: var(--wsp-bg-dark);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--wsp-nav-h);
}
.wsp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 80px 80px;
  width: 100%;
}
.wsp-hero__text { order: 1; }
.wsp-hero__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--wsp-text-dark-primary);
  margin-bottom: 1.25rem;
}
.wsp-hero__sub {
  font-size: 1.125rem;
  color: var(--wsp-text-dark-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}
.wsp-hero__visual {
  order: 2;
  border-radius: var(--wsp-radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--wsp-shadow);
}
.wsp-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Sub-page Hero === */
.wsp-subhero {
  padding-top: calc(var(--wsp-nav-h) + var(--wsp-section-pad));
  padding-bottom: var(--wsp-section-pad);
}
.wsp-subhero--light { background: var(--wsp-bg-light); }
.wsp-subhero--cream { background: var(--wsp-bg-cream); }
.wsp-subhero--dark {
  background: var(--wsp-bg-dark);
  color: var(--wsp-text-dark-primary);
}
.wsp-subhero__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.wsp-subhero__inner--wide {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-subhero__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.wsp-subhero__sub {
  font-size: 1.125rem;
  color: var(--wsp-text-light-body);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.wsp-subhero--dark .wsp-subhero__sub { color: var(--wsp-text-dark-muted); }

/* Blog/article hero stat fragment */
.wsp-hero-stat-band {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 98, 102, 0.25);
}
.wsp-hero-stat-band__item {
  text-align: center;
}
.wsp-hero-stat-band__num {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wsp-bg-teal);
  display: block;
}
.wsp-hero-stat-band__label {
  font-size: 0.8125rem;
  color: var(--wsp-text-light-muted);
}

/* === Social Proof Strip === */
.wsp-social-proof {
  background: var(--wsp-bg-dark-alt);
  padding-block: 40px;
  border-top: 1px solid rgba(240,235,227,0.06);
  border-bottom: 1px solid rgba(240,235,227,0.06);
}
.wsp-social-proof__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
}
.wsp-social-proof__stat {
  text-align: center;
}
.wsp-social-proof__num {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
  display: block;
}
.wsp-social-proof__label {
  font-size: 0.8125rem;
  color: var(--wsp-text-dark-muted);
}
.wsp-social-proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(240,235,227,0.15);
  align-self: center;
}
.wsp-social-proof__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.55;
}
.wsp-social-proof__logo-placeholder {
  width: 80px;
  height: 28px;
  background: rgba(240,235,227,0.25);
  border-radius: 4px;
}

/* === Problem Section === */
.wsp-problem__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.wsp-problem__story { color: var(--wsp-text-light-body); }
.wsp-problem__story p { margin-bottom: 1.25rem; line-height: 1.7; }
.wsp-problem__story p:last-child { margin-bottom: 0; }
.wsp-problem__pains { display: flex; flex-direction: column; gap: 1.25rem; }
.wsp-problem__pain-group h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wsp-accent-label-light);
  margin-bottom: 0.75rem;
}
.wsp-pain-list { display: flex; flex-direction: column; gap: 0.5rem; }
.wsp-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  line-height: 1.5;
}
.wsp-pain-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wsp-accent-fill);
  margin-top: 0.45em;
}

/* === Operators Feature / Utilization Mock === */
.wsp-operators-feature__inner {
  text-align: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-operators-feature__intro {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.wsp-operators-feature__sub {
  font-size: 1.0625rem;
  color: var(--wsp-text-light-body);
  margin-top: 1rem;
  margin-bottom: 0;
}
.wsp-mock-wrapper {
  max-width: 900px;
  margin-inline: auto;
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  box-shadow: var(--wsp-shadow);
  overflow: hidden;
}
.wsp-mock-header {
  background: var(--wsp-bg-dark);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wsp-mock-header__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(240,235,227,0.2);
}
.wsp-mock-header__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--wsp-text-dark-muted);
  margin-left: 0.5rem;
}
.wsp-mock-cta {
  margin-top: 2rem;
}

/* Utilization Heatmap Table */
.wsp-utilization-mock {
  width: 100%;
  border-collapse: collapse;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
}
.wsp-utilization-mock thead tr {
  background: var(--wsp-bg-dark);
  color: var(--wsp-text-dark-muted);
}
.wsp-utilization-mock thead th {
  padding: 0.625rem 0.75rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-right: 1px solid rgba(240,235,227,0.08);
}
.wsp-utilization-mock thead th:first-child {
  text-align: left;
  min-width: 140px;
}
.wsp-utilization-mock thead th:last-child { border-right: none; }
.wsp-utilization-mock tbody tr {
  border-bottom: 1px solid rgba(13,46,53,0.07);
}
.wsp-utilization-mock tbody tr:last-child { border-bottom: none; }
.wsp-utilization-mock tbody td {
  padding: 0.625rem 0.75rem;
  text-align: center;
  font-weight: 400;
  border-right: 1px solid rgba(13,46,53,0.07);
}
.wsp-utilization-mock tbody td:first-child {
  text-align: left;
  color: var(--wsp-text-light-primary);
  font-size: 0.8125rem;
  background: var(--wsp-bg-light);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 500;
}
.wsp-utilization-mock tbody td:last-child { border-right: none; }
.wsp-cell--booked {
  background: var(--wsp-bg-teal);
  color: #F0EBE3;
  border-radius: 3px;
  font-weight: 400;
}
.wsp-cell--partial {
  background: #E09A6A;
  color: #1A1A1A;
  border-radius: 3px;
}
.wsp-cell--empty {
  background: #E8E4E0;
  color: #3D5658;
  border-radius: 3px;
}

/* === Booking Card Mock === */
.wsp-booking-card-mock {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  box-shadow: var(--wsp-shadow);
  padding: 1.5rem;
  max-width: 320px;
}
.wsp-booking-card-mock__space-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wsp-text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.wsp-booking-card-mock__dates {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.wsp-date-chip {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  border: 1.5px solid rgba(13,46,53,0.15);
  color: var(--wsp-text-light-muted);
  background: transparent;
}
.wsp-date-chip--active {
  background: var(--wsp-bg-teal);
  color: #F0EBE3;
  border-color: var(--wsp-bg-teal);
}
.wsp-booking-card-mock__times {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.wsp-time-pill {
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-family: 'IBM Plex Mono', monospace;
  border: 1.5px solid rgba(13,46,53,0.15);
  color: var(--wsp-text-light-muted);
  background: transparent;
  text-align: center;
}
.wsp-time-pill--active {
  background: var(--wsp-bg-teal);
  color: #F0EBE3;
  border-color: var(--wsp-bg-teal);
}
.wsp-booking-card-mock__price {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1rem;
}
.wsp-booking-card-mock__price span {
  font-size: 0.875rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--wsp-text-light-muted);
}
.wsp-booking-card-mock__btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--wsp-bg-teal);
  color: #F0EBE3;
  border-radius: var(--wsp-radius-btn);
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s;
}
.wsp-booking-card-mock__btn:hover { background: var(--wsp-teal-interactive); }

/* Members feature section */
.wsp-members-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-members-feature__text { color: var(--wsp-text-light-body); }
.wsp-members-feature__text .wsp-heading-lg {
  color: var(--wsp-text-light-primary);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.wsp-section--dark .wsp-members-feature__text { color: var(--wsp-text-dark-muted); }
.wsp-section--dark .wsp-members-feature__text .wsp-heading-lg { color: var(--wsp-text-dark-primary); }
.wsp-members-feature__text p { margin-bottom: 1.5rem; line-height: 1.7; }
.wsp-members-feature__visual {
  display: flex;
  justify-content: center;
}

/* === How It Works === */
.wsp-how-it-works__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.wsp-how-it-works__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
  margin-bottom: 3rem;
}
.wsp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.wsp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.wsp-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wsp-bg-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F0EBE3;
  flex-shrink: 0;
}
.wsp-step__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
}
.wsp-step__body {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-muted);
  line-height: 1.6;
}
.wsp-step__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wsp-accent-fill);
  font-size: 1.5rem;
}

/* Steps connector on light bg */
.wsp-steps--light .wsp-step__num {
  background: var(--wsp-bg-teal);
  color: #F0EBE3;
}
.wsp-steps--light .wsp-step__title { color: var(--wsp-text-light-primary); }
.wsp-steps--light .wsp-step__body { color: var(--wsp-text-light-body); }

/* === Metrics === */
.wsp-metrics__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.wsp-metrics__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 3rem;
}
.wsp-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.wsp-metric-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 2rem 1.5rem;
  box-shadow: var(--wsp-shadow);
  text-align: center;
}
.wsp-metric-card__icon {
  font-size: 1.5rem;
  color: var(--wsp-bg-teal);
  margin-bottom: 0.75rem;
}
.wsp-metric-card__num {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  display: block;
}
.wsp-metric-card__label {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  font-weight: 500;
  display: block;
  margin-top: 0.25rem;
}
.wsp-metric-card__source {
  font-size: 0.75rem;
  color: var(--wsp-text-light-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* === Testimonials === */
.wsp-testimonials__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.wsp-testimonials__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 2.5rem;
}
.wsp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.wsp-testimonial-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 2rem;
  box-shadow: var(--wsp-shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.wsp-testimonial-card--dark {
  background: var(--wsp-bg-dark-alt);
  border: 1px solid rgba(240,235,227,0.08);
}
.wsp-testimonial-card__quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--wsp-text-light-body);
  font-style: italic;
}
.wsp-testimonial-card--dark .wsp-testimonial-card__quote {
  color: var(--wsp-text-dark-primary);
}
.wsp-testimonial-card__quote::before { content: '\201C'; }
.wsp-testimonial-card__quote::after { content: '\201D'; }
.wsp-testimonial-card__attr {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
  font-weight: 500;
}
.wsp-testimonial-card--dark .wsp-testimonial-card__attr { color: var(--wsp-text-dark-muted); }

/* === CTA Block === */
.wsp-cta-block__inner {
  text-align: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-cta-block__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
  margin-bottom: 2rem;
}
.wsp-cta-block__note {
  font-size: 0.875rem;
  color: var(--wsp-text-dark-muted);
  margin-top: 1.25rem;
}

/* === Operators Page === */
.wsp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-feature-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 2rem;
  box-shadow: var(--wsp-shadow);
}
.wsp-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--wsp-bg-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0EBE3;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.wsp-feature-card__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.5rem;
}
.wsp-feature-card__body {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  line-height: 1.6;
}
.wsp-section-heading-centered {
  text-align: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  margin-bottom: 3rem;
}
.wsp-section-heading-centered p {
  font-size: 1.0625rem;
  color: var(--wsp-text-light-body);
  margin-top: 1rem;
  max-width: 600px;
  margin-inline: auto;
}

/* Pilot numbers / 2-up metric cards */
.wsp-pilot-metrics__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.wsp-pilot-metrics__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
  margin-bottom: 2.5rem;
}
.wsp-pilot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin-inline: auto;
}
.wsp-pilot-card {
  background: var(--wsp-bg-dark-alt);
  border: 1px solid rgba(240,235,227,0.1);
  border-radius: var(--wsp-radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
}
.wsp-pilot-card__num {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--wsp-accent-label-dark);
  display: block;
}
.wsp-pilot-card__label {
  font-size: 1rem;
  color: var(--wsp-text-dark-primary);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}
.wsp-pilot-card__source {
  font-size: 0.75rem;
  color: var(--wsp-text-dark-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Pricing teaser */
.wsp-pricing-teaser__inner {
  text-align: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-pricing-teaser__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.wsp-pricing-teaser__card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 1.75rem;
  box-shadow: var(--wsp-shadow);
  text-align: center;
}
.wsp-pricing-teaser__price {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  display: block;
  margin-bottom: 0.25rem;
}
.wsp-pricing-teaser__tier { font-weight: 600; color: var(--wsp-text-light-primary); }
.wsp-pricing-teaser__cap {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
  margin-top: 0.25rem;
}

/* === Members Page === */
.wsp-spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-space-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  overflow: hidden;
  box-shadow: var(--wsp-shadow);
}
.wsp-space-card__cover {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.wsp-space-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.wsp-space-card:hover .wsp-space-card__cover img { transform: scale(1.04); }
.wsp-space-card__info { padding: 1.25rem; }
.wsp-space-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wsp-accent-label-light);
  margin-bottom: 0.5rem;
}
.wsp-space-card__name {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.25rem;
}
.wsp-space-card__price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--wsp-bg-cream);
  color: var(--wsp-accent-label-light);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.wsp-space-card__feature {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
}

/* Members pricing preview */
.wsp-pricing-preview__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-pricing-preview__card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 2rem;
  box-shadow: var(--wsp-shadow);
}
.wsp-pricing-preview__price {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.25rem;
}
.wsp-pricing-preview__period {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
  margin-bottom: 1rem;
}
.wsp-pricing-preview__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1rem;
}
.wsp-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.wsp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  line-height: 1.5;
}
.wsp-feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--wsp-bg-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23F0EBE3' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 0.15em;
}

/* === Pricing Page === */
.wsp-pricing-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.wsp-tab-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wsp-text-light-body);
  background: transparent;
  border: 2px solid rgba(13,46,53,0.15);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.wsp-tab-btn--active,
.wsp-tab-btn:hover {
  background: var(--wsp-bg-teal);
  color: #F0EBE3;
  border-color: var(--wsp-bg-teal);
}
.wsp-pricing-panel { display: none; }
.wsp-pricing-panel--active { display: block; }
.wsp-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-pricing-tier {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--wsp-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.wsp-pricing-tier--highlight {
  border: 2px solid var(--wsp-bg-teal);
}
.wsp-pricing-tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wsp-accent-fill);
  color: #141E1F;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.875rem;
  border-radius: 20px;
  white-space: nowrap;
}
.wsp-pricing-tier__name {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.5rem;
}
.wsp-pricing-tier__price {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.wsp-pricing-tier__period {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
  margin-bottom: 0.5rem;
}
.wsp-pricing-tier__cap {
  font-size: 0.875rem;
  color: var(--wsp-accent-label-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(13,46,53,0.08);
}
.wsp-pricing-tier .wsp-feature-list { flex: 1; }
.wsp-pricing-tier .wsp-btn { margin-top: 2rem; width: 100%; justify-content: center; }

/* Member pricing section (cream bg) */
.wsp-section--cream .wsp-pricing-tier {
  background: var(--wsp-bg-light);
}
.wsp-section--cream .wsp-pricing-tier--highlight {
  background: var(--wsp-bg-light);
}

/* === FAQ Accordion === */
.wsp-faq__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-faq__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}
.wsp-faq-list { display: flex; flex-direction: column; gap: 0; }
.wsp-faq-item {
  border-bottom: 1px solid rgba(13,46,53,0.1);
}
.wsp-faq-item:first-child { border-top: 1px solid rgba(13,46,53,0.1); }
.wsp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wsp-text-light-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.wsp-faq-question:hover { color: var(--wsp-bg-teal); }
.wsp-faq-question__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wsp-text-light-muted);
  transition: transform 0.25s;
}
.wsp-faq-item--open .wsp-faq-question__icon { transform: rotate(180deg); }
.wsp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.wsp-faq-item--open .wsp-faq-answer { max-height: 400px; }
.wsp-faq-answer__inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  line-height: 1.7;
}

/* === About Page === */
.wsp-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-about-story__text h2 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.25rem;
}
.wsp-about-story__text p {
  color: var(--wsp-text-light-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.wsp-about-story__text p:last-child { margin-bottom: 0; }
.wsp-about-story__image {
  border-radius: var(--wsp-radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.wsp-about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wsp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-team-card {
  text-align: center;
}
.wsp-team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--wsp-bg-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wsp-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.wsp-team-card__initials {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #F0EBE3;
}
.wsp-team-card__name {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.25rem;
}
.wsp-team-card__role {
  font-size: 0.8125rem;
  color: var(--wsp-accent-label-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.wsp-team-card__bio {
  font-size: 0.875rem;
  color: var(--wsp-text-light-body);
  line-height: 1.6;
}
.wsp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-value-card {
  text-align: center;
  padding: 0 1rem;
}
.wsp-value-card__icon {
  font-size: 1.75rem;
  color: var(--wsp-accent-label-dark);
  margin-bottom: 1rem;
}
.wsp-value-card__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
  margin-bottom: 0.75rem;
}
.wsp-value-card__body {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-muted);
  line-height: 1.6;
}

/* === Contact Page === */
.wsp-contact__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-contact-form__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.5rem;
}
.wsp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.wsp-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wsp-text-light-primary);
}
.wsp-form-input,
.wsp-form-select,
.wsp-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(13,46,53,0.2);
  border-radius: var(--wsp-radius-card);
  font-size: 0.9375rem;
  color: var(--wsp-text-light-primary);
  background: var(--wsp-bg-white);
  transition: border-color 0.2s;
  outline: none;
}
.wsp-form-input:focus,
.wsp-form-select:focus,
.wsp-form-textarea:focus { border-color: var(--wsp-bg-teal); box-shadow: 0 0 0 3px rgba(11,74,85,0.12); }
.wsp-form-textarea { min-height: 140px; resize: vertical; }
.wsp-form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.wsp-form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--wsp-radius-card);
  background: rgba(11,74,85,0.1);
  color: var(--wsp-bg-teal);
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 0.75rem;
}
.wsp-contact-info {
  padding-top: 0.5rem;
}
.wsp-contact-info__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.5rem;
}
.wsp-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.wsp-contact-info__icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--wsp-bg-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0EBE3;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.wsp-contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wsp-text-light-muted);
  margin-bottom: 0.25rem;
}
.wsp-contact-info__value {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
}
.wsp-contact-info__value a {
  color: var(--wsp-bg-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wsp-location-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  padding: 3rem;
  box-shadow: var(--wsp-shadow);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.wsp-location-card h3 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1rem;
}
.wsp-location-card p {
  color: var(--wsp-text-light-body);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.wsp-dic-map {
  margin: 2rem auto 0;
  max-width: 400px;
}

/* === Blog Index === */
.wsp-blog-featured__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-blog-featured__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.5rem;
}
.wsp-featured-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  overflow: hidden;
  box-shadow: var(--wsp-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wsp-featured-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.wsp-featured-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wsp-featured-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.wsp-featured-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wsp-accent-label-light);
}
.wsp-featured-card__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  line-height: 1.2;
}
.wsp-featured-card__title a { color: inherit; }
.wsp-featured-card__title a:hover { color: var(--wsp-bg-teal); }
.wsp-featured-card__excerpt {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  line-height: 1.6;
}
.wsp-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--wsp-text-light-muted);
}
.wsp-blog-grid-section {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.wsp-blog-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  overflow: hidden;
  box-shadow: var(--wsp-shadow);
  display: flex;
  flex-direction: column;
}
.wsp-blog-card__cover {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.wsp-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wsp-blog-card:hover .wsp-blog-card__cover img { transform: scale(1.04); }
.wsp-blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.wsp-blog-card__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wsp-accent-label-light);
}
.wsp-blog-card__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  line-height: 1.3;
}
.wsp-blog-card__title a { color: inherit; }
.wsp-blog-card__title a:hover { color: var(--wsp-bg-teal); }
.wsp-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--wsp-text-light-body);
  line-height: 1.5;
  flex: 1;
}
.wsp-blog-card__meta {
  font-size: 0.75rem;
  color: var(--wsp-text-light-muted);
  margin-top: auto;
}

/* === Blog Article Page === */
.wsp-article-hero__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: calc(var(--wsp-nav-h) + 60px);
  padding-bottom: 40px;
}
.wsp-article-hero__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wsp-accent-label-light);
  margin-bottom: 1rem;
}
.wsp-article-hero__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.wsp-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.wsp-article-hero__meta time { font-weight: 500; }
.wsp-article-hero__meta .wsp-article-author { font-weight: 600; color: var(--wsp-text-light-body); }
.wsp-article-cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--wsp-radius-card);
  max-width: 900px;
  margin-inline: auto;
}
.wsp-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wsp-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wsp-bg-teal);
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.wsp-article-back:hover { color: var(--wsp-teal-interactive); }
.wsp-article-body {
  background: var(--wsp-bg-white);
  padding-block: var(--wsp-section-pad);
}
.wsp-article-content {
  color: var(--wsp-text-light-body);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.wsp-article-content h2 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.wsp-article-content h3 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.wsp-article-content p { margin-bottom: 1.25rem; }
.wsp-article-content p:last-child { margin-bottom: 0; }
.wsp-article-content blockquote {
  border-left: 3px solid var(--wsp-bg-teal);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--wsp-text-light-primary);
  font-size: 1.125rem;
}
.wsp-article-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: var(--wsp-bg-cream);
  padding: 0.125em 0.375em;
  border-radius: 3px;
  color: var(--wsp-bg-teal);
}
.wsp-article-related__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-article-related__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.75rem;
}
.wsp-article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.wsp-related-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  overflow: hidden;
  box-shadow: var(--wsp-shadow);
}
.wsp-related-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.wsp-related-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wsp-related-card:hover .wsp-related-card__cover img { transform: scale(1.04); }
.wsp-related-card__body { padding: 1rem; }
.wsp-related-card__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  line-height: 1.3;
  margin-bottom: 0.375rem;
}
.wsp-related-card__title a { color: inherit; }
.wsp-related-card__title a:hover { color: var(--wsp-bg-teal); }
.wsp-related-card__date { font-size: 0.75rem; color: var(--wsp-text-light-muted); }

/* === Auth Pages === */
.wsp-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wsp-auth__brand-panel {
  background: var(--wsp-bg-teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  gap: 1.5rem;
}
.wsp-auth__brand-panel .wsp-auth__logo img { height: 36px; width: auto; }
.wsp-auth__tagline {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--wsp-text-dark-primary);
  line-height: 1.2;
  max-width: 320px;
}
.wsp-auth__brand-note {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-muted);
  max-width: 300px;
  line-height: 1.6;
}
.wsp-auth__form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--wsp-bg-white);
}
.wsp-auth__form-card {
  width: 100%;
  max-width: 420px;
}
.wsp-auth__form-card h1 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.5rem;
}
.wsp-auth__form-card p.wsp-auth__sub {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  margin-bottom: 2rem;
}
.wsp-auth__form-card .wsp-form-group { margin-bottom: 1rem; }
.wsp-auth__form-card .wsp-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.wsp-auth__form-card .wsp-auth__switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
}
.wsp-auth__form-card .wsp-auth__switch a { color: var(--wsp-bg-teal); font-weight: 600; }
.wsp-auth__legal {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--wsp-text-light-muted);
}
.wsp-auth__legal a { color: var(--wsp-bg-teal); }
.wsp-auth__form-feedback {
  display: none;
  padding: 0.875rem 1rem;
  border-radius: var(--wsp-radius-card);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.wsp-auth__form-feedback--error {
  background: rgba(192,60,60,0.08);
  color: #B92424;
  border: 1px solid rgba(192,60,60,0.2);
}
.wsp-auth__form-feedback--info {
  background: rgba(11,74,85,0.08);
  color: var(--wsp-bg-teal);
  border: 1px solid rgba(11,74,85,0.2);
}
.wsp-auth__form-link {
  font-size: 0.875rem;
  color: var(--wsp-bg-teal);
  margin-top: 0.5rem;
  display: inline-block;
}
.wsp-auth__form-link:hover { color: var(--wsp-teal-interactive); }

/* === Legal Pages === */
.wsp-legal-hero {
  padding-top: calc(var(--wsp-nav-h) + 60px);
  padding-bottom: 40px;
  background: var(--wsp-bg-light);
}
.wsp-legal-hero__inner {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-legal-hero__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.5rem;
}
.wsp-legal-hero__updated {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
}
.wsp-legal-content {
  background: var(--wsp-bg-white);
  padding-block: var(--wsp-section-pad);
}
.wsp-legal-content__inner {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: 24px;
  color: var(--wsp-text-light-body);
  font-size: 1rem;
  line-height: 1.75;
}
.wsp-legal-content__inner h2 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.wsp-legal-content__inner p { margin-bottom: 1rem; }
.wsp-legal-content__inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* === Footer === */
.wsp-footer {
  background: var(--wsp-bg-dark);
  color: var(--wsp-text-dark-primary);
}
.wsp-footer__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.wsp-footer__logo { margin-bottom: 1rem; }
.wsp-footer__logo img { height: 28px; width: auto; }
.wsp-footer__tagline {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.wsp-footer__address {
  font-size: 0.875rem;
  color: var(--wsp-text-dark-muted);
  line-height: 1.7;
}
.wsp-footer__address a {
  color: var(--wsp-text-dark-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wsp-footer__address a:hover { color: var(--wsp-text-dark-primary); }
.wsp-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wsp-text-dark-muted);
  margin-bottom: 1.25rem;
}
.wsp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wsp-footer__links a {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-muted);
  transition: color 0.2s;
}
.wsp-footer__links a:hover { color: var(--wsp-text-dark-primary); }
.wsp-footer__bottom {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(240,235,227,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.wsp-footer__copy {
  font-size: 0.8125rem;
  color: var(--wsp-text-dark-muted);
}
.wsp-footer__cookie-link {
  font-size: 0.8125rem;
  color: var(--wsp-text-dark-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wsp-footer__cookie-link:hover { color: var(--wsp-text-dark-primary); }

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--wsp-bg-dark);
  border-top: 1px solid rgba(240,235,227,0.1);
  padding: 1rem 0;
}
.cookie-banner__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-primary);
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a { color: var(--wsp-accent-label-dark); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--wsp-radius-btn);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner__btn--primary {
  background: var(--wsp-bg-teal);
  color: var(--wsp-text-dark-primary);
  border-color: var(--wsp-bg-teal);
}
.cookie-banner__btn--primary:hover { background: var(--wsp-teal-interactive); border-color: var(--wsp-teal-interactive); color: #fff; }
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--wsp-text-dark-primary);
  border-color: rgba(240,235,227,0.35);
}
.cookie-banner__btn--secondary:hover { border-color: var(--wsp-text-dark-primary); }

/* === Fade-in Animation === */
.wsp-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.wsp-fade-in.wsp-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  :root {
    --wsp-section-pad: 80px;
  }
  .wsp-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wsp-about-story__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .wsp-about-story__image { order: -1; }
}

@media (max-width: 900px) {
  .wsp-nav__links { display: none; }
  .wsp-nav__cta { display: none; }
  .wsp-nav__hamburger { display: flex; }
  .wsp-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wsp-hero__visual { order: -1; }
  .wsp-problem__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wsp-members-feature__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wsp-features-grid { grid-template-columns: 1fr; }
  .wsp-contact__inner { grid-template-columns: 1fr; gap: 2rem; }
  .wsp-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .wsp-article-related-grid { grid-template-columns: 1fr 1fr; }
  .wsp-auth { grid-template-columns: 1fr; }
  .wsp-auth__brand-panel { display: none; }
  .wsp-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .wsp-footer__inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --wsp-section-pad: 60px;
  }
  .wsp-steps { grid-template-columns: 1fr; gap: 2rem; }
  .wsp-metric-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 400px; margin-inline: auto; }
  .wsp-pilot-grid { grid-template-columns: 1fr; }
  .wsp-testimonial-grid { grid-template-columns: 1fr; }
  .wsp-pricing-tiers { grid-template-columns: 1fr; }
  .wsp-spaces-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .wsp-pricing-preview__inner { grid-template-columns: 1fr; }
  .wsp-pricing-teaser__cards { grid-template-columns: 1fr; }
  .wsp-values-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .wsp-team-grid { grid-template-columns: repeat(2, 1fr); }
  .wsp-featured-card { grid-template-columns: 1fr; }
  .wsp-featured-card__cover { aspect-ratio: 16/9; }
  .wsp-blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .wsp-article-related-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .wsp-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .wsp-footer__inner > div:first-child { grid-column: auto; }
  .wsp-social-proof__divider { display: none; }
  .wsp-hero { min-height: auto; padding-block: 60px; }
  .wsp-hero__title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .wsp-container { padding-inline: 16px; }
  .wsp-nav__inner { padding-inline: 16px; }
  .wsp-hero__inner { padding-inline: 16px; padding-block: 40px; }
  .wsp-subhero__inner { padding-inline: 16px; }
  .wsp-btn-row { flex-direction: column; align-items: stretch; }
  .wsp-btn-row .wsp-btn { justify-content: center; }
  .wsp-team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .wsp-pricing-tabs { flex-direction: column; align-items: center; }
  .wsp-cookie-banner__inner { flex-direction: column; }
  .wsp-hero-stat-band { gap: 1rem; }
}

/* Overflow safety */
html, body { overflow-x: hidden; }
.wsp-utilization-mock { min-width: 520px; }
.wsp-mock-wrapper { overflow-x: auto; }
table { border-collapse: collapse; }

/* Ensure images don't overflow */
.wsp-hero__visual,
.wsp-about-story__image,
.wsp-space-card__cover,
.wsp-blog-card__cover,
.wsp-featured-card__cover,
.wsp-related-card__cover {
  max-width: 100%;
}

/* Focus visible for a11y */
:focus-visible {
  outline: 2px solid var(--wsp-bg-teal);
  outline-offset: 3px;
}

/* === Auth split-screen layout (login/register) === */
.wsp-auth-page {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wsp-auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wsp-auth-split__panel {
  background: var(--wsp-bg-teal);
  display: flex;
  flex-direction: column;
  padding: 3rem;
  gap: 2rem;
}
.wsp-auth-split__panel-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}
.wsp-auth-split__logo img {
  height: 36px;
  width: auto;
}
.wsp-auth-split__tagline {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: var(--wsp-text-dark-primary);
  line-height: 1.3;
  max-width: 340px;
}
.wsp-auth-split__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.wsp-auth-split__benefits li {
  font-size: 0.9375rem;
  color: var(--wsp-text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.wsp-auth-split__benefits li i { color: var(--wsp-accent-label-dark); }
.wsp-auth-split__form-side {
  background: var(--wsp-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.wsp-auth-split__card {
  width: 100%;
  max-width: 420px;
}
.wsp-auth-split__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 0.375rem;
}
.wsp-auth-split__sub {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  margin-bottom: 1.75rem;
}
.wsp-auth-split__switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
}
.wsp-auth-split__switch a { color: var(--wsp-bg-teal); font-weight: 600; }
.wsp-auth-split__legal {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--wsp-text-light-muted);
}
.wsp-auth-split__legal a { color: var(--wsp-bg-teal); }
.wsp-auth-view {
  display: none;
}
.wsp-auth-view--active {
  display: block;
}
.wsp-auth-form .wsp-form-group { margin-bottom: 1rem; }
.wsp-auth-form .wsp-btn { width: 100%; justify-content: center; margin-top: 0.375rem; }
.wsp-auth-link {
  color: var(--wsp-bg-teal);
  font-weight: 600;
  text-decoration: none;
}
.wsp-auth-link:hover { color: var(--wsp-teal-interactive); }
.wsp-auth-link--inline {
  font-size: 0.875rem;
  font-weight: 500;
}
.wsp-btn--full {
  width: 100%;
  justify-content: center;
}
.wsp-auth-register-view { /* JS state hook — querySelector target for view-switch; display toggled by wsp.js; visual state driven by .wsp-auth-view / .wsp-auth-view--active */ }
.wsp-auth-register-form { /* JS state hook — submit listener attached by wsp.js; layout provided by .wsp-auth-form */ }
.wsp-auth-register-confirm { /* JS state hook — shown via style.display=block by wsp.js on successful register */ }
.wsp-auth-forgot-view { /* JS state hook — hidden via style.display=none by wsp.js when forgot-password form submits */ }
.wsp-auth-forgot-confirm { /* JS state hook — shown via style.display=block by wsp.js on forgot-password submit */ }
.wsp-auth-confirm__icon {
  font-size: 3rem;
  color: var(--wsp-bg-teal);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .wsp-auth-split { grid-template-columns: 1fr; }
  .wsp-auth-split__panel { display: none; }
}

/* === Blog article page classes === */
.wsp-article-hero {
  background: var(--wsp-bg-light);
}
.wsp-article-content {
  background: var(--wsp-bg-white);
  padding-block: var(--wsp-section-pad);
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-related__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 60px;
  background: var(--wsp-bg-light);
}
.wsp-related__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.75rem;
}
.wsp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.wsp-blog-cat-chip-container {
  padding: 0.75rem 1rem 0;
}
.wsp-blog-cat-chip {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--wsp-bg-teal);
  color: var(--wsp-text-dark-primary);
  border-radius: 3px;
  padding: 0.2em 0.6em;
}
.wsp-blog-meta__date {
  font-size: 0.8125rem;
  color: var(--wsp-text-light-muted);
}
.wsp-blog-meta__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wsp-text-light-body);
}
.wsp-blog-card__cover-link {
  display: block;
  overflow: hidden;
}
.wsp-blog-card__cover-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wsp-blog-card:hover .wsp-blog-card__cover-link img { transform: scale(1.04); }

@media (max-width: 900px) {
  .wsp-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wsp-related-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* === About page classes === */
.wsp-team-card__info {
  padding: 1rem;
  flex: 1;
}
.wsp-values__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-values__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--wsp-text-dark-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

/* === Legal page classes === */
.wsp-legal-hero__meta {
  font-size: 0.875rem;
  color: var(--wsp-text-light-muted);
  margin-top: 0.5rem;
}
.wsp-legal-prose {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: 24px;
  color: var(--wsp-text-light-body);
  font-size: 1rem;
  line-height: 1.75;
}
.wsp-legal-prose h2 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.wsp-legal-prose p { margin-bottom: 1rem; }
.wsp-legal-prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* .wsp-page--light-top — body context selector (JS state hook, no direct styling) */

/* === Auth misc === */
.wsp-auth-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wsp-bg-teal);
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.wsp-auth-back-btn:hover { color: var(--wsp-teal-interactive); }
.wsp-btn--ghost-dark {
  background: transparent;
  color: var(--wsp-text-light-body);
  border: 2px solid rgba(60,80,85,0.3);
  padding: 0.6875rem 1.5rem;
  border-radius: var(--wsp-radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wsp-btn--ghost-dark:hover {
  border-color: var(--wsp-text-light-primary);
  color: var(--wsp-text-light-primary);
}
.wsp-auth-login-form { /* JS state hook — submit listener attached by wsp.js; layout provided by .wsp-auth-form */ }
.wsp-auth-forgot-form { /* JS state hook — submit listener attached by wsp.js on forgot-password page */ }

/* === Contact page classes === */
.wsp-contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.wsp-contact-info-card__icon {
  font-size: 1.125rem;
  color: var(--wsp-bg-teal);
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
}
.wsp-contact-info-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wsp-text-light-muted);
  margin-bottom: 0.25rem;
}
.wsp-contact-info-card__value {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
}
.wsp-contact-info-card__value a {
  color: var(--wsp-bg-teal);
  text-decoration: none;
}
.wsp-contact-info-card__value a:hover { color: var(--wsp-teal-interactive); text-decoration: underline; }
.wsp-contact-reason-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wsp-contact-reason-card {
  background: var(--wsp-bg-light);
  border-radius: var(--wsp-radius-card);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.wsp-contact-reason-card__icon {
  font-size: 1.125rem;
  color: var(--wsp-bg-teal);
  margin-bottom: 0.25rem;
}
.wsp-contact-reason-card__title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--wsp-text-light-primary);
}
.wsp-contact-reason-card__body {
  font-size: 0.875rem;
  color: var(--wsp-text-light-body);
  line-height: 1.5;
}
.wsp-contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wsp-contact__form-col {
  align-self: start;
}
.wsp-contact__form-heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.5rem;
}

/* === Location section === */
.wsp-location__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wsp-location__text p { color: var(--wsp-text-light-body); line-height: 1.7; margin-bottom: 1rem; }
.wsp-location__address { font-size: 0.9375rem; }
.wsp-location__map-placeholder {
  background: var(--wsp-bg-light);
  border-radius: var(--wsp-radius-card);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(11,74,85,0.2);
}
.wsp-location__map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--wsp-text-light-muted);
  font-size: 0.9375rem;
}
.wsp-location__map-inner i { font-size: 2rem; color: var(--wsp-bg-teal); }

@media (max-width: 768px) {
  .wsp-location__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* === Contact form wrappers === */
.wsp-contact-info-card {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  box-shadow: var(--wsp-shadow);
  padding: 1.75rem;
}
.wsp-contact-info-card__heading {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  margin-bottom: 1.5rem;
}
.wsp-contact-form {
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  box-shadow: var(--wsp-shadow);
  padding: 2rem;
}
.wsp-contact-form__submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

/* === Blog index featured article === */
.wsp-blog-index__inner {
  max-width: var(--wsp-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.wsp-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--wsp-bg-white);
  border-radius: var(--wsp-radius-card);
  box-shadow: var(--wsp-shadow);
  overflow: hidden;
  margin-bottom: 3rem;
}
.wsp-blog-featured__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  align-self: stretch;
  width: 100%;
}
.wsp-blog-featured__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.wsp-blog-featured:hover .wsp-blog-featured__image-link img { transform: scale(1.03); }
.wsp-blog-featured__content {
  padding: 2rem 2.5rem 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wsp-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.wsp-blog-featured__title {
  font-family: 'Bricolage Grotesque', Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--wsp-text-light-primary);
  line-height: 1.2;
  margin: 0;
}
.wsp-blog-featured__title a { color: inherit; text-decoration: none; }
.wsp-blog-featured__title a:hover { color: var(--wsp-bg-teal); }
.wsp-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--wsp-text-light-body);
  line-height: 1.65;
  margin: 0;
}
.wsp-blog-featured__cta { align-self: flex-start; }

.wsp-blog-card__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wsp-text-light-body);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .wsp-blog-featured { grid-template-columns: 1fr; }
  .wsp-blog-featured__content { padding: 1.5rem; }
  .wsp-blog-featured__image-link { aspect-ratio: 16/7; }
}
