:root {
  --void: #0A0C10;
  --terminal-deep: #0F1218;
  --terminal-surface: #161B24;
  --terminal-panel: #1E2535;
  --terminal-border: #2A3346;
  --stone-bg: #F3F1EE;
  --stone-card: #ECEAE6;
  --stone-border: #D4D0C8;
  --white: #FFFFFF;
  --signal-orange: #F07020;
  --signal-orange-dim: #C05818;
  --signal-orange-glow: rgba(240, 112, 32, 0.09);
  --baseline-green: #2CB67D;
  --baseline-green-dim: #1F8F60;
  --alert-red: #E04040;
  --metric-grid: #2A3346;
  --on-dark-primary: #E8EBF0;
  --on-dark-secondary: #8B99B5;
  --on-dark-muted: #4E5E7A;
  --on-light-primary: #0F1218;
  --on-light-secondary: #3A4560;
  --on-light-muted: #6B7890;
  --radius-card: 6px;
  --radius-btn: 4px;
  --radius-input: 2px;
  --font-heading: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --section-py: 96px;
  --section-py-mobile: 64px;
  --container-max: 1200px;
  --transition: 180ms ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--void);
  color: var(--on-dark-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.ohq-page--light-top {
  background: var(--stone-bg);
  color: var(--on-light-primary);
}

body.ohq-page--dark-top {
  background: var(--void);
  color: var(--on-dark-primary);
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
}

.ohq-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.ohq-section--dark {
  background: var(--void);
  color: var(--on-dark-primary);
}

.ohq-section--dark-alt {
  background: var(--terminal-deep);
  color: var(--on-dark-primary);
}

.ohq-section--dark-surface {
  background: var(--terminal-surface);
  color: var(--on-dark-primary);
}

.ohq-section--light {
  background: var(--stone-bg);
  color: var(--on-light-primary);
}

.ohq-section--light-alt {
  background: var(--stone-card);
  color: var(--on-light-primary);
}

.ohq-section--white {
  background: var(--white);
  color: var(--on-light-primary);
}

.ohq-section--brand {
  background: var(--signal-orange);
  color: var(--white);
}

.ohq-section-pad {
  padding: var(--section-py) 0;
}

.ohq-section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 0.75rem;
}

.ohq-section-label--light {
  color: var(--signal-orange-dim);
}

.ohq-section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--on-dark-primary);
}

.ohq-section--light .ohq-section-headline,
.ohq-section--light-alt .ohq-section-headline,
.ohq-section--white .ohq-section-headline {
  color: var(--on-light-primary);
}

.ohq-section-sub {
  font-size: 18px;
  color: var(--on-dark-secondary);
  line-height: 1.65;
  max-width: 600px;
}

.ohq-text-center .ohq-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.ohq-section--light .ohq-section-sub,
.ohq-section--light-alt .ohq-section-sub,
.ohq-section--white .ohq-section-sub {
  color: var(--on-light-secondary);
}

.ohq-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.ohq-page--dark-top .ohq-nav {
  background: transparent;
}

.ohq-page--light-top .ohq-nav {
  background: var(--stone-bg);
  border-bottom: 1px solid var(--stone-border);
}

.ohq-nav.ohq-nav--scrolled {
  background: var(--terminal-deep);
  box-shadow: 0 1px 0 var(--terminal-border);
}

.ohq-page--light-top .ohq-nav.ohq-nav--scrolled {
  background: var(--terminal-deep);
  box-shadow: 0 1px 0 var(--terminal-border);
}

.ohq-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.ohq-nav__logo img {
  height: 30px;
  width: auto;
}

.ohq-logo--light {
  display: block;
}

.ohq-logo--dark {
  display: none;
}

.ohq-page--light-top .ohq-nav .ohq-logo--light {
  display: none;
}

.ohq-page--light-top .ohq-nav .ohq-logo--dark {
  display: block;
}

.ohq-page--light-top .ohq-nav.ohq-nav--scrolled .ohq-logo--light {
  display: block !important;
}

.ohq-page--light-top .ohq-nav.ohq-nav--scrolled .ohq-logo--dark {
  display: none !important;
}

.ohq-page--dark-top .ohq-nav.ohq-nav--scrolled .ohq-logo--light {
  display: block !important;
}

.ohq-page--dark-top .ohq-nav.ohq-nav--scrolled .ohq-logo--dark {
  display: none !important;
}

.ohq-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.ohq-nav__link {
  font-size: 14px;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  color: var(--on-dark-secondary);
  text-decoration: none;
}

.ohq-page--dark-top .ohq-nav .ohq-nav__link {
  color: var(--on-dark-secondary);
}

.ohq-page--dark-top .ohq-nav .ohq-nav__link:hover {
  color: var(--on-dark-primary);
  background: rgba(255,255,255,0.06);
}

.ohq-page--light-top .ohq-nav .ohq-nav__link {
  color: var(--on-light-secondary);
}

.ohq-page--light-top .ohq-nav .ohq-nav__link:hover {
  color: var(--on-light-primary);
  background: rgba(0,0,0,0.05);
}

.ohq-nav.ohq-nav--scrolled .ohq-nav__link {
  color: var(--on-dark-secondary) !important;
}

.ohq-nav.ohq-nav--scrolled .ohq-nav__link:hover {
  color: var(--on-dark-primary) !important;
  background: rgba(255,255,255,0.06) !important;
}

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

.ohq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.ohq-btn--primary {
  background: var(--signal-orange);
  color: var(--white);
  border: 1px solid var(--signal-orange);
}

