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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --osm-dark-bg:         #0D1117;
  --osm-dark-bg-alt:     #111928;
  --osm-dark-border:     #1E2A3E;
  --osm-dark-text-1:     #EEF2FF;
  --osm-dark-text-2:     #8BA0BA;
  --osm-teal:            #00CFAA;
  --osm-teal-dark:       #007A65;
  --osm-light-bg:        #F5F7FA;
  --osm-light-bg-white:  #FFFFFF;
  --osm-light-border:    #DDE3EB;
  --osm-light-text-1:    #0F1923;
  --osm-light-text-2:    #4E6178;
  --osm-brand-bg:        #00CFAA;
  --osm-brand-text:      #0A1A14;

  --osm-nav-h:           64px;
  --osm-container:       1200px;
  --osm-section-py:      clamp(3rem, 6vw, 5rem);

  --osm-radius:          6px;
  --osm-radius-lg:       12px;
  --osm-transition:      0.18s ease;
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ============================================================
   RULE-A: THEME CLASSES PIN PAGE BODY BACKGROUND
   ============================================================ */

.osm-page--dark-top {
  background: var(--osm-dark-bg);
}

.osm-page--light-top {
  background: var(--osm-light-bg);
  color: var(--osm-light-text-1);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

small, .osm-small {
  font-size: 0.875rem;
}

.osm-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
}

.osm-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--osm-teal);
}

.osm-eyebrow--light {
  color: var(--osm-teal-dark);
}

.osm-section--brand .osm-eyebrow {
  color: var(--osm-brand-text);
}

.osm-section--brand .osm-btn--primary {
  background: var(--osm-brand-text);
  color: var(--osm-teal);
  border-color: var(--osm-brand-text);
}

.osm-section--brand .osm-btn--primary:hover {
  background: #0d2a1f;
  border-color: #0d2a1f;
}

/* ============================================================
   LAYOUT: PAGE CONTAINER (1200px) AND READING COLUMN (68ch)
   These two tokens are NEVER merged or aliased.
   ============================================================ */

.osm-container {
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.osm-prose {
  max-width: 68ch;
  margin-inline: auto;
}

/* ============================================================
   NAVIGATION — ALWAYS-DARK FIXED, NO TRANSPARENCY, NO SCROLL STATE
   ============================================================ */

.osm-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--osm-nav-h);
  background: var(--osm-dark-bg);
  border-bottom: 1px solid var(--osm-dark-border);
  z-index: 1000;
}

.osm-nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  gap: 1rem;
}

.osm-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

.osm-nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-inline-start: 2rem;
}

.osm-nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--osm-dark-text-2);
  padding: 0.375rem 0.75rem;
  border-radius: var(--osm-radius);
  transition: color var(--osm-transition), background var(--osm-transition);
}

.osm-nav__link:hover {
  color: var(--osm-dark-text-1);
  background: rgba(238, 242, 255, 0.06);
}

.osm-nav__link--active {
  color: var(--osm-teal);
}

.osm-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: auto;
}

.osm-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-inline-start: auto;
}

.osm-nav__hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--osm-dark-text-1);
  border-radius: 2px;
  transition: transform var(--osm-transition), opacity var(--osm-transition);
}

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

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

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

.osm-nav__mobile-menu {
  display: none;
  position: absolute;
  inset-block-start: var(--osm-nav-h);
  inset-inline: 0;
  background: var(--osm-dark-bg);
  border-bottom: 1px solid var(--osm-dark-border);
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem;
}

.osm-nav__mobile-menu--open {
  display: block;
}

.osm-nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.osm-nav__mobile-link {
  font-size: 1rem;
  color: var(--osm-dark-text-2);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--osm-dark-border);
  display: block;
}

.osm-nav__mobile-link:hover {
  color: var(--osm-dark-text-1);
}

.osm-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ============================================================
   BUTTONS — SIX VARIANTS
   ============================================================ */

.osm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.375rem;
  border-radius: var(--osm-radius);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  transition: background var(--osm-transition), color var(--osm-transition),
              border-color var(--osm-transition), opacity var(--osm-transition);
  white-space: nowrap;
}

.osm-btn--primary {
  background: var(--osm-teal);
  color: var(--osm-brand-text);
  border: 1px solid var(--osm-teal);
}

.osm-btn--primary:hover {
  background: #00b897;
  border-color: #00b897;
}

.osm-btn--outline-light {
  background: transparent;
  color: var(--osm-light-text-1);
  border: 1px solid var(--osm-light-border);
}

