:root {
  --slx-ink: #1A1A18;
  --slx-ink-secondary: #5A5A4A;
  --slx-page: #F5F0E8;
  --slx-page-stone: #E8E2D4;
  --slx-page-cream: #F0EAD6;
  --slx-grove: #2D5016;
  --slx-grove-deep: #141F0F;
  --slx-parchment-on-dark: #F5F0E8;
  --slx-fog-on-dark: #B8C4A8;
  --slx-white: #FFFFFF;

  --slx-nav-h: 64px;
  --slx-radius: 4px;
  --slx-radius-lg: 8px;
  --slx-transition: 200ms ease-out;
  --slx-section-py: clamp(3rem, 6vw, 6rem);
  --slx-gap: clamp(1.5rem, 3vw, 2.5rem);
  --slx-container: 1200px;
  --slx-reading: 680px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slx-ink);
}

.slx-page--dark-top {
  background: var(--slx-grove-deep);
}

.slx-page--light-top {
  background: var(--slx-page);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.625rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p { line-height: 1.7; }

a {
  color: var(--slx-grove);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

img {
  max-width: 100%;
  display: block;
}

ul, ol { list-style: none; }

[id] { scroll-margin-top: var(--slx-nav-h); }

.slx-container {
  width: 100%;
  max-width: var(--slx-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.slx-reading-col {
  max-width: var(--slx-reading);
  margin-inline: auto;
}

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

.slx-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.slx-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--slx-radius);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--slx-transition), color var(--slx-transition), border-color var(--slx-transition), opacity var(--slx-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.slx-btn--primary {
  background: var(--slx-grove);
  color: var(--slx-white);
  border-color: var(--slx-grove);
}

.slx-btn--primary:hover {
  background: var(--slx-grove-deep);
  border-color: var(--slx-grove-deep);
  color: var(--slx-white);
  text-decoration: none;
}

.slx-btn--outline-dark {
  background: transparent;
  color: var(--slx-grove);
  border-color: var(--slx-grove);
}

.slx-btn--outline-dark:hover {
  background: var(--slx-grove);
  color: var(--slx-white);
  text-decoration: none;
}

.slx-btn--ghost-on-dark {
  background: transparent;
  color: var(--slx-parchment-on-dark);
  border-color: var(--slx-fog-on-dark);
}

.slx-btn--ghost-on-dark:hover {
  background: rgba(245, 240, 232, 0.12);
  border-color: var(--slx-parchment-on-dark);
  color: var(--slx-parchment-on-dark);
  text-decoration: none;
}

.slx-btn--ghost-on-light {
  background: transparent;
  color: var(--slx-ink);
  border-color: var(--slx-page-stone);
}

.slx-btn--ghost-on-light:hover {
  background: var(--slx-page-stone);
  color: var(--slx-ink);
  text-decoration: none;
}

.slx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--slx-nav-h);
  background: var(--slx-page);
  border-bottom: 1px solid var(--slx-page-stone);
}

.slx-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.slx-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.slx-nav__logo img {
  height: 28px;
  width: auto;
}

.slx-nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
}

.slx-nav__link {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slx-ink);
  text-decoration: none;
  padding: 0.375rem 0.625rem;
  border-radius: var(--slx-radius);
  transition: background var(--slx-transition), color var(--slx-transition);
}

.slx-nav__link:hover {
  background: var(--slx-page-stone);
  color: var(--slx-grove);
  text-decoration: none;
}

.slx-nav__link--active {
  color: var(--slx-grove);
  font-weight: 600;
}

.slx-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slx-nav__actions .slx-btn {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.slx-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.slx-nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slx-ink);
  border-radius: 1px;
  transition: transform var(--slx-transition), opacity var(--slx-transition);
}

.slx-nav__hamburger[aria-expanded="true"] .slx-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.slx-nav__hamburger[aria-expanded="true"] .slx-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.slx-nav__hamburger[aria-expanded="true"] .slx-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.slx-nav__mobile {
  display: none;
  position: fixed;
  top: var(--slx-nav-h);
  left: 0;
  right: 0;
  background: var(--slx-page);
  border-bottom: 1px solid var(--slx-page-stone);
  padding: 1rem 0 1.5rem;
  z-index: 899;
}