.ohq-btn--primary:hover {
  background: var(--signal-orange-dim);
  border-color: var(--signal-orange-dim);
  color: var(--white);
}

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

.ohq-btn--ghost-on-dark:hover {
  color: var(--on-dark-primary);
  border-color: var(--on-dark-primary);
  background: rgba(255,255,255,0.04);
}

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

.ohq-btn--ghost-on-light:hover {
  color: var(--on-light-primary);
  border-color: var(--on-light-primary);
}

.ohq-btn--outline-dark {
  background: transparent;
  color: var(--on-light-primary);
  border: 1px solid var(--on-light-primary);
}

.ohq-btn--outline-dark:hover {
  background: var(--on-light-primary);
  color: var(--white);
}

.ohq-btn--lg {
  font-size: 15px;
  padding: 0.75rem 1.75rem;
}

.ohq-btn--sm {
  font-size: 13px;
  padding: 0.35rem 0.85rem;
}

.ohq-page--dark-top .ohq-nav .ohq-nav-signin {
  color: var(--on-dark-secondary);
  border-color: var(--terminal-border);
}

.ohq-page--light-top .ohq-nav .ohq-nav-signin {
  color: var(--on-light-secondary);
  border-color: var(--stone-border);
}

.ohq-nav.ohq-nav--scrolled .ohq-nav-signin {
  color: var(--on-dark-secondary) !important;
  border-color: var(--terminal-border) !important;
}

.ohq-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

.ohq-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-dark-secondary);
  border-radius: 1px;
  transition: all var(--transition);
}

.ohq-page--light-top .ohq-nav .ohq-nav__hamburger span {
  background: var(--on-light-secondary);
}

.ohq-nav.ohq-nav--scrolled .ohq-nav__hamburger span {
  background: var(--on-dark-secondary) !important;
}

.ohq-nav__hamburger.ohq-is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ohq-nav__hamburger.ohq-is-open span:nth-child(2) {
  opacity: 0;
}

.ohq-nav__hamburger.ohq-is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ohq-nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--terminal-deep);
  border-bottom: 1px solid var(--terminal-border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
}

.ohq-nav__mobile.ohq-is-open {
  display: flex;
}

.ohq-nav__mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark-secondary);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--terminal-border);
  text-decoration: none;
  transition: color var(--transition);
}

.ohq-nav__mobile-link:last-child {
  border-bottom: none;
}

.ohq-nav__mobile-link:hover {
  color: var(--on-dark-primary);
}

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

.ohq-hero {
  padding-top: 128px;
  padding-bottom: var(--section-py);
  position: relative;
  overflow: hidden;
}

.ohq-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ohq-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.ohq-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,12,16,0.9) 40%, rgba(10,12,16,0.5) 100%);
}

.ohq-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ohq-hero__content {
  max-width: 560px;
}

.ohq-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ohq-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--signal-orange);
}

.ohq-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--on-dark-primary);
  margin-bottom: 1.25rem;
}

.ohq-hero__h1 strong {
  font-weight: 600;
  color: var(--white);
}

.ohq-hero__sub {
  font-size: 17px;
  color: var(--on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ohq-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ohq-hero__cta-note {
  font-size: 12px;
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  margin-top: 0.4rem;
}

.ohq-hero__stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--terminal-border);
}

.ohq-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ohq-hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--signal-orange);
}

.ohq-hero__stat-label {
  font-size: 12px;
  color: var(--on-dark-muted);
  line-height: 1.4;
  max-width: 160px;
}

.ohq-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ohq-alert-stream {
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  font-family: var(--font-mono);
}

.ohq-alert-stream__header {
  background: var(--terminal-surface);
  border-bottom: 1px solid var(--terminal-border);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ohq-alert-stream__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terminal-border);
}

.ohq-alert-stream__dot--active {
  background: var(--baseline-green);
  box-shadow: 0 0 6px var(--baseline-green);
}

.ohq-alert-stream__title {
  font-size: 11px;
  color: var(--on-dark-muted);
  flex: 1;
  text-align: center;
  letter-spacing: 0.08em;
}

.ohq-alert-stream__body {
  padding: 0.5rem 0;
  max-height: 320px;
  overflow: hidden;
}

.ohq-alert-stream__list {
  display: flex;
  flex-direction: column;
}

.ohq-alert-row {
  display: grid;
  grid-template-columns: 70px 1fr 90px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  font-size: 11px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(42,51,70,0.5);
  transition: background var(--transition);
}

.ohq-alert-row:last-child {
  border-bottom: none;
}

.ohq-alert-row--suppressed {
  opacity: 0.45;
}

.ohq-alert-row--suppressed .ohq-alert-row__service {
  text-decoration: line-through;
  color: var(--on-dark-muted);
}

.ohq-alert-row--suppressed .ohq-alert-row__metric {
  text-decoration: line-through;
  color: var(--on-dark-muted);
}

.ohq-alert-row--paged {
  background: rgba(240, 112, 32, 0.07);
}

.ohq-alert-row__service {
  color: var(--on-dark-secondary);
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ohq-alert-row__metric {
  color: var(--on-dark-secondary);
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ohq-alert-row--paged .ohq-alert-row__service {
  color: var(--on-dark-primary);
}

.ohq-alert-row--paged .ohq-alert-row__metric {
  color: var(--on-dark-primary);
}

.ohq-alert-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
}

.ohq-alert-badge--suppressed {
  background: rgba(78,94,122,0.3);
  color: var(--on-dark-muted);
}

.ohq-alert-badge--paged {
  background: var(--signal-orange);
  color: var(--white);
}

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

.ohq-problem-col {
  padding: 2rem;
  border-left: 2px solid var(--terminal-border);
}

.ohq-problem-col__num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--signal-orange);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.ohq-problem-col__text {
  font-size: 15px;
  color: var(--on-dark-secondary);
  line-height: 1.6;
}