.osm-btn--outline-light:hover {
  background: var(--osm-light-bg);
  border-color: var(--osm-light-text-2);
}

.osm-btn--ghost-on-dark {
  background: transparent;
  color: var(--osm-dark-text-1);
  border: 1px solid var(--osm-dark-border);
}

.osm-btn--ghost-on-dark:hover {
  border-color: var(--osm-teal);
  color: var(--osm-teal);
}

.osm-btn--ghost-on-light {
  background: transparent;
  color: var(--osm-light-text-1);
  border: 1px solid var(--osm-light-text-1);
}

.osm-btn--ghost-on-light:hover {
  background: var(--osm-light-text-1);
  color: var(--osm-light-bg);
}

.osm-btn--text-link-dark {
  background: transparent;
  color: var(--osm-teal);
  border: 1px solid transparent;
  padding-inline: 0.25rem;
}

.osm-btn--text-link-dark:hover {
  color: #00b897;
  text-decoration: underline;
}

.osm-btn--text-link-light {
  background: transparent;
  color: var(--osm-teal-dark);
  border: 1px solid transparent;
  padding-inline: 0.25rem;
}

.osm-btn--text-link-light:hover {
  color: var(--osm-light-text-1);
  text-decoration: underline;
}

.osm-btn--sm {
  font-size: 0.8125rem;
  padding: 0.4rem 1rem;
}

.osm-btn--lg {
  font-size: 1rem;
  padding: 0.8rem 1.875rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.osm-footer {
  background: var(--osm-dark-bg);
  border-top: 1px solid var(--osm-dark-border);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.osm-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
}

.osm-footer__brand-logo {
  margin-bottom: 0.875rem;
}

.osm-footer__brand-logo img {
  height: 28px;
  width: auto;
}

.osm-footer__tagline {
  font-size: 0.9rem;
  color: var(--osm-dark-text-2);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.osm-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.osm-footer__contact-item {
  font-size: 0.875rem;
  color: var(--osm-dark-text-2);
}

.osm-footer__contact-item a {
  color: var(--osm-dark-text-2);
  transition: color var(--osm-transition);
}

.osm-footer__contact-item a:hover {
  color: var(--osm-teal);
}

.osm-footer__col-heading {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--osm-dark-text-2);
  margin-bottom: 1rem;
}

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

.osm-footer__col-link {
  font-size: 0.9375rem;
  color: var(--osm-dark-text-2);
  transition: color var(--osm-transition);
}

.osm-footer__col-link:hover {
  color: var(--osm-dark-text-1);
}

.osm-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid var(--osm-dark-border);
  padding-block: 1.25rem;
}

.osm-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.osm-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--osm-dark-text-2);
  transition: color var(--osm-transition);
}

.osm-footer__legal-link:hover {
  color: var(--osm-dark-text-1);
}

.osm-footer__cookie-pref {
  font-size: 0.8125rem;
  color: var(--osm-dark-text-2);
  cursor: pointer;
  transition: color var(--osm-transition);
}

.osm-footer__cookie-pref:hover {
  color: var(--osm-dark-text-1);
}

.osm-footer__copyright {
  font-size: 0.8125rem;
  color: var(--osm-dark-text-2);
}

/* ============================================================
   SECTION BG VARIANTS
   ============================================================ */

.osm-section--dark {
  background: var(--osm-dark-bg);
  color: var(--osm-dark-text-1);
}

.osm-section--dark-alt {
  background: var(--osm-dark-bg-alt);
  color: var(--osm-dark-text-1);
}

.osm-section--light {
  background: var(--osm-light-bg);
  color: var(--osm-light-text-1);
}

.osm-section--brand {
  background: var(--osm-brand-bg);
  color: var(--osm-brand-text);
}

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

/* ============================================================
   HERO — TWO-COLUMN GRID + INLINE MOCK TABLE
   ============================================================ */

.osm-hero {
  padding-top: calc(var(--osm-nav-h) + var(--osm-section-py));
  padding-bottom: var(--osm-section-py);
  background: var(--osm-dark-bg);
}

.osm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.osm-hero__eyebrow {
  margin-bottom: 1rem;
}

.osm-hero__h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--osm-dark-text-1);
  margin-bottom: 1.25rem;
}

.osm-hero__sub {
  font-size: 1.0625rem;
  color: var(--osm-dark-text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.osm-hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.osm-hero__mock {
  background: var(--osm-dark-bg-alt);
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
}

/* osm-hero-depth-table inline mock */

.osm-hero-depth-table {
  overflow-x: auto;
}

.osm-hero-depth-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--osm-dark-border);
}