.slx-nav__mobile.is-open {
  display: block;
}

.slx-nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.slx-nav__mobile-link {
  display: block;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slx-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--slx-page-stone);
}

.slx-nav__mobile-link:hover {
  background: var(--slx-page-stone);
  color: var(--slx-grove);
}

.slx-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 0;
}

.slx-nav__mobile-actions .slx-btn {
  width: 100%;
  justify-content: center;
}

.slx-hero {
  padding-top: calc(var(--slx-nav-h) + var(--slx-section-py));
  padding-bottom: var(--slx-section-py);
  background: var(--slx-grove-deep);
  position: relative;
  overflow: hidden;
}

.slx-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--slx-gap);
}

.slx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slx-fog-on-dark);
}

.slx-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--slx-parchment-on-dark);
  max-width: 16ch;
}

.slx-hero__sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--slx-fog-on-dark);
  max-width: 52ch;
  margin: 0;
}

.slx-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.slx-hero__visual {
  width: 100%;
  max-width: 660px;
  margin-top: 1rem;
}

.slx-subhero {
  padding-top: calc(var(--slx-nav-h) + var(--slx-section-py));
  padding-bottom: var(--slx-section-py);
  background: var(--slx-page);
}

.slx-subhero--dark {
  background: var(--slx-grove-deep);
}

.slx-subhero__inner {
  max-width: var(--slx-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.slx-subhero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--slx-ink);
}

.slx-subhero--dark .slx-subhero__h1 {
  color: var(--slx-parchment-on-dark);
}

.slx-subhero__sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  max-width: 56ch;
  margin: 0;
}

.slx-subhero--dark .slx-subhero__sub {
  color: var(--slx-fog-on-dark);
}

.slx-subhero__ornament {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.slx-stat-chip {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.slx-stat-chip__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--slx-grove);
}

.slx-subhero--dark .slx-stat-chip__num {
  color: var(--slx-fog-on-dark);
}

.slx-stat-chip__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slx-ink-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slx-subhero--dark .slx-stat-chip__label {
  color: var(--slx-fog-on-dark);
}

.slx-section {
  padding-block: var(--slx-section-py);
}

.slx-section--light {
  background: var(--slx-page);
}

.slx-section--light-alt {
  background: var(--slx-page-stone);
}

.slx-section--dark {
  background: var(--slx-grove-deep);
}

.slx-section--white {
  background: var(--slx-white);
}

.slx-section--cream {
  background: var(--slx-page-cream);
}

.slx-section__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slx-grove);
  margin-bottom: 0.75rem;
}

.slx-section--dark .slx-section__label {
  color: var(--slx-fog-on-dark);
}

.slx-section__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--slx-ink);
}

.slx-section--dark .slx-section__h2 {
  color: var(--slx-parchment-on-dark);
}

.slx-section__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  max-width: 60ch;
}

.slx-section--dark .slx-section__lead {
  color: var(--slx-fog-on-dark);
}

.slx-section__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slx-ink-secondary);
}

.slx-section--dark .slx-section__body {
  color: var(--slx-fog-on-dark);
}

.slx-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.slx-two-col--flip {
  direction: rtl;
}

.slx-two-col--flip > * {
  direction: ltr;
}


.slx-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-problem__card {
  padding: 1.5rem;
  background: var(--slx-page-stone);
  border-radius: var(--slx-radius-lg);
  border-left: 3px solid var(--slx-grove);
}

.slx-problem__card-h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--slx-ink);
}

.slx-problem__card-p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  margin: 0;
}


.slx-how-strip__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slx-step__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--slx-grove);
}

.slx-step__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--slx-ink);
}

.slx-step__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  margin: 0;
}


.slx-coverage-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-coverage-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slx-coverage-stat__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--slx-parchment-on-dark);
}

.slx-coverage-stat__label {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--slx-fog-on-dark);
}

.slx-coverage-stat__sublabel {
  font-size: 0.8125rem;
  color: var(--slx-fog-on-dark);
  opacity: 0.75;
}