.ohq-problem-footer {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  background: rgba(42,51,70,0.2);
}

.ohq-problem-footer__text {
  font-size: 15px;
  color: var(--on-dark-secondary);
  font-style: italic;
  line-height: 1.6;
}

.ohq-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.ohq-how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--terminal-border), var(--signal-orange), var(--terminal-border));
}

.ohq-how-step {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ohq-how-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--terminal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--terminal-panel);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.ohq-how-step--accent .ohq-how-step__icon {
  border-color: var(--signal-orange);
  background: rgba(240, 112, 32, 0.1);
}

.ohq-how-step__icon svg {
  width: 20px;
  height: 20px;
}

.ohq-how-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ohq-how-step__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--on-dark-primary);
  margin-bottom: 0.6rem;
}

.ohq-how-step--accent .ohq-how-step__title {
  color: var(--signal-orange);
}

.ohq-how-step__desc {
  font-size: 14px;
  color: var(--on-dark-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.ohq-how-step__code {
  width: 100%;
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 0.75rem 1rem;
  overflow-x: auto;
}

.ohq-how-step__code pre {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-secondary);
  line-height: 1.6;
  white-space: pre;
}

.ohq-how-step__code pre .ohq-c-key {
  color: var(--signal-orange);
}

.ohq-how-step__code pre .ohq-c-val {
  color: var(--baseline-green);
}

.ohq-how-step__code pre .ohq-c-comment {
  color: var(--on-dark-muted);
}

.ohq-product-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.ohq-product-panel {
  background: var(--terminal-surface);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.ohq-product-panel__header {
  background: var(--terminal-panel);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--terminal-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ohq-product-panel__dots {
  display: flex;
  gap: 5px;
}

.ohq-product-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terminal-border);
}

.ohq-product-panel__name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-muted);
  letter-spacing: 0.08em;
}

.ohq-product-panel__body {
  padding: 1.25rem;
}

.ohq-metric-chart {
  width: 100%;
  height: 180px;
}

.ohq-chart-annotation {
  position: relative;
}

.ohq-chart-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--on-dark-muted);
}

.ohq-chart-label--orange {
  fill: var(--signal-orange);
}

.ohq-decision-feed {
  font-family: var(--font-mono);
  font-size: 11px;
}

.ohq-decision-row {
  display: grid;
  grid-template-columns: 54px 80px 1fr 72px;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(42,51,70,0.4);
  color: var(--on-dark-muted);
  align-items: center;
}

.ohq-decision-row:last-child {
  border-bottom: none;
}

.ohq-decision-row--paged {
  color: var(--on-dark-secondary);
}

.ohq-decision-row--suppressed {
  opacity: 0.5;
}

.ohq-decision-row__time {
  color: var(--on-dark-muted);
  font-size: 10px;
}

.ohq-decision-row__service {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ohq-decision-row--paged .ohq-decision-row__service {
  color: var(--on-dark-primary);
}

.ohq-decision-row__rule {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
}

.ohq-decision-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
  letter-spacing: 0.05em;
}

.ohq-decision-badge--suppressed {
  background: rgba(78,94,122,0.25);
  color: var(--on-dark-muted);
}

.ohq-decision-badge--paged {
  background: var(--signal-orange);
  color: var(--white);
}

.ohq-integrations-strip {
  padding: var(--section-py) 0;
}

.ohq-integrations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.ohq-integration-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark-secondary);
  transition: border-color var(--transition), color var(--transition);
}

.ohq-integration-pill:hover {
  border-color: var(--signal-orange);
  color: var(--on-dark-primary);
}

.ohq-integration-pill__icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
}

.ohq-integration-pill__icon--prometheus {
  background: rgba(232, 63, 55, 0.2);
  color: #e83f37;
}

.ohq-integration-pill__icon--grafana {
  background: rgba(240, 112, 32, 0.15);
  color: #F07020;
}

.ohq-integration-pill__icon--datadog {
  background: rgba(112, 84, 255, 0.15);
  color: #7054ff;
}

.ohq-integration-pill__icon--pagerduty {
  background: rgba(6, 160, 67, 0.15);
  color: #06a043;
}

.ohq-integration-pill__icon--opsgenie {
  background: rgba(0, 129, 255, 0.15);
  color: #0081ff;
}

.ohq-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ohq-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid var(--stone-border);
}