.osm-hero-depth-table__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--osm-dark-text-2);
  letter-spacing: 0.05em;
}

.osm-hero-depth-table__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--osm-teal);
  box-shadow: 0 0 6px var(--osm-teal);
}

.osm-hero-depth-table__table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
}

.osm-hero-depth-table__table thead th {
  padding: 0.625rem 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--osm-dark-text-2);
  border-bottom: 1px solid var(--osm-dark-border);
}

.osm-hero-depth-table__table tbody td {
  padding: 0.6rem 1rem;
  color: var(--osm-dark-text-1);
  border-bottom: 1px solid rgba(30, 42, 62, 0.6);
  white-space: nowrap;
}

.osm-hero-depth-table__val {
  color: var(--osm-teal);
  font-weight: 500;
}

.osm-hero-depth-table__row--highlight td {
  background: rgba(0, 207, 170, 0.07);
}

.osm-hero-depth-table__row--highlight .osm-hero-depth-table__val {
  color: var(--osm-teal);
  font-weight: 700;
}

.osm-hero-depth-table__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 207, 170, 0.15);
  color: var(--osm-teal);
  border-radius: 3px;
  padding: 1px 5px;
  margin-left: 0.375rem;
}

/* ============================================================
   SUBHERO — SUB-PAGE HERO SHARED PATTERN
   ============================================================ */

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

.osm-subhero--dark {
  background: var(--osm-dark-bg);
  color: var(--osm-dark-text-1);
}

.osm-subhero--light {
  background: var(--osm-light-bg);
  color: var(--osm-light-text-1);
}

.osm-subhero__inner {
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.osm-subhero__eyebrow {
  margin-bottom: 0.875rem;
}

.osm-subhero__h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 720px;
}

.osm-subhero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 60ch;
  opacity: 0.85;
}

.osm-subhero__ornament {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.osm-subhero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius);
  min-width: 120px;
}

.osm-subhero__stat-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--osm-teal);
}

.osm-subhero__stat-label {
  font-size: 0.75rem;
  color: var(--osm-dark-text-2);
  letter-spacing: 0.04em;
}

/* ============================================================
   INDEX: PROBLEM SECTION
   ============================================================ */

.osm-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  align-items: start;
}

.osm-problem__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  margin-bottom: 1.25rem;
}

.osm-problem__body {
  color: var(--osm-light-text-2);
  line-height: 1.7;
}

.osm-problem__pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.osm-problem__pain-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: var(--osm-light-bg-white);
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius);
}

.osm-problem__pain-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--osm-teal-dark);
}

.osm-problem__pain-text {
  font-size: 0.9375rem;
  color: var(--osm-light-text-2);
  line-height: 1.5;
}

/* ============================================================
   INDEX: CAPABILITIES SECTION
   ============================================================ */

.osm-capabilities__heading-row {
  text-align: center;
  margin-bottom: 3rem;
}

.osm-capabilities__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-dark-text-1);
  margin-top: 0.75rem;
}

.osm-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.osm-capabilities__card {
  background: var(--osm-dark-bg-alt);
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius-lg);
  padding: 1.75rem;
}

.osm-capabilities__card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--osm-teal);
}

.osm-capabilities__card-heading {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-dark-text-1);
  margin-bottom: 0.625rem;
}

.osm-capabilities__card-body {
  font-size: 0.9375rem;
  color: var(--osm-dark-text-2);
  line-height: 1.65;
}

/* ============================================================
   INDEX: HOW IT WORKS + osm-pipeline-mock
   ============================================================ */

.osm-hiw__heading-row {
  text-align: center;
  margin-bottom: 2.5rem;
}

.osm-hiw__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  margin-top: 0.75rem;
}

.osm-hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.osm-hiw__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.osm-hiw__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--osm-teal-dark);
  color: var(--osm-light-bg-white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.osm-hiw__step-heading {
  font-size: 1.0625rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  color: var(--osm-light-text-1);
  line-height: 1.25;
}

.osm-hiw__step-body {
  font-size: 0.9rem;
  color: var(--osm-light-text-2);
  line-height: 1.6;
}

.osm-pipeline-mock {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
  background: var(--osm-light-bg-white);
}

.osm-pipeline-mock__box {
  flex: 1;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--osm-light-border);
  position: relative;
}

.osm-pipeline-mock__box:last-child {
  border-right: none;
}

.osm-pipeline-mock__box--center {
  background: var(--osm-teal);
  border-color: var(--osm-teal);
}