.slx-pricing-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-pricing-card {
  background: var(--slx-page-stone);
  border-radius: var(--slx-radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 2px solid transparent;
  transition: border-color var(--slx-transition);
}

.slx-pricing-card--highlight {
  background: var(--slx-white);
  border-color: var(--slx-grove);
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.12);
}

.slx-pricing-card__badge {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  background: var(--slx-grove);
  color: var(--slx-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  width: fit-content;
}

.slx-pricing-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--slx-ink);
}

.slx-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.slx-pricing-card__price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--slx-grove);
}

.slx-pricing-card__period {
  font-size: 0.875rem;
  color: var(--slx-ink-secondary);
}

.slx-pricing-card__capacity {
  font-size: 0.875rem;
  color: var(--slx-ink-secondary);
  line-height: 1.5;
}

.slx-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.slx-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slx-ink-secondary);
  line-height: 1.5;
}

.slx-pricing-card__feature::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  background: var(--slx-grove);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='%23fff' d='M11 4L6 9.5 3 6.5l-1 1L6 11.5 12 5z'/%3E%3C/svg%3E");
}

.slx-pricing-card__cta {
  margin-top: auto;
}

.slx-cta-section {
  text-align: center;
}

.slx-cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.slx-cta-section__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--slx-parchment-on-dark);
}

.slx-cta-section__sub {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--slx-fog-on-dark);
  max-width: 52ch;
  margin: 0;
}

.slx-cta-section__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.slx-cta-section__note {
  font-size: 0.875rem;
  color: var(--slx-fog-on-dark);
  opacity: 0.8;
}

.slx-footer {
  background: var(--slx-grove-deep);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(184, 196, 168, 0.15);
}

.slx-footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.slx-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slx-footer__logo {
  display: inline-flex;
  text-decoration: none;
}

.slx-footer__logo img {
  height: 28px;
  width: auto;
}

.slx-footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slx-fog-on-dark);
  max-width: 28ch;
}

.slx-footer__contact {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--slx-fog-on-dark);
  opacity: 0.8;
}

.slx-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slx-parchment-on-dark);
  margin-bottom: 1rem;
}

.slx-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.slx-footer__col-link {
  font-size: 0.875rem;
  color: var(--slx-fog-on-dark);
  text-decoration: none;
  transition: color var(--slx-transition);
}

.slx-footer__col-link:hover {
  color: var(--slx-parchment-on-dark);
  text-decoration: none;
}

.slx-footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 196, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.slx-footer__copyright {
  font-size: 0.8125rem;
  color: var(--slx-fog-on-dark);
  opacity: 0.7;
}

.slx-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.slx-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--slx-fog-on-dark);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity var(--slx-transition);
}

.slx-footer__legal-link:hover {
  opacity: 1;
  text-decoration: none;
}

.slx-citation-trail {
  background: var(--slx-page);
  border-radius: var(--slx-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(20, 31, 15, 0.08);
  max-width: 640px;
}

.slx-citation-trail__question {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slx-ink-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.slx-citation-trail__nodes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.slx-citation-node {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: var(--slx-radius);
  border: 1px solid var(--slx-page-stone);
  background: var(--slx-white);
  transition: border-color var(--slx-transition);
}

.slx-citation-node--active {
  border-color: var(--slx-grove);
  background: var(--slx-white);
  box-shadow: 0 0 0 2px rgba(45, 80, 22, 0.12);
}

.slx-citation-node--level-2 {
  margin-left: 1.5rem;
}

.slx-citation-node--level-3 {
  margin-left: 3rem;
}

.slx-citation-connector {
  display: flex;
  align-items: center;
  padding-left: 1.625rem;
  height: 1.25rem;
}

.slx-citation-connector::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: var(--slx-page-stone);
}

.slx-citation-connector--l2 {
  padding-left: 3.125rem;
}

.slx-citation-connector--l3 {
  padding-left: 4.625rem;
}

.slx-citation-node__ref {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slx-grove);
  display: block;
  margin-bottom: 0.25rem;
}