.ohq-testimonial-card__quote {
  font-size: 15px;
  color: var(--on-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ohq-testimonial-card__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--signal-orange-dim);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.ohq-testimonial-card__role {
  font-size: 13px;
  color: var(--on-light-muted);
  font-style: italic;
}

.ohq-pricing-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ohq-pricing-teaser__plans {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ohq-plan-pill {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--stone-card);
  color: var(--on-light-secondary);
  border: 1px solid var(--stone-border);
}

.ohq-plan-pill--accent {
  background: rgba(192, 88, 24, 0.1);
  color: var(--signal-orange-dim);
  border-color: rgba(192, 88, 24, 0.25);
}

.ohq-cta-band {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.ohq-cta-band__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, var(--signal-orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.ohq-cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ohq-cta-band__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--on-dark-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 2rem;
}

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

.ohq-cta-band__secondary {
  font-size: 14px;
  color: var(--on-dark-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.ohq-cta-band__secondary:hover {
  color: var(--signal-orange);
}

.ohq-footer {
  background: var(--terminal-deep);
  border-top: 1px solid var(--terminal-border);
  padding: 4rem 0 2rem;
  color: var(--on-dark-secondary);
}

.ohq-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ohq-footer__brand-logo {
  display: block;
  margin-bottom: 1rem;
}

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

.ohq-footer__tagline {
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ohq-footer__contact {
  font-size: 13px;
  color: var(--on-dark-muted);
  line-height: 1.8;
}

.ohq-footer__contact a {
  color: var(--on-dark-secondary);
  transition: color var(--transition);
  text-decoration: none;
}

.ohq-footer__contact a:hover {
  color: var(--signal-orange);
}

.ohq-footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--on-dark-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ohq-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ohq-footer__contact {
  font-style: normal;
}

.ohq-footer__link {
  font-size: 14px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.ohq-footer__links--inline {
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}

.ohq-footer__link:hover {
  color: var(--signal-orange);
}

.ohq-footer__bottom {
  border-top: 1px solid var(--terminal-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ohq-footer__copy {
  font-size: 13px;
  color: var(--on-dark-muted);
}

.ohq-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.ohq-footer__legal-link {
  font-size: 13px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.ohq-footer__legal-link:hover {
  color: var(--signal-orange);
}

.ohq-page-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
  position: relative;
}

.ohq-page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.ohq-page-hero--dark .ohq-page-hero__inner {
  color: var(--on-dark-primary);
}

.ohq-page-hero--light .ohq-page-hero__inner {
  color: var(--on-light-primary);
}

.ohq-page-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-dark-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ohq-page-hero--light .ohq-page-hero__breadcrumb {
  color: var(--on-light-muted);
}

.ohq-page-hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.ohq-page-hero--dark .ohq-page-hero__h1 {
  color: var(--on-dark-primary);
}

.ohq-page-hero--light .ohq-page-hero__h1 {
  color: var(--on-light-primary);
}

.ohq-page-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
}

.ohq-page-hero--dark .ohq-page-hero__sub {
  color: var(--on-dark-secondary);
}

.ohq-page-hero--light .ohq-page-hero__sub {
  color: var(--on-light-secondary);
}

.ohq-page-hero__ornament {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}

.ohq-page-hero__split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.ohq-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--section-py) 0;
}

.ohq-feature-block--reverse {
  direction: rtl;
}

.ohq-feature-block--reverse > * {
  direction: ltr;
}

.ohq-feature-block__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ohq-feature-block__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-orange);
}

.ohq-feature-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--on-dark-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ohq-feature-block__body {
  font-size: 15px;
  color: var(--on-dark-secondary);
  line-height: 1.7;
}

.ohq-feature-block__visual {
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.ohq-code-block {
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.ohq-code-block__header {
  background: var(--terminal-surface);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--terminal-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-muted);
}

.ohq-code-block__lang {
  margin-left: auto;
  font-size: 10px;
  color: var(--signal-orange);
  letter-spacing: 0.08em;
}

.ohq-code-block__body {
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
}

.ohq-code-block__body pre {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--on-dark-secondary);
  line-height: 1.7;
  white-space: pre;
}

.ohq-code-block__body pre .ohq-c-key {
  color: var(--signal-orange);
}

.ohq-code-block__body pre .ohq-c-val {
  color: var(--baseline-green);
}

.ohq-code-block__body pre .ohq-c-comment {
  color: var(--on-dark-muted);
}

.ohq-code-block__body pre .ohq-c-method-get {
  color: var(--baseline-green);
  font-weight: 600;
}

.ohq-code-block__body pre .ohq-c-method-post {
  color: var(--signal-orange);
  font-weight: 600;
}

.ohq-code-block__body pre .ohq-c-str {
  color: #A8D8A8;
}

.ohq-inline-code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--terminal-panel);
  color: var(--baseline-green);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--terminal-border);
}

.ohq-section--light .ohq-inline-code,
.ohq-section--light-alt .ohq-inline-code,
.ohq-section--white .ohq-inline-code {
  background: var(--stone-card);
  color: var(--signal-orange-dim);
  border-color: var(--stone-border);
}

.ohq-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ohq-pricing-card {
  background: var(--stone-card);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ohq-pricing-card--pro {
  background: var(--terminal-deep);
  border-color: var(--signal-orange);
  color: var(--on-dark-primary);
  position: relative;
}

.ohq-pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--signal-orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 0 0 4px 4px;
  letter-spacing: 0.05em;
}

.ohq-pricing-card__tier {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-light-primary);
}

.ohq-pricing-card--pro .ohq-pricing-card__tier {
  color: var(--on-dark-primary);
}

.ohq-pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--on-light-primary);
  letter-spacing: -0.03em;
}

.ohq-pricing-card--pro .ohq-pricing-card__price {
  color: var(--signal-orange);
}

.ohq-pricing-card__cap {
  font-size: 13px;
  color: var(--on-light-muted);
  margin-top: 0.25rem;
}

.ohq-pricing-card--pro .ohq-pricing-card__cap {
  color: var(--on-dark-muted);
}