.osm-pipeline-mock__chevron {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 14px;
  height: 28px;
  color: var(--osm-light-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.osm-pipeline-mock__chevron--center {
  color: var(--osm-teal);
}

.osm-pipeline-mock__label {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--osm-light-text-2);
  margin-bottom: 0.25rem;
}

.osm-pipeline-mock__box--center .osm-pipeline-mock__label {
  color: var(--osm-brand-text);
  opacity: 0.75;
}

.osm-pipeline-mock__item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--osm-light-text-1);
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  border-left: 2px solid var(--osm-light-border);
}

.osm-pipeline-mock__box--center .osm-pipeline-mock__item {
  background: rgba(10, 26, 20, 0.12);
  border-left-color: var(--osm-brand-text);
  color: var(--osm-brand-text);
  font-weight: 500;
}

/* ============================================================
   INDEX: USE CASES PREVIEW CARDS
   ============================================================ */

.osm-uc-preview__heading-row {
  text-align: center;
  margin-bottom: 2.5rem;
}

.osm-uc-preview__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-dark-text-1);
  margin-top: 0.75rem;
}

.osm-uc-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.osm-uc-preview__card {
  background: var(--osm-dark-bg-alt);
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--osm-transition);
}

.osm-uc-preview__card:hover {
  border-color: var(--osm-teal);
}

.osm-uc-preview__card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--osm-teal);
}

.osm-uc-preview__card-heading {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-dark-text-1);
}

.osm-uc-preview__card-body {
  font-size: 0.9375rem;
  color: var(--osm-dark-text-2);
  line-height: 1.65;
  flex: 1;
}

.osm-uc-preview__card-link {
  font-size: 0.9rem;
  color: var(--osm-teal);
  font-family: 'IBM Plex Mono', monospace;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  transition: gap var(--osm-transition);
}

.osm-uc-preview__card-link:hover {
  gap: 0.625rem;
}

/* ============================================================
   INDEX: EARLY ACCESS SECTION (BRAND BG)
   ============================================================ */

.osm-early-access {
  text-align: center;
}

.osm-early-access__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-brand-text);
  margin-bottom: 1.25rem;
}

.osm-early-access__body {
  font-size: 1.0625rem;
  color: var(--osm-brand-text);
  opacity: 0.82;
  line-height: 1.7;
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.osm-early-access__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.osm-early-access__contact {
  font-size: 0.875rem;
  color: var(--osm-brand-text);
  opacity: 0.7;
}

.osm-early-access__contact a {
  color: var(--osm-brand-text);
  font-weight: 500;
  text-decoration: underline;
}

/* ============================================================
   PLATFORM PAGE COMPONENTS
   ============================================================ */

.osm-platform-coverage__img {
  aspect-ratio: 15 / 8;
  width: 100%;
  object-fit: cover;
  border-radius: var(--osm-radius-lg);
  margin-top: 2rem;
}

.osm-platform-coverage__protocols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.875rem;
  margin-top: 2rem;
}

.osm-platform-coverage__protocol-item {
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--osm-light-text-1);
  background: var(--osm-light-bg-white);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.osm-platform-coverage__protocol-chain {
  font-size: 0.6875rem;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--osm-accent-teal-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.osm-platform-coverage__protocol-name {
  font-size: 0.875rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  color: var(--osm-light-text-1);
}

.osm-platform-coverage__protocol-desc {
  font-size: 0.75rem;
  color: var(--osm-light-text-2);
  line-height: 1.5;
}

.osm-platform-coverage__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  margin-bottom: 0.75rem;
}

.osm-platform-coverage__sub {
  font-size: 1.0625rem;
  color: var(--osm-light-text-2);
  line-height: 1.7;
}

/* osm-depth-chart-mock */

.osm-depth-chart-mock {
  background: var(--osm-dark-bg-alt);
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 480px;
}

.osm-depth-chart-mock__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--osm-dark-text-2);
  margin-bottom: 1rem;
}

.osm-depth-chart-mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: 100px;
}

.osm-depth-chart-mock__bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
}

.osm-depth-chart-mock__bar {
  width: 100%;
  background: var(--osm-teal);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

.osm-depth-chart-mock__bar-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: var(--osm-dark-text-2);
  text-align: center;
}

.osm-depth-chart-mock__bar-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--osm-teal);
  text-align: center;
  margin-bottom: 0.25rem;
}

/* osm-routing-table-mock */

.osm-routing-table-mock {
  margin-top: 2rem;
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
  background: var(--osm-light-bg-white);
}

.osm-routing-table-mock__table {
  width: 100%;
  border-collapse: collapse;
}