.slx-citation-node__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slx-ink);
  display: block;
  margin-bottom: 0.375rem;
}

.slx-citation-node__meta {
  font-size: 0.75rem;
  color: var(--slx-ink-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.slx-citation-node__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: var(--slx-page-stone);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slx-ink-secondary);
  text-decoration: none;
}

.slx-citation-node--active .slx-citation-node__chip {
  background: rgba(45, 80, 22, 0.1);
  color: var(--slx-grove);
}

.slx-query-mock {
  background: var(--slx-page);
  border-radius: var(--slx-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(20, 31, 15, 0.08);
  max-width: 560px;
}

.slx-query-mock__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slx-ink);
  margin-bottom: 0.5rem;
}

.slx-query-mock__textarea {
  width: 100%;
  min-height: 88px;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--slx-page-stone);
  border-radius: var(--slx-radius);
  background: var(--slx-white);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slx-ink-secondary);
  resize: none;
  cursor: default;
}

.slx-query-mock__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.slx-query-mock__chips {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.slx-lang-chip {
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--slx-page-stone);
  color: var(--slx-ink-secondary);
  border: 1px solid transparent;
}

.slx-lang-chip--active {
  background: var(--slx-grove);
  color: var(--slx-white);
}

.slx-result-mock {
  background: var(--slx-white);
  border-radius: var(--slx-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(20, 31, 15, 0.08);
  max-width: 560px;
}

.slx-result-mock__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slx-ink-secondary);
  margin-bottom: 1rem;
}

.slx-result-level {
  padding-left: 0;
  border-left: 3px solid var(--slx-grove);
  padding: 0.625rem 0.875rem;
  margin-bottom: 0.5rem;
  border-radius: 0 var(--slx-radius) var(--slx-radius) 0;
  background: var(--slx-page);
}

.slx-result-level--2 {
  margin-left: 1.25rem;
  border-left-width: 2px;
  border-color: rgba(45, 80, 22, 0.5);
  background: var(--slx-page-stone);
}

.slx-result-level--3 {
  margin-left: 2.5rem;
  border-left-width: 2px;
  border-color: rgba(45, 80, 22, 0.3);
  background: var(--slx-page-cream);
}

.slx-result-level__ref {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slx-grove);
  display: block;
  margin-bottom: 0.2rem;
}

.slx-result-level__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slx-ink);
  display: block;
  margin-bottom: 0.375rem;
}

.slx-result-level__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.45rem;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--slx-grove);
  font-family: 'IBM Plex Mono', monospace;
}

.slx-how-steps-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.slx-how-step-block {
  padding: 1.5rem;
  background: var(--slx-white);
  border-radius: var(--slx-radius-lg);
  box-shadow: 0 1px 8px rgba(20, 31, 15, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slx-how-step-block__num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--slx-grove);
}

.slx-how-step-block__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--slx-ink);
}

.slx-how-step-block__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slx-ink-secondary);
  margin: 0;
}

.slx-cantonal-grid-mock {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.slx-canton-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.625rem 0.375rem 0.5rem;
  border-radius: var(--slx-radius);
  position: relative;
}

.slx-canton-chip--de {
  background: rgba(45, 80, 22, 0.12);
}

.slx-canton-chip--fr {
  background: var(--slx-page-stone);
}

.slx-canton-chip--it {
  background: var(--slx-page-cream);
}

.slx-canton-chip__abbr {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slx-grove);
  line-height: 1;
}

.slx-canton-chip__name {
  font-size: 0.6125rem;
  color: var(--slx-ink-secondary);
  text-align: center;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.slx-canton-chip__check {
  position: absolute;
  bottom: 3px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--slx-grove);
  border-radius: 50%;
}

.slx-section--dark .slx-canton-chip--de {
  background: rgba(245, 240, 232, 0.12);
}

.slx-section--dark .slx-canton-chip--fr {
  background: rgba(245, 240, 232, 0.09);
}

.slx-section--dark .slx-canton-chip--it {
  background: rgba(245, 240, 232, 0.07);
}

.slx-section--dark .slx-canton-chip__abbr {
  color: var(--slx-fog-on-dark);
}