.ohq-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.ohq-pricing-card__feature {
  font-size: 14px;
  color: var(--on-light-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.ohq-pricing-card--pro .ohq-pricing-card__feature {
  color: var(--on-dark-secondary);
}

.ohq-pricing-card__feature i {
  color: var(--baseline-green);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ohq-pricing-card--pro .ohq-pricing-card__feature i {
  color: var(--baseline-green);
}

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

.ohq-faq {
  margin-top: 3rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

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

.ohq-faq__question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-light-primary);
  transition: color var(--transition);
}

.ohq-faq__question:hover {
  color: var(--signal-orange-dim);
}

.ohq-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-light-muted);
  transition: transform var(--transition);
}

.ohq-faq__item.ohq-is-open .ohq-faq__icon {
  transform: rotate(45deg);
  color: var(--signal-orange-dim);
}

.ohq-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-out;
}

.ohq-faq__item.ohq-is-open .ohq-faq__answer {
  max-height: 300px;
}

.ohq-faq__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 14px;
  color: var(--on-light-secondary);
  line-height: 1.7;
}

.ohq-about-hero-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.ohq-about-hero-stat {
  background: var(--stone-card);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  text-align: center;
}

.ohq-about-hero-stat__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--signal-orange-dim);
  margin-bottom: 0.25rem;
}

.ohq-about-hero-stat__label {
  font-size: 13px;
  color: var(--on-light-muted);
  line-height: 1.4;
}

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

.ohq-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ohq-team-card__portrait {
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--stone-card);
}

.ohq-team-card__portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.ohq-team-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--on-light-primary);
}

.ohq-team-card__title {
  font-size: 13px;
  color: var(--signal-orange-dim);
  font-weight: 500;
  margin-top: -0.5rem;
}

.ohq-team-card__bio {
  font-size: 14px;
  color: var(--on-light-secondary);
  line-height: 1.65;
}

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

.ohq-value-card {
  padding: 1.5rem;
  background: var(--stone-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--stone-border);
}

.ohq-value-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 88, 24, 0.1);
  border-radius: 6px;
  color: var(--signal-orange-dim);
  margin-bottom: 1rem;
  font-size: 16px;
}

.ohq-value-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-bottom: 0.5rem;
}

.ohq-value-card__text {
  font-size: 14px;
  color: var(--on-light-secondary);
  line-height: 1.65;
}

.ohq-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ohq-contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-bottom: 1.25rem;
}

.ohq-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--on-light-secondary);
}

.ohq-contact-info__item i {
  color: var(--signal-orange-dim);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ohq-contact-form-panel {
  background: var(--white);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.ohq-form__group {
  margin-bottom: 1.25rem;
}

.ohq-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-light-secondary);
  margin-bottom: 0.4rem;
}

.ohq-form__input,
.ohq-form__textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-input);
  background: var(--white);
  color: var(--on-light-primary);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.ohq-form__input:focus,
.ohq-form__textarea:focus {
  border-color: var(--signal-orange-dim);
  box-shadow: 0 0 0 3px rgba(192, 88, 24, 0.1);
}

.ohq-form__input::placeholder,
.ohq-form__textarea::placeholder {
  color: var(--on-light-muted);
}

.ohq-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.ohq-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 64px);
  margin-top: 64px;
}

.ohq-docs-sidebar {
  background: var(--white);
  border-right: 1px solid var(--stone-border);
  padding: 2rem 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.ohq-docs-sidebar__logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--stone-border);
  margin-bottom: 1rem;
}

.ohq-docs-sidebar__logo img {
  height: 24px;
  width: auto;
}

.ohq-docs-sidebar__section {
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}

.ohq-docs-sidebar__section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--on-light-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ohq-docs-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ohq-docs-sidebar__link {
  font-size: 14px;
  color: var(--on-light-secondary);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  display: block;
}

.ohq-docs-sidebar__link:hover {
  background: var(--stone-card);
  color: var(--on-light-primary);
}

.ohq-docs-sidebar__link--active {
  background: rgba(192, 88, 24, 0.08);
  color: var(--signal-orange-dim);
  font-weight: 500;
}

.ohq-docs-content {
  background: var(--white);
  padding: 3rem 4rem;
  min-width: 0;
  color: var(--on-light-primary);
}

.ohq-docs-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ohq-docs-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--stone-border);
}

.ohq-docs-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.ohq-docs-content p {
  font-size: 15px;
  color: var(--on-light-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ohq-docs-content ul,
.ohq-docs-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ohq-docs-content ul {
  list-style: disc;
}

.ohq-docs-content ol {
  list-style: decimal;
}

.ohq-docs-content li {
  font-size: 15px;
  color: var(--on-light-secondary);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.ohq-docs-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--stone-card);
  color: var(--signal-orange-dim);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--stone-border);
}

.ohq-docs-content pre {
  margin-bottom: 1.5rem;
}

.ohq-docs-content pre code {
  display: block;
  background: var(--terminal-deep);
  color: var(--on-dark-secondary);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre;
}

.ohq-docs-content blockquote {
  border-left: 3px solid var(--signal-orange-dim);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--on-light-muted);
}

.ohq-docs-content a {
  color: var(--signal-orange-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ohq-docs-content a:hover {
  color: var(--signal-orange);
}

.ohq-docs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.ohq-docs-card {
  padding: 1.5rem;
  background: var(--stone-card);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-card);
  text-decoration: none;
  display: block;
  transition: border-color var(--transition), background var(--transition);
}

.ohq-docs-card:hover {
  border-color: var(--signal-orange-dim);
  background: var(--white);
}

.ohq-docs-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-bottom: 0.4rem;
}

.ohq-docs-card__desc {
  font-size: 13px;
  color: var(--on-light-muted);
  line-height: 1.5;
}

.ohq-docs-card__arrow {
  font-size: 12px;
  color: var(--signal-orange-dim);
  margin-top: 0.75rem;
  display: block;
}