.osm-routing-table-mock__table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--osm-light-text-2);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--osm-light-border);
  background: var(--osm-light-bg);
}

.osm-routing-table-mock__table tbody td {
  padding: 0.7rem 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--osm-light-text-1);
  border-bottom: 1px solid var(--osm-light-border);
}

.osm-routing-table-mock__row--best td {
  background: rgba(0, 122, 101, 0.06);
}

.osm-routing-table-mock__best-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-family: 'IBM Plex Mono', monospace;
  background: rgba(0, 122, 101, 0.12);
  color: var(--osm-teal-dark);
  border-radius: 3px;
  padding: 1px 5px;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.osm-routing-table-mock__val--teal {
  color: var(--osm-teal-dark);
  font-weight: 500;
}

/* Platform export section */

.osm-platform-export__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.osm-platform-export__item {
  background: var(--osm-dark-bg-alt);
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius-lg);
  padding: 1.5rem;
}

.osm-platform-export__icon {
  width: 36px;
  height: 36px;
  color: var(--osm-teal);
  margin-bottom: 0.875rem;
}

.osm-platform-export__heading {
  font-size: 1.0625rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-dark-text-1);
  margin-bottom: 0.5rem;
}

.osm-platform-export__body {
  font-size: 0.875rem;
  color: var(--osm-dark-text-2);
  line-height: 1.6;
}

.osm-platform-export__tier-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--osm-teal);
  margin-top: 0.625rem;
}

/* Generic text-content section used across pages */

.osm-text-content {
  max-width: 760px;
}

.osm-text-content__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.osm-text-content__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  opacity: 0.85;
}

.osm-text-content__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   USE-CASES PAGE
   ============================================================ */

.osm-uc-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
}

.osm-uc-section__grid--flip {
  direction: rtl;
}

.osm-uc-section__grid--flip > * {
  direction: ltr;
}

.osm-uc-section__eyebrow {
  margin-bottom: 0.75rem;
}

.osm-uc-section__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.osm-uc-section__body {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.osm-uc-section__img-wrap {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-radius: var(--osm-radius-lg);
  background: var(--osm-dark-border);
}

.osm-uc-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

.osm-pricing-intro {
  text-align: center;
  margin-bottom: 0.5rem;
}

.osm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.osm-pricing-card {
  background: var(--osm-light-bg-white);
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.osm-pricing-card--highlight {
  border-color: var(--osm-teal-dark);
  box-shadow: 0 0 0 1px var(--osm-teal-dark);
}

.osm-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--osm-teal-dark);
  color: var(--osm-light-bg-white);
  font-size: 0.6875rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.osm-pricing-card__name {
  font-size: 0.875rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--osm-light-text-2);
  margin-bottom: 1rem;
}

.osm-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}

.osm-pricing-card__price {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--osm-light-text-1);
}

.osm-pricing-card__price-unit {
  font-size: 0.875rem;
  color: var(--osm-light-text-2);
}

.osm-pricing-card__billing {
  font-size: 0.8125rem;
  color: var(--osm-light-text-2);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 2.5rem;
}

.osm-pricing-card__capacity {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--osm-teal-dark);
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 122, 101, 0.07);
  border-radius: var(--osm-radius);
}

.osm-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.osm-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--osm-light-text-2);
  line-height: 1.5;
}

.osm-pricing-card__feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--osm-teal-dark);
}

/* ============================================================
   PRICING FAQ ACCORDION
   Single fold mechanism: CSS class only, no hidden attribute
   ============================================================ */

.osm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  max-width: 760px;
  margin-inline: auto;
}

.osm-faq__item {
  border-bottom: 1px solid var(--osm-light-border);
}

.osm-faq__item:last-child {
  border-bottom: none;
}

.osm-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--osm-light-text-1);
  background: var(--osm-light-bg-white);
  cursor: pointer;
  text-align: left;
  line-height: 1.45;
}

.osm-faq__question:hover {
  background: var(--osm-light-bg);
}

.osm-faq__caret {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--osm-light-text-2);
  transition: transform var(--osm-transition);
}

.osm-faq__item--open .osm-faq__caret {
  transform: rotate(180deg);
}

.osm-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.osm-faq__item--open .osm-faq__answer {
  max-height: 600px;
}

.osm-faq__answer-inner {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--osm-light-text-2);
  line-height: 1.7;
  background: var(--osm-light-bg-white);
}

/* ============================================================
   ABOUT PAGE — TEAM CARDS
   ============================================================ */