.slx-section--dark .slx-canton-chip__name {
  color: var(--slx-fog-on-dark);
  opacity: 0.75;
}

.slx-section--dark .slx-canton-chip__check {
  background: var(--slx-fog-on-dark);
}


.slx-how-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.slx-how-detail__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.slx-how-detail__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--slx-ink);
}

.slx-how-detail__step-label {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  background: var(--slx-grove);
  color: var(--slx-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  width: fit-content;
}

.slx-how-detail__p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slx-ink-secondary);
  margin: 0;
}

.slx-how-detail__visual {
  display: flex;
  justify-content: center;
}

.slx-coverage-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.slx-coverage-table th {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slx-ink-secondary);
  padding: 0.625rem 1rem;
  text-align: left;
  background: var(--slx-page-stone);
  border-bottom: 2px solid var(--slx-page-stone);
}

.slx-coverage-table td {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--slx-ink);
  border-bottom: 1px solid var(--slx-page-stone);
}

.slx-coverage-table tr:last-child td {
  border-bottom: none;
}

.slx-coverage-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-coverage-detail__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slx-coverage-detail__h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--slx-ink);
}

.slx-coverage-detail__p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  margin: 0;
}

.slx-coverage-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.slx-coverage-detail__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slx-ink-secondary);
}

.slx-coverage-detail__list-item::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  background: var(--slx-grove);
  border-radius: 50%;
}

.slx-cantonal-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slx-cantonal-section__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slx-ink-secondary);
}


.slx-pricing-full__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-pricing-full__annual-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--slx-ink-secondary);
}

.slx-faq {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-faq__item {
  border-bottom: 1px solid var(--slx-page-stone);
}

.slx-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.slx-faq-item__question {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--slx-ink);
  margin: 0;
}

.slx-faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--slx-page-stone);
  transition: transform var(--slx-transition), background var(--slx-transition);
  color: var(--slx-grove);
  font-size: 0.875rem;
}

.slx-faq__item.is-open .slx-faq-item__icon {
  transform: rotate(45deg);
  background: var(--slx-grove);
  color: var(--slx-white);
}

.slx-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-out;
}

.slx-faq__item.is-open .slx-faq-item__answer {
  max-height: 600px;
}

.slx-faq-item__answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slx-ink-secondary);
}

.slx-team-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding-block: clamp(2rem, 4vw, 3rem);
}

.slx-team-card__avatar {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: var(--slx-radius-lg);
  overflow: hidden;
  background: var(--slx-page-stone);
  flex-shrink: 0;
}

.slx-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.slx-team-card__initials {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slx-grove);
}

.slx-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slx-team-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--slx-ink);
}

.slx-team-card__role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slx-grove);
  display: block;
}

.slx-team-card__bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slx-ink-secondary);
  margin-top: 0.5rem;
}


.slx-contact-form {
  max-width: 560px;
}

.slx-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.slx-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slx-parchment-on-dark);
}

.slx-form-input,
.slx-form-textarea,
.slx-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(184, 196, 168, 0.3);
  border-radius: var(--slx-radius);
  background: rgba(245, 240, 232, 0.06);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--slx-parchment-on-dark);
  transition: border-color var(--slx-transition);
}

.slx-form-input::placeholder,
.slx-form-textarea::placeholder {
  color: var(--slx-fog-on-dark);
  opacity: 0.6;
}

.slx-form-input:focus,
.slx-form-textarea:focus,
.slx-form-select:focus {
  outline: none;
  border-color: var(--slx-fog-on-dark);
}

.slx-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.slx-blog-hero {
  background: var(--slx-page);
  padding-top: calc(var(--slx-nav-h) + var(--slx-section-py));
  padding-bottom: var(--slx-section-py);
}

.slx-blog-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--slx-ink);
}

.slx-blog-hero__sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  max-width: 56ch;
  margin: 0;
}

.slx-blog-featured {
  background: var(--slx-page-stone);
  padding-block: var(--slx-section-py);
}