.ohq-api-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 14px;
}

.ohq-api-table th {
  background: var(--stone-card);
  color: var(--on-light-secondary);
  font-weight: 600;
  text-align: left;
  padding: 0.6rem 1rem;
  border: 1px solid var(--stone-border);
  font-size: 13px;
}

.ohq-api-table td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--stone-border);
  color: var(--on-light-secondary);
  vertical-align: top;
  line-height: 1.5;
}

.ohq-api-table tr:nth-child(even) td {
  background: rgba(236, 234, 230, 0.4);
}

.ohq-method-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.ohq-method-pill--get {
  background: rgba(44, 182, 125, 0.15);
  color: var(--baseline-green-dim);
}

.ohq-method-pill--post {
  background: rgba(240, 112, 32, 0.15);
  color: var(--signal-orange-dim);
}

.ohq-int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.ohq-int-card {
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ohq-int-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ohq-int-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-dark-primary);
}

.ohq-int-card__status {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}

.ohq-int-card__status--available {
  background: rgba(240, 112, 32, 0.15);
  color: var(--signal-orange);
}

.ohq-int-card__status--soon {
  background: rgba(78, 94, 122, 0.3);
  color: var(--on-dark-muted);
}

.ohq-int-card__category {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ohq-int-card__desc {
  font-size: 13px;
  color: var(--on-dark-secondary);
  line-height: 1.5;
}

.ohq-hiw-arch {
  margin-top: 3rem;
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.ohq-sensitivity-demo {
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.ohq-sensitivity-demo__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-dark-muted);
  margin-bottom: 0.75rem;
}

.ohq-sensitivity-demo__track {
  height: 4px;
  background: var(--terminal-border);
  border-radius: 2px;
  position: relative;
  margin-bottom: 0.5rem;
}

.ohq-sensitivity-demo__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--signal-orange), var(--signal-orange-dim));
  border-radius: 2px;
}

.ohq-sensitivity-demo__thumb {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--signal-orange);
  border-radius: 50%;
  border: 2px solid var(--terminal-deep);
}

.ohq-sensitivity-demo__ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--on-dark-muted);
  margin-top: 0.25rem;
}

.ohq-blog-hero {
  padding-top: 100px;
  padding-bottom: 3rem;
  background: var(--stone-bg);
}

.ohq-blog-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.ohq-blog-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--on-light-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ohq-blog-hero__sub {
  font-size: 16px;
  color: var(--on-light-muted);
}

.ohq-blog-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--white);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition);
}

.ohq-blog-featured:hover {
  border-color: var(--signal-orange-dim);
}

.ohq-blog-featured__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--stone-card);
}

.ohq-blog-featured__cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 300ms ease-out;
}

.ohq-blog-featured:hover .ohq-blog-featured__cover img {
  transform: scale(1.03);
}

.ohq-blog-featured__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.ohq-blog-featured__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--signal-orange-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ohq-blog-featured__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--on-light-primary);
  line-height: 1.3;
}

.ohq-blog-featured__excerpt {
  font-size: 14px;
  color: var(--on-light-secondary);
  line-height: 1.65;
}

.ohq-blog-featured__meta {
  font-size: 12px;
  color: var(--on-light-muted);
}

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

.ohq-blog-card {
  background: var(--white);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color var(--transition), transform var(--transition);
}

.ohq-blog-card:hover {
  border-color: var(--signal-orange-dim);
  transform: translateY(-2px);
}

.ohq-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--stone-card);
}

.ohq-blog-card__cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 300ms ease-out;
}

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

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

.ohq-blog-card__category {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--signal-orange-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ohq-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-light-primary);
  line-height: 1.35;
}

.ohq-blog-card__excerpt {
  font-size: 13px;
  color: var(--on-light-secondary);
  line-height: 1.55;
}

.ohq-blog-card__meta {
  font-size: 12px;
  color: var(--on-light-muted);
  margin-top: 0.25rem;
}

.ohq-blog-article-hero {
  padding-top: 100px;
  padding-bottom: 2.5rem;
  background: var(--stone-bg);
}