.osm-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.osm-team-card {
  background: var(--osm-dark-bg-alt);
  border: 1px solid var(--osm-dark-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
}

.osm-team-card__portrait {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--osm-dark-border);
}

.osm-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.osm-team-card__initials {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--osm-teal);
  background: var(--osm-dark-bg-alt);
}

.osm-team-card__info {
  padding: 1.25rem;
}

.osm-team-card__name {
  font-size: 1.0625rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-dark-text-1);
  margin-bottom: 0.25rem;
}

.osm-team-card__role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--osm-teal);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.osm-team-card__bio {
  font-size: 0.875rem;
  color: var(--osm-dark-text-2);
  line-height: 1.6;
}

/* About: mission and contact */

.osm-about-mission {
  max-width: 720px;
  margin-inline: auto;
}

.osm-about-mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 4rem;
  align-items: start;
}

.osm-about-mission__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  margin-bottom: 1rem;
}

.osm-about-mission__body {
  font-size: 1rem;
  color: var(--osm-light-text-2);
  line-height: 1.7;
}

.osm-contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: start;
}

.osm-contact-section__h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  margin-bottom: 1rem;
}

.osm-contact-section__intro {
  font-size: 1rem;
  color: var(--osm-light-text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.osm-contact-section__info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.osm-contact-section__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--osm-light-text-2);
  line-height: 1.5;
}

.osm-contact-section__info-item a {
  color: var(--osm-teal-dark);
}

.osm-contact-section__info-item a:hover {
  text-decoration: underline;
}

/* ============================================================
   BLOG INDEX
   ============================================================ */

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

.osm-blog-hero__inner {
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.osm-blog-hero__eyebrow {
  margin-bottom: 0.875rem;
}

.osm-blog-hero__h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--osm-dark-text-1);
  margin-bottom: 0.875rem;
}

.osm-blog-hero__sub {
  font-size: 1.0625rem;
  color: var(--osm-dark-text-2);
  line-height: 1.65;
}

.osm-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
  background: var(--osm-light-bg-white);
  margin-bottom: 3rem;
}

.osm-blog-featured__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--osm-dark-border);
}

.osm-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.osm-blog-featured__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.osm-blog-featured__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--osm-teal-dark);
  margin-bottom: 0.75rem;
}

.osm-blog-featured__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-light-text-1);
  margin-bottom: 0.875rem;
}

.osm-blog-featured__title a {
  color: inherit;
  transition: color var(--osm-transition);
}

.osm-blog-featured__title a:hover {
  color: var(--osm-teal-dark);
}

.osm-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--osm-light-text-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.osm-blog-featured__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--osm-light-text-2);
  display: flex;
  gap: 1rem;
}

.osm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.osm-blog-card {
  background: var(--osm-light-bg-white);
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--osm-transition), border-color var(--osm-transition);
}

.osm-blog-card:hover {
  border-color: var(--osm-teal-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.osm-blog-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--osm-light-border);
}

.osm-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.osm-blog-card:hover .osm-blog-card__img {
  transform: scale(1.03);
}

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

.osm-blog-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--osm-teal-dark);
}

.osm-blog-card__title {
  font-size: 1rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: var(--osm-light-text-1);
  margin: 0;
}

.osm-blog-card__title a {
  color: inherit;
  transition: color var(--osm-transition);
}

.osm-blog-card__title a:hover {
  color: var(--osm-teal-dark);
}

.osm-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--osm-light-text-2);
  line-height: 1.6;
  flex: 1;
}

.osm-blog-card__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--osm-light-text-2);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ============================================================
   BLOG ARTICLE CHROME
   ============================================================ */

.osm-article-header {
  padding-top: calc(var(--osm-nav-h) + var(--osm-section-py));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--osm-light-bg);
}

.osm-article-header__inner {
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.osm-article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--osm-teal-dark);
  margin-bottom: 1.5rem;
  transition: gap var(--osm-transition);
}

.osm-article-header__back:hover {
  gap: 0.625rem;
}

.osm-article-header__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--osm-teal-dark);
  margin-bottom: 0.875rem;
}

.osm-article-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  max-width: 760px;
  margin-bottom: 1rem;
}

.osm-article-header__meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--osm-light-text-2);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.osm-article-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-width: var(--osm-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.osm-article-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--osm-radius-lg);
}

.osm-article-body {
  background: var(--osm-light-bg);
  padding-bottom: var(--osm-section-py);
}

.osm-blog-content {
  max-width: 68ch;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.osm-blog-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-light-text-1);
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
}