.slx-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.slx-blog-featured__cover {
  border-radius: var(--slx-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.slx-blog-featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slx-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.slx-blog-cat-chip {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  background: var(--slx-grove);
  color: var(--slx-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
}

.slx-blog-featured__date {
  font-size: 0.8125rem;
  color: var(--slx-ink-secondary);
}

.slx-blog-featured__h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--slx-ink);
}

.slx-blog-featured__excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slx-ink-secondary);
  margin-bottom: 1.5rem;
}

.slx-blog-grid {
  background: var(--slx-white);
  padding-block: var(--slx-section-py);
}

.slx-blog-grid__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slx-ink-secondary);
  margin-bottom: 2rem;
}

.slx-blog-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

.slx-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--slx-page);
  border-radius: var(--slx-radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--slx-transition), transform var(--slx-transition);
}

.slx-blog-card:hover {
  box-shadow: 0 4px 20px rgba(20, 31, 15, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

.slx-blog-card__cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slx-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease-out;
}

.slx-blog-card:hover .slx-blog-card__cover img {
  transform: scale(1.03);
}

.slx-blog-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slx-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.slx-blog-card__date {
  font-size: 0.75rem;
  color: var(--slx-ink-secondary);
}

.slx-blog-card__read-time {
  font-size: 0.75rem;
  color: var(--slx-ink-secondary);
}

.slx-blog-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--slx-ink);
}

.slx-blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slx-ink-secondary);
  margin: 0;
  flex: 1;
}

.slx-article-hero {
  background: var(--slx-page-cream);
  padding-top: calc(var(--slx-nav-h) + clamp(2rem, 4vw, 3rem));
  padding-bottom: 0;
}

.slx-article-hero__inner {
  max-width: var(--slx-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.slx-article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slx-grove);
  text-decoration: none;
  margin-bottom: 1.5rem;
  padding: 0.375rem 0;
}

.slx-article-hero__back:hover {
  text-decoration: underline;
}

.slx-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.slx-article-hero__date {
  font-size: 0.8125rem;
  color: var(--slx-ink-secondary);
}

.slx-article-hero__author {
  font-size: 0.8125rem;
  color: var(--slx-ink-secondary);
}

.slx-article-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.625rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  color: var(--slx-ink);
  max-width: 24ch;
}

.slx-article-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--slx-radius-lg) var(--slx-radius-lg) 0 0;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  max-width: var(--slx-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.slx-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--slx-radius-lg);
}

.slx-article-body {
  background: var(--slx-white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.slx-article-content {
  max-width: var(--slx-reading);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.slx-article-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 2.5rem 0 1rem;
  color: var(--slx-ink);
}

.slx-article-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
  color: var(--slx-ink);
}

.slx-article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slx-ink);
  margin-bottom: 1.25rem;
}

.slx-article-content a {
  color: var(--slx-grove);
  text-decoration: underline;
}

.slx-article-content ul,
.slx-article-content ol {
  list-style: revert;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
}

.slx-article-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slx-ink);
  margin-bottom: 0.5rem;
}

.slx-article-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: var(--slx-page-stone);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  color: var(--slx-grove);
}

.slx-article-content pre {
  background: var(--slx-grove-deep);
  border-radius: var(--slx-radius);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.slx-article-content pre code {
  background: none;
  padding: 0;
  color: var(--slx-parchment-on-dark);
  font-size: 0.875rem;
}

.slx-article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--slx-page-stone);
  border-radius: var(--slx-radius-lg);
  border-left: 4px solid var(--slx-grove);
}

.slx-article-cta__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--slx-ink);
}

.slx-article-cta__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  margin: 0 0 1.25rem;
}

.slx-article-related {
  background: var(--slx-page);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.slx-article-related__inner {
  max-width: var(--slx-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.slx-article-related__heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 2rem;
  color: var(--slx-ink);
}

.slx-article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.slx-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--slx-page);
  padding: 2rem 1.5rem;
}

.slx-auth-logo {
  margin-bottom: 2.5rem;
}

.slx-auth-logo img {
  height: 32px;
  width: auto;
}