.ohq-blog-article-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ohq-blog-article-hero__category {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal-orange-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ohq-blog-article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--on-light-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ohq-blog-article-hero__meta {
  font-size: 13px;
  color: var(--on-light-muted);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.ohq-blog-article-cover {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.ohq-blog-article-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ohq-blog-article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  background: var(--white);
  color: var(--on-light-primary);
}

.ohq-blog-article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.ohq-blog-article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.ohq-blog-article-content p {
  font-size: 16px;
  color: var(--on-light-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ohq-blog-article-content ul,
.ohq-blog-article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.ohq-blog-article-content ul {
  list-style: disc;
}

.ohq-blog-article-content ol {
  list-style: decimal;
}

.ohq-blog-article-content li {
  font-size: 16px;
  color: var(--on-light-secondary);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.ohq-blog-article-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--stone-card);
  color: var(--signal-orange-dim);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--stone-border);
}

.ohq-blog-article-content pre code {
  display: block;
  background: var(--terminal-deep);
  color: var(--on-dark-secondary);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre;
}

.ohq-blog-article-content blockquote {
  border-left: 3px solid var(--signal-orange-dim);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--on-light-muted);
}

.ohq-blog-article-content a {
  color: var(--signal-orange-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ohq-auth-page {
  min-height: 100vh;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.ohq-auth-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(240, 112, 32, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ohq-auth-card {
  background: var(--terminal-surface);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.ohq-auth-card__logo {
  display: block;
  margin: 0 auto 2rem;
  width: fit-content;
}

.ohq-auth-card__logo img {
  height: 32px;
  width: auto;
}

.ohq-auth-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--on-dark-primary);
  text-align: center;
  margin-bottom: 0.4rem;
}

.ohq-auth-card__sub {
  font-size: 14px;
  color: var(--on-dark-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.ohq-auth-form__group {
  margin-bottom: 1.25rem;
}

.ohq-auth-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark-secondary);
  margin-bottom: 0.4rem;
}

.ohq-auth-form__input {
  width: 100%;
  padding: 0.65rem 0.875rem;
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-input);
  color: var(--on-dark-primary);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ohq-auth-form__input:focus {
  border-color: var(--signal-orange);
  box-shadow: 0 0 0 3px rgba(240, 112, 32, 0.12);
}

.ohq-auth-form__input::placeholder {
  color: var(--on-dark-muted);
}

.ohq-auth-card__btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--signal-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.5rem;
}

.ohq-auth-card__btn:hover {
  background: var(--signal-orange-dim);
}

.ohq-auth-links {
  margin-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ohq-auth-link {
  font-size: 13px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.ohq-auth-link a {
  color: var(--signal-orange);
  text-decoration: none;
}

.ohq-auth-link a:hover {
  color: var(--signal-orange-dim);
}

.ohq-auth-card__legal {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--terminal-border);
  text-align: center;
  font-size: 12px;
  color: var(--on-dark-muted);
  line-height: 1.6;
}

.ohq-auth-card__legal a {
  color: var(--on-dark-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ohq-auth-card__legal a:hover {
  color: var(--signal-orange);
}

.ohq-legal-layout {
  margin-top: 64px;
  background: var(--white);
  min-height: calc(100vh - 64px);
}

.ohq-legal-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  background: var(--white);
  color: var(--on-light-primary);
}

.ohq-legal-inner h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ohq-legal-inner .ohq-legal-date {
  font-size: 13px;
  color: var(--on-light-muted);
  margin-bottom: 2.5rem;
  display: block;
}

.ohq-legal-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ohq-legal-inner h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.ohq-legal-inner p {
  font-size: 15px;
  color: var(--on-light-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ohq-legal-inner ul,
.ohq-legal-inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ohq-legal-inner ul {
  list-style: disc;
}

.ohq-legal-inner ol {
  list-style: decimal;
}

.ohq-legal-inner li {
  font-size: 15px;
  color: var(--on-light-secondary);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}

.ohq-legal-inner a {
  color: var(--signal-orange-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ohq-legal-inner a:hover {
  color: var(--signal-orange);
}

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

.ohq-fade-in.ohq-visible {
  opacity: 1;
  transform: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--terminal-deep);
  border-top: 1px solid var(--terminal-border);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 300ms ease-out;
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}

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

.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  color: var(--on-dark-secondary);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--signal-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--on-dark-secondary);
  background: transparent;
  border: 1px solid var(--terminal-border);
}

.cookie-banner__btn--accept {
  background: var(--signal-orange);
  color: var(--white);
  border-color: var(--signal-orange);
}

.cookie-banner__btn--accept:hover {
  background: var(--signal-orange-dim);
  border-color: var(--signal-orange-dim);
  color: var(--white);
}

.cookie-banner__btn:not(.cookie-banner__btn--accept):hover {
  color: var(--on-dark-primary);
  border-color: var(--on-dark-secondary);
}

.ohq-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.ohq-tag--orange {
  background: rgba(240, 112, 32, 0.15);
  color: var(--signal-orange);
}

.ohq-tag--green {
  background: rgba(44, 182, 125, 0.15);
  color: var(--baseline-green);
}

.ohq-tag--muted {
  background: rgba(78, 94, 122, 0.25);
  color: var(--on-dark-muted);
}

.ohq-text-orange {
  color: var(--signal-orange);
}

.ohq-text-green {
  color: var(--baseline-green);
}

.ohq-text-muted {
  color: var(--on-dark-muted);
}

.ohq-mt-sm { margin-top: 1rem; }
.ohq-mt-md { margin-top: 2rem; }
.ohq-mt-lg { margin-top: 3rem; }
.ohq-mb-sm { margin-bottom: 1rem; }
.ohq-mb-md { margin-bottom: 2rem; }
.ohq-mb-lg { margin-bottom: 3rem; }

.ohq-text-center { text-align: center; }
.ohq-text-right { text-align: right; }

.ohq-divider {
  border: none;
  border-top: 1px solid var(--terminal-border);
  margin: 2rem 0;
}

.ohq-section--light .ohq-divider,
.ohq-section--light-alt .ohq-divider,
.ohq-section--white .ohq-divider {
  border-top-color: var(--stone-border);
}

.ohq-spike-path {
  stroke: #F07020;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.ohq-correlation-chart {
  width: 100%;
  height: 160px;
}

.ohq-arch-diagram {
  width: 100%;
  height: 140px;
}

@media (max-width: 1024px) {
  .ohq-hero__inner {
    grid-template-columns: 1fr;
  }

  .ohq-hero__visual {
    display: none;
  }

  .ohq-product-panels {
    grid-template-columns: 1fr;
  }

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

  .ohq-docs-layout {
    grid-template-columns: 200px 1fr;
  }

  .ohq-docs-content {
    padding: 2rem;
  }

  .ohq-feature-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ohq-feature-block--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-mobile);
  }

  .ohq-nav__links,
  .ohq-nav__actions {
    display: none;
  }

  .ohq-nav__hamburger {
    display: flex;
  }

  .ohq-hero__inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .ohq-hero {
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  .ohq-problem-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ohq-how-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ohq-how-steps::before {
    display: none;
  }

  .ohq-how-step {
    padding: 0;
  }

  .ohq-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ohq-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ohq-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

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

  .ohq-values-grid {
    grid-template-columns: 1fr;
  }

  .ohq-contact-split {
    grid-template-columns: 1fr;
  }

  .ohq-docs-layout {
    grid-template-columns: 1fr;
  }

  .ohq-docs-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--stone-border);
  }

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

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

  .ohq-about-hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ohq-page-hero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ohq-container {
    padding: 0 1.5rem;
  }

  .ohq-auth-card {
    padding: 2rem 1.5rem;
  }

  .ohq-int-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ohq-pricing-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__inner {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .ohq-hero__stat-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .ohq-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ohq-int-grid {
    grid-template-columns: 1fr;
  }

  .ohq-docs-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ohq-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ohq-auth-form {
  display: flex;
  flex-direction: column;
}

.ohq-auth-field {
  margin-bottom: 1.25rem;
}

.ohq-auth-field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark-secondary);
  margin-bottom: 0.4rem;
}

.ohq-auth-field__input {
  width: 100%;
  padding: 0.65rem 0.875rem;
  background: var(--terminal-panel);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-input);
  color: var(--on-dark-primary);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ohq-auth-field__input:focus {
  border-color: var(--signal-orange);
  box-shadow: 0 0 0 3px rgba(240, 112, 32, 0.12);
}

.ohq-auth-field__input::placeholder {
  color: var(--on-dark-muted);
}

.ohq-auth-form__forgot {
  text-align: right;
  margin-bottom: 1rem;
  font-size: 13px;
}

.ohq-auth-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.ohq-auth-card__footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 13px;
  color: var(--on-dark-muted);
}

.ohq-auth-link--muted {
  font-size: 12px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.ohq-auth-link--muted:hover {
  color: var(--on-dark-secondary);
}

.ohq-btn--outline {
  background: transparent;
  color: var(--on-light-primary);
  border: 1px solid var(--stone-border);
  border-radius: var(--radius-btn);
}

.ohq-btn--outline:hover {
  background: var(--stone-card);
  border-color: var(--on-light-secondary);
}

.ohq-article__cta .ohq-btn--outline {
  color: var(--on-dark-primary);
  border-color: var(--on-dark-primary);
}

.ohq-article__cta .ohq-btn--outline:hover {
  background: rgba(232, 235, 240, 0.1);
  border-color: var(--on-dark-primary);
  color: var(--on-dark-primary);
}

.ohq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-article {
  display: block;
}

.legal-header {
  margin-bottom: 2rem;
}

.legal-meta {
  font-size: 13px;
  color: var(--on-light-muted);
  margin-top: 0.25rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 1rem 0 1.5rem;
  color: var(--on-light-primary);
}

.legal-table th,
.legal-table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--stone-border);
  text-align: left;
}

.legal-table th {
  background: var(--stone-card);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-light-secondary);
}