.osm-blog-content h3 {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--osm-light-text-1);
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.osm-blog-content p {
  font-size: 1rem;
  color: var(--osm-light-text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.osm-blog-content ul,
.osm-blog-content ol {
  list-style: revert;
  margin-left: 1.375rem;
  margin-bottom: 1.25rem;
  color: var(--osm-light-text-2);
  line-height: 1.7;
}

.osm-blog-content a {
  color: var(--osm-teal-dark);
  text-decoration: underline;
}

.osm-blog-content strong {
  font-weight: 600;
  color: var(--osm-light-text-1);
}

.osm-blog-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: rgba(0, 122, 101, 0.07);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--osm-teal-dark);
}

.osm-article-related {
  background: var(--osm-light-bg);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--osm-light-border);
}

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

.osm-article-related__heading {
  font-size: 1.125rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--osm-light-text-1);
  margin-bottom: 1.25rem;
}

.osm-article-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* ============================================================
   AUTH PAGES — FULLSCREEN CARD
   ============================================================ */

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

.osm-auth-card {
  background: var(--osm-light-bg-white);
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius-lg);
  padding: clamp(2rem, 5vw, 2.75rem);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 24px rgba(15, 25, 35, 0.08);
}

.osm-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.osm-auth-card__logo img {
  height: 28px;
  width: auto;
}

.osm-auth-card__heading {
  font-size: 1.5rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  text-align: center;
  margin-bottom: 0.5rem;
}

.osm-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--osm-light-text-2);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.osm-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.osm-auth-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--osm-light-text-1);
}

.osm-auth-form__input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--osm-light-text-1);
  background: var(--osm-light-bg);
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius);
  transition: border-color var(--osm-transition), box-shadow var(--osm-transition);
  outline: none;
}

.osm-auth-form__input:focus {
  border-color: var(--osm-teal-dark);
  box-shadow: 0 0 0 2px rgba(0, 122, 101, 0.15);
}

.osm-auth-form__input::placeholder {
  color: var(--osm-light-text-2);
  opacity: 0.55;
}

.osm-auth-form__textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--osm-light-text-1);
  background: var(--osm-light-bg);
  border: 1px solid var(--osm-light-border);
  border-radius: var(--osm-radius);
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color var(--osm-transition);
}

.osm-auth-form__textarea:focus {
  border-color: var(--osm-teal-dark);
}

.osm-auth-form__actions {
  margin-top: 0.5rem;
}

.osm-auth-form__actions .osm-btn {
  width: 100%;
  justify-content: center;
}

.osm-auth-form__hint {
  font-size: 0.8125rem;
  color: var(--osm-light-text-2);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.osm-auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.375rem;
}

.osm-auth-links__item {
  font-size: 0.875rem;
  color: var(--osm-light-text-2);
}

.osm-auth-links__item a {
  color: var(--osm-teal-dark);
  font-weight: 500;
  transition: color var(--osm-transition);
}

.osm-auth-links__item a:hover {
  text-decoration: underline;
}

.osm-auth-footer {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--osm-light-border);
}

.osm-auth-footer__link {
  font-size: 0.8125rem;
  color: var(--osm-light-text-2);
  transition: color var(--osm-transition);
}

.osm-auth-footer__link:hover {
  color: var(--osm-teal-dark);
}

/* ============================================================
   LEGAL CONTENT — SHARED CONTAINER (osm-legal-content)
   abw-legal wraps its prose in this class.
   ============================================================ */

.osm-legal-content {
  max-width: 68ch;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: var(--osm-section-py);
  color: var(--osm-light-text-1);
  background: var(--osm-light-bg);
}

.osm-legal-content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--osm-light-text-1);
  margin-bottom: 0.5rem;
}

.osm-legal-content h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--osm-light-text-1);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.osm-legal-content p {
  font-size: 1rem;
  color: var(--osm-light-text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.osm-legal-content ul,
.osm-legal-content ol {
  list-style: revert;
  margin-left: 1.375rem;
  margin-bottom: 1rem;
  color: var(--osm-light-text-2);
  line-height: 1.7;
}

.osm-legal-content a {
  color: var(--osm-teal-dark);
  text-decoration: underline;
}

.osm-legal-content time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--osm-light-text-2);
}

/* Legal page nav-clearance wrapper */

.osm-legal-header {
  padding-top: calc(var(--osm-nav-h) + 2rem);
  padding-bottom: 2rem;
  background: var(--osm-light-bg);
}

.osm-legal-header .osm-legal-content {
  padding-block: 0;
}