.slx-auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--slx-white);
  border-radius: var(--slx-radius-lg);
  box-shadow: 0 2px 24px rgba(20, 31, 15, 0.1);
  overflow: hidden;
}

.slx-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--slx-page-stone);
}

.slx-auth-tab {
  padding: 1rem;
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slx-ink-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--slx-transition), border-color var(--slx-transition);
  margin-bottom: -2px;
}

.slx-auth-tab.is-active {
  color: var(--slx-grove);
  border-bottom-color: var(--slx-grove);
}

.slx-auth-panel {
  display: none;
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

.slx-auth-panel.is-active {
  display: flex;
}

.slx-auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.slx-auth-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slx-ink);
}

.slx-auth-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--slx-page-stone);
  border-radius: var(--slx-radius);
  background: var(--slx-page);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: var(--slx-ink);
  transition: border-color var(--slx-transition);
}

.slx-auth-form__input:focus {
  outline: none;
  border-color: var(--slx-grove);
}

.slx-auth-form__forgot {
  font-size: 0.8125rem;
  color: var(--slx-grove);
  text-decoration: none;
  text-align: right;
  display: block;
}

.slx-auth-form__forgot:hover {
  text-decoration: underline;
}

.slx-auth-form__submit {
  width: 100%;
  padding: 0.875rem;
}

.slx-auth-form__terms {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--slx-ink-secondary);
  text-align: center;
}

.slx-auth-form__terms a {
  color: var(--slx-grove);
  text-decoration: underline;
}

.slx-auth-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slx-ink-secondary);
}

.slx-auth-footer a {
  color: var(--slx-grove);
}

.slx-auth-legal {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.slx-auth-legal a {
  font-size: 0.75rem;
  color: var(--slx-ink-secondary);
  text-decoration: none;
}

.slx-auth-legal a:hover {
  text-decoration: underline;
}

.slx-legal-page {
  background: var(--slx-page);
  padding-top: calc(var(--slx-nav-h) + var(--slx-section-py));
}

.slx-legal-hero {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.slx-legal-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--slx-ink);
}

.slx-legal-hero__meta {
  font-size: 0.875rem;
  color: var(--slx-ink-secondary);
}

.slx-legal-content {
  background: var(--slx-white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.slx-legal-prose {
  max-width: var(--slx-reading);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.slx-legal-prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 2.5rem 0 1rem;
  color: var(--slx-ink);
}

.slx-legal-prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
  color: var(--slx-ink);
}

.slx-legal-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slx-ink);
  margin-bottom: 1.25rem;
}

.slx-legal-prose ul,
.slx-legal-prose ol {
  list-style: revert;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
}

.slx-legal-prose li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slx-ink);
  margin-bottom: 0.5rem;
}

.slx-legal-prose a {
  color: var(--slx-grove);
  text-decoration: underline;
}

.slx-accuracy-callout {
  padding: 2rem 2.5rem;
  background: rgba(245, 240, 232, 0.08);
  border-left: 4px solid var(--slx-fog-on-dark);
  border-radius: 0 var(--slx-radius-lg) var(--slx-radius-lg) 0;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.slx-accuracy-callout__h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--slx-parchment-on-dark);
}

.slx-accuracy-callout__p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slx-fog-on-dark);
  margin: 0;
}

.slx-accuracy-callout__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slx-accuracy-callout__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slx-fog-on-dark);
  line-height: 1.5;
}

.slx-accuracy-callout__item::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  background: var(--slx-fog-on-dark);
  border-radius: 50%;
}

.slx-404-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slx-page);
  padding: 2rem;
}

.slx-404-inner {
  text-align: center;
  max-width: 480px;
}

.slx-404-code {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--slx-grove);
  opacity: 0.25;
  display: block;
}

.slx-404-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--slx-ink);
}

.slx-404-p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slx-ink-secondary);
  margin-bottom: 2rem;
}

.slx-use-case-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--slx-page-stone);
  border-radius: var(--slx-radius-lg);
}

.slx-use-case-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(45, 80, 22, 0.12);
  border-radius: var(--slx-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slx-grove);
  font-size: 1.125rem;
}

.slx-use-case-card__h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--slx-ink);
}