.ohq-article {
  display: block;
}

.ohq-article__header {
  background: var(--stone-bg);
  padding: 3rem 0 2rem;
}

.ohq-article__meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ohq-article__back {
  font-size: 13px;
  color: var(--on-light-secondary);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ohq-article__back:hover {
  color: var(--signal-orange-dim);
}

.ohq-article__category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal-orange-dim);
  background: rgba(192, 88, 24, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.ohq-article__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--on-light-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ohq-article__byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--on-light-secondary);
  flex-wrap: wrap;
}

.ohq-article__author {
  font-weight: 600;
  color: var(--on-light-primary);
}

.ohq-article__sep {
  color: var(--on-light-muted);
}

.ohq-article__date {
  color: var(--on-light-secondary);
}

.ohq-article__reading-time {
  color: var(--on-light-muted);
}

.ohq-article__cover {
  background: var(--stone-card);
  padding: 2rem 0;
}

.ohq-article__cover-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
}

.ohq-article__body {
  background: var(--white);
  padding: 3rem 0;
}

.ohq-article__content {
  max-width: 740px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-light-primary);
}

.ohq-article__content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ohq-article__content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--on-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.ohq-article__content p {
  margin-bottom: 1.25rem;
}

.ohq-article__content ul,
.ohq-article__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.ohq-article__content li {
  margin-bottom: 0.4rem;
}

.ohq-article__content ul li {
  list-style: disc;
}

.ohq-article__content ol li {
  list-style: decimal;
}

.ohq-article__content a {
  color: var(--signal-orange-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ohq-article__content pre,
.ohq-article__content code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--stone-card);
  border-radius: 4px;
}

.ohq-article__content pre {
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.ohq-article__content code {
  padding: 0.15em 0.35em;
}

.ohq-article__footer {
  background: var(--stone-bg);
  padding: 3rem 0;
}

.ohq-article__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--terminal-surface);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-card);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.ohq-article__cta-text {
  flex: 1;
}

.ohq-article__cta-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--on-dark-primary);
  margin-bottom: 0.5rem;
}

.ohq-article__cta-sub {
  font-size: 14px;
  color: var(--on-dark-secondary);
  line-height: 1.5;
}

.ohq-article__cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ohq-article__nav {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .ohq-article__header {
    padding: 2rem 0 1.5rem;
  }

  .ohq-article__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .ohq-article__cta-actions {
    width: 100%;
  }
}