/* legal body section — no top padding, header provides the gap */
.osm-legal-header + section .osm-legal-content {
  padding-top: 0;
}

/* Legal table — responsive wrapper prevents 375px column crush */
.osm-legal-content .osm-legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.osm-legal-content .osm-legal-table-wrap table {
  min-width: 480px;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  color: var(--osm-light-text-2);
}

.osm-legal-content .osm-legal-table-wrap th {
  text-align: left;
  font-weight: 500;
  color: var(--osm-light-text-1);
  border-bottom: 2px solid var(--osm-light-border);
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

.osm-legal-content .osm-legal-table-wrap td {
  border-bottom: 1px solid var(--osm-light-border);
  padding: 0.5rem 0.75rem;
  vertical-align: top;
}

/* Legal address block */
.osm-legal-content address {
  font-style: normal;
  color: var(--osm-light-text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ============================================================
   COOKIE BANNER
   Exact JS-emitted modifier selectors: --primary and --secondary
   ============================================================ */

.cookie-banner {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  background: var(--osm-dark-bg-alt);
  border-top: 1px solid var(--osm-dark-border);
  z-index: 2000;
  padding: 1rem clamp(1rem, 4vw, 2rem);
}

.cookie-banner__inner {
  max-width: var(--osm-container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--osm-dark-text-2);
  line-height: 1.55;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--osm-teal);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

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

.cookie-banner__btn--primary {
  background: var(--osm-teal);
  color: var(--osm-brand-text);
  border-color: var(--osm-teal);
}

.cookie-banner__btn--primary:hover {
  background: #00b897;
  border-color: #00b897;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--osm-dark-text-1);
  border-color: var(--osm-dark-border);
}

.cookie-banner__btn--secondary:hover {
  border-color: var(--osm-dark-text-2);
  color: var(--osm-dark-text-1);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.osm-section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.osm-section-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 58ch;
}

.osm-text-center {
  text-align: center;
}

.osm-mt-1 { margin-top: 0.5rem; }
.osm-mt-2 { margin-top: 1rem; }
.osm-mt-3 { margin-top: 1.5rem; }
.osm-mt-4 { margin-top: 2rem; }

.osm-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;
}

/* IntersectionObserver fade-in */

.osm-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* osm-blog-filter */

.osm-blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.osm-blog-filter__btn.is-active {
  background: var(--osm-teal);
  color: var(--osm-brand-text);
  border-color: var(--osm-teal);
}

.osm-blog-filter__btn.is-active:hover {
  background: #00b897;
  border-color: #00b897;
}

/* ============================================================
   RESPONSIVE — @MEDIA SECTION IS THE END OF THIS FILE.
   NO RULES MAY BE APPENDED AFTER THIS BLOCK.
   ============================================================ */

@media (max-width: 1024px) {
  .osm-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .osm-platform-export__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .osm-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  .osm-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .osm-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .osm-hiw__steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .osm-contact-section__grid {
    grid-template-columns: 1fr;
  }
}

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

  .osm-nav__actions {
    display: none;
  }

  .osm-nav__hamburger {
    display: flex;
  }

  .osm-hero__inner {
    grid-template-columns: 1fr;
  }

  .osm-hero__mock {
    order: -1;
  }

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

  .osm-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .osm-uc-preview__grid {
    grid-template-columns: 1fr;
  }

  .osm-uc-section__grid {
    grid-template-columns: 1fr;
  }

  .osm-uc-section__grid--flip {
    direction: ltr;
  }

  .osm-blog-featured {
    grid-template-columns: 1fr;
  }

  .osm-blog-featured__img-wrap {
    aspect-ratio: 16 / 9;
  }

  .osm-blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .osm-pipeline-mock {
    flex-direction: column;
  }

  .osm-pipeline-mock__box {
    border-right: none;
    border-bottom: 1px solid var(--osm-light-border);
  }

  .osm-pipeline-mock__box--center {
    border-bottom-color: var(--osm-teal);
  }

  .osm-pipeline-mock__box:last-child {
    border-bottom: none;
  }

  .osm-pipeline-mock__chevron {
    display: none;
  }

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

  .osm-footer__grid {
    grid-template-columns: 1fr;
  }

  .osm-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .osm-subhero__ornament {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .osm-team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

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

  .osm-depth-chart-mock {
    max-width: 100%;
  }

  .osm-early-access__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .osm-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .osm-subhero__stat {
    min-width: 100px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .osm-cookie-actions {
    width: 100%;
  }

  .osm-auth-card {
    padding: 1.5rem 1.25rem;
  }
}