.slx-use-case-card__p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slx-ink-secondary);
  margin: 0;
}

.slx-comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--slx-radius-lg);
}

.slx-comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.slx-comparison-table th {
  background: var(--slx-grove);
  color: var(--slx-white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.25rem;
  text-align: left;
}

.slx-comparison-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--slx-ink);
  border-bottom: 1px solid var(--slx-page-stone);
}

.slx-comparison-table tr:nth-child(even) td {
  background: var(--slx-page-stone);
}

.slx-comparison-table td:not(:first-child) {
  text-align: center;
}

.slx-check-icon {
  color: var(--slx-grove);
}

.slx-cross-icon {
  color: var(--slx-ink-secondary);
  opacity: 0.4;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--slx-grove-deep);
  border-top: 1px solid rgba(184, 196, 168, 0.2);
  padding: 1.25rem 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--slx-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--slx-fog-on-dark);
  flex: 1;
  min-width: 220px;
}

.cookie-banner__text a {
  color: var(--slx-parchment-on-dark);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 0.5rem 1.125rem;
  border-radius: var(--slx-radius);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--slx-transition), color var(--slx-transition), border-color var(--slx-transition);
}

.cookie-banner__btn--primary {
  background: var(--slx-grove);
  color: var(--slx-white);
  border-color: var(--slx-grove);
}

.cookie-banner__btn--primary:hover {
  background: var(--slx-parchment-on-dark);
  color: var(--slx-grove-deep);
  border-color: var(--slx-parchment-on-dark);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--slx-fog-on-dark);
  border-color: var(--slx-fog-on-dark);
}

.cookie-banner__btn--secondary:hover {
  background: rgba(184, 196, 168, 0.15);
  color: var(--slx-parchment-on-dark);
  border-color: var(--slx-parchment-on-dark);
}

@media (max-width: 1024px) {
  .slx-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .slx-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .slx-nav__links {
    display: none;
  }

  .slx-nav__actions {
    display: none;
  }

  .slx-nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .slx-hero__h1 {
    max-width: none;
  }

  .slx-problem__grid {
    grid-template-columns: 1fr;
  }

  .slx-how-strip__steps {
    grid-template-columns: 1fr;
  }

  .slx-coverage-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .slx-pricing-preview__cards {
    grid-template-columns: 1fr;
  }

  .slx-two-col {
    grid-template-columns: 1fr;
  }

  .slx-two-col--flip {
    direction: ltr;
  }

  .slx-how-detail__grid {
    grid-template-columns: 1fr;
  }

  .slx-blog-featured__card {
    grid-template-columns: 1fr;
  }

  .slx-blog-grid__cards {
    grid-template-columns: 1fr 1fr;
  }

  .slx-team-card {
    grid-template-columns: 120px 1fr;
  }

  .slx-team-card__avatar {
    width: 120px;
    height: 120px;
  }

  .slx-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .slx-footer__brand {
    grid-column: 1 / -1;
  }

  .slx-coverage-detail {
    grid-template-columns: 1fr;
  }

  .slx-pricing-full__cards {
    grid-template-columns: 1fr;
  }

  .slx-article-related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .slx-how-steps-mock {
    grid-template-columns: 1fr;
  }

  .slx-cantonal-grid-mock {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .slx-blog-grid__cards {
    grid-template-columns: 1fr;
  }

  .slx-coverage-stats__grid {
    grid-template-columns: 1fr;
  }

  .slx-footer__inner {
    grid-template-columns: 1fr;
  }

  .slx-team-card {
    grid-template-columns: 1fr;
  }

  .slx-team-card__avatar {
    width: 100px;
    height: 100px;
  }

  .slx-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .slx-hero__ctas .slx-btn {
    justify-content: center;
  }

  .slx-cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .slx-cta-section__actions .slx-btn {
    justify-content: center;
  }

  .slx-article-related__grid {
    grid-template-columns: 1fr;
  }

  .slx-cantonal-grid-mock {
    grid-template-columns: repeat(3, 1fr);
  }

  .slx-auth-card {
    max-width: 100%;
  }
}
