/* Orbivex — orbv.css
   Brand prefix: orbv
   Palette: dark charcoal #0F1117, electric teal-green #00C896, amber #F59E0B,
            near-white #F8F9FC, cool gray #64748B
   Typography: Bricolage Grotesque (headings) / DM Sans (body) / JetBrains Mono (code)
*/

/* =====================================================================
   CUSTOM PROPERTIES
   ===================================================================== */
:root {
  --orbv-dark: #0F1117;
  --orbv-dark-alt: #161B27;
  --orbv-panel: #1C2333;
  --orbv-panel-border: #2A3347;

  --orbv-accent: #00C896;
  --orbv-accent-hover: #00B084;
  --orbv-alert: #F59E0B;
  --orbv-destructive: #EF4444;
  --orbv-success: #10B981;

  --orbv-text-primary: #F1F5F9;
  --orbv-text-secondary: #94A3B8;
  --orbv-text-muted: #64748B;

  --orbv-light: #F8F9FC;
  --orbv-light-alt: #ECEEF4;
  --orbv-white: #FFFFFF;

  --orbv-text-on-light: #0F1117;
  --orbv-text-on-light-2: #374151;
  --orbv-text-on-light-muted: #6B7280;

  --orbv-grid-line: #E2E8F0;
  --orbv-code-bg: #0A0E16;

  --orbv-gradient-hero: linear-gradient(135deg, #0F1117 0%, #161B27 60%, #1C2333 100%);
  --orbv-gradient-glow: radial-gradient(ellipse at 40% 60%, rgba(0,200,150,0.12) 0%, transparent 60%);

  --orbv-section-py: clamp(4rem, 8vw, 7rem);
  --orbv-container-max: 1200px;
  --orbv-px: clamp(1.25rem, 4vw, 2.5rem);
  --orbv-card-pad: 1.75rem;
  --orbv-radius-card: 12px;
  --orbv-radius-btn: 6px;

  --orbv-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --orbv-dur: 200ms;
  --orbv-dur-enter: 400ms;
}

/* =====================================================================
   RESET / BASE
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--orbv-white);
  color: var(--orbv-text-on-light);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* =====================================================================
   TYPOGRAPHY SCALE
   ===================================================================== */
.orbv-display {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.orbv-h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.orbv-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.orbv-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.orbv-body-lg {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}

.orbv-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.orbv-small {
  font-size: 0.875rem;
  font-weight: 400;
}

.orbv-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 400;
}

/* =====================================================================
   LAYOUT UTILITIES
   ===================================================================== */
.orbv-container {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

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

.orbv-section--dark {
  background: var(--orbv-dark);
  color: var(--orbv-text-primary);
  position: relative;
  overflow: hidden;
}

.orbv-section--dark-alt {
  background: var(--orbv-dark-alt);
  color: var(--orbv-text-primary);
  position: relative;
  overflow: hidden;
}

.orbv-section--light {
  background: var(--orbv-light);
  color: var(--orbv-text-on-light);
}

.orbv-section--white {
  background: var(--orbv-white);
  color: var(--orbv-text-on-light);
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.orbv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--orbv-dur) var(--orbv-ease),
              box-shadow var(--orbv-dur) var(--orbv-ease);
}

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

.orbv-page--light-top .orbv-nav {
  background: var(--orbv-white);
  box-shadow: 0 1px 0 var(--orbv-grid-line);
}

.orbv-nav--scrolled {
  background: var(--orbv-dark) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

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

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

.orbv-nav__logo .orbv-logo-light {
  display: none;
}

.orbv-nav__logo .orbv-logo-dark {
  display: block;
}

.orbv-page--dark-top .orbv-nav__logo .orbv-logo-light {
  display: block;
}

.orbv-page--dark-top .orbv-nav__logo .orbv-logo-dark {
  display: none;
}

.orbv-nav--scrolled .orbv-nav__logo .orbv-logo-light {
  display: block !important;
}

.orbv-nav--scrolled .orbv-nav__logo .orbv-logo-dark {
  display: none !important;
}

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

.orbv-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color var(--orbv-dur), background var(--orbv-dur);
  white-space: nowrap;
}

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

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

.orbv-page--light-top .orbv-nav .orbv-nav__link {
  color: var(--orbv-text-on-light-2);
}

.orbv-page--light-top .orbv-nav .orbv-nav__link:hover {
  color: var(--orbv-text-on-light);
  background: var(--orbv-light);
}

.orbv-nav--scrolled .orbv-nav__link {
  color: var(--orbv-text-secondary) !important;
}

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

.orbv-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.orbv-nav__sign-in {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--orbv-radius-btn);
  border: 1.5px solid transparent;
  transition: all var(--orbv-dur) var(--orbv-ease);
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
}

.orbv-page--dark-top .orbv-nav .orbv-nav__sign-in {
  color: var(--orbv-text-secondary);
  border-color: var(--orbv-panel-border);
}

.orbv-page--dark-top .orbv-nav .orbv-nav__sign-in:hover {
  color: var(--orbv-text-primary);
  border-color: var(--orbv-text-muted);
}

.orbv-page--light-top .orbv-nav .orbv-nav__sign-in {
  color: var(--orbv-text-on-light-2);
  border-color: var(--orbv-grid-line);
}

.orbv-page--light-top .orbv-nav .orbv-nav__sign-in:hover {
  color: var(--orbv-text-on-light);
  border-color: #c0c8d4;
}

.orbv-nav--scrolled .orbv-nav__sign-in {
  color: var(--orbv-text-secondary) !important;
  border-color: var(--orbv-panel-border) !important;
}

.orbv-nav--scrolled .orbv-nav__sign-in:hover {
  color: var(--orbv-text-primary) !important;
}

.orbv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: auto;
}

.orbv-hamburger__bar {
  width: 22px;
  height: 2px;
  background: var(--orbv-text-on-light);
  border-radius: 2px;
  transition: all var(--orbv-dur) var(--orbv-ease);
  display: block;
}

.orbv-page--dark-top .orbv-hamburger .orbv-hamburger__bar {
  background: var(--orbv-text-primary);
}

.orbv-nav--scrolled .orbv-hamburger .orbv-hamburger__bar {
  background: var(--orbv-text-primary) !important;
}

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

.orbv-hamburger[aria-expanded="true"] .orbv-hamburger__bar:nth-child(2) {
  opacity: 0;
}

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

/* =====================================================================
   BUTTONS
   ===================================================================== */
.orbv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.6875rem 1.5rem;
  border-radius: var(--orbv-radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--orbv-dur) var(--orbv-ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.orbv-btn--primary {
  background: var(--orbv-accent);
  color: var(--orbv-dark);
  border-color: var(--orbv-accent);
}

.orbv-btn--primary:hover {
  background: var(--orbv-accent-hover);
  border-color: var(--orbv-accent-hover);
}

.orbv-btn--outline-light {
  background: transparent;
  color: var(--orbv-text-primary);
  border-color: rgba(255,255,255,0.3);
}

.orbv-btn--outline-light:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.orbv-btn--outline-dark {
  background: transparent;
  color: var(--orbv-text-on-light-2);
  border-color: var(--orbv-grid-line);
}

.orbv-btn--outline-dark:hover {
  border-color: #a0aec0;
  color: var(--orbv-text-on-light);
}

.orbv-btn--ghost-on-dark {
  background: transparent;
  color: var(--orbv-text-secondary);
  border-color: var(--orbv-panel-border);
}

.orbv-btn--ghost-on-dark:hover {
  color: var(--orbv-text-primary);
  border-color: var(--orbv-text-muted);
}

.orbv-btn--lg {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.orbv-hero {
  background: var(--orbv-gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: calc(64px + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  color: var(--orbv-text-primary);
}

.orbv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orbv-gradient-glow);
  pointer-events: none;
}

.orbv-hero__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

.orbv-hero__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.orbv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orbv-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding: 0.375rem 0.75rem;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 4px;
}

.orbv-hero__h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--orbv-text-primary);
  margin-bottom: 1.25rem;
}

.orbv-hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--orbv-text-secondary);
  margin-bottom: 2rem;
  max-width: 480px;
}

.orbv-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.orbv-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.orbv-hero__media {
  position: relative;
}

/* =====================================================================
   DASHBOARD MOCK (Hero inline)
   ===================================================================== */
.orbv-dash-mock {
  background: var(--orbv-panel);
  border: 1px solid var(--orbv-panel-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.orbv-dash-mock__titlebar {
  background: var(--orbv-dark-alt);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--orbv-panel-border);
}

.orbv-dash-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.orbv-dash-mock__dot--red { background: #EF4444; }
.orbv-dash-mock__dot--yellow { background: #F59E0B; }
.orbv-dash-mock__dot--green { background: #10B981; }

.orbv-dash-mock__title-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--orbv-text-muted);
  margin-left: 0.5rem;
}

.orbv-dash-mock__body {
  padding: 1.25rem;
}

.orbv-dash-mock__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.orbv-dash-mock__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orbv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.orbv-dash-mock__badge-alert {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--orbv-alert);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

.orbv-dash-sku-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(42,51,71,0.5);
}

.orbv-dash-sku-row:last-child {
  border-bottom: none;
}

.orbv-dash-sku-row__name {
  font-size: 0.8125rem;
  color: var(--orbv-text-primary);
  font-weight: 500;
}

.orbv-dash-sku-row__sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orbv-text-muted);
}

.orbv-dash-sku-row__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--orbv-text-secondary);
  text-align: right;
}

.orbv-dash-sku-row__delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: right;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  min-width: 60px;
}

.orbv-dash-sku-row__delta--up {
  color: var(--orbv-accent);
  background: rgba(0,200,150,0.1);
}

.orbv-dash-sku-row__delta--alert {
  color: var(--orbv-alert);
  background: rgba(245,158,11,0.1);
}

.orbv-dash-mock__footer-bar {
  background: rgba(0,200,150,0.06);
  border-top: 1px solid rgba(0,200,150,0.15);
  padding: 0.625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orbv-dash-mock__footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orbv-accent);
}

.orbv-dash-mock__footer-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orbv-text-muted);
}

/* =====================================================================
   PROOF STRIP / METRICS BAR
   ===================================================================== */
.orbv-proof-strip {
  background: var(--orbv-dark-alt);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--orbv-panel-border);
  border-bottom: 1px solid var(--orbv-panel-border);
}

.orbv-proof-strip__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-proof-strip__heading {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orbv-text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.orbv-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.orbv-metric {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--orbv-panel-border);
  text-align: center;
}

.orbv-metric:last-child {
  border-right: none;
}

.orbv-metric__value {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--orbv-accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.orbv-metric__label {
  font-size: 0.875rem;
  color: var(--orbv-text-secondary);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.orbv-metric__qualifier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orbv-text-muted);
}

/* =====================================================================
   PROBLEM STATEMENT
   ===================================================================== */
.orbv-problem__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-problem__header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.orbv-problem__h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orbv-text-on-light);
  margin-bottom: 1rem;
}

.orbv-problem__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--orbv-text-on-light-2);
}

.orbv-problem__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.orbv-problem-stat {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  padding: var(--orbv-card-pad);
  transition: box-shadow var(--orbv-dur) var(--orbv-ease);
}

.orbv-problem-stat:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.orbv-problem-stat__icon {
  width: 40px;
  height: 40px;
  background: rgba(0,200,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orbv-accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.orbv-problem-stat__metric {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.375rem;
}

.orbv-problem-stat__label {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--orbv-text-on-light-2);
}

/* =====================================================================
   PROCESS FLOW (HOW IT WORKS)
   ===================================================================== */
.orbv-process__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-section-headline {
  text-align: center;
  margin-bottom: 3rem;
}

.orbv-section-headline__h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.orbv-section--dark .orbv-section-headline__h2,
.orbv-section--dark-alt .orbv-section-headline__h2 {
  color: var(--orbv-text-primary);
}

.orbv-section--light .orbv-section-headline__h2,
.orbv-section--white .orbv-section-headline__h2 {
  color: var(--orbv-text-on-light);
}

.orbv-section-headline__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
  max-width: 560px;
  margin-inline: auto;
}

.orbv-section--dark .orbv-section-headline__sub,
.orbv-section--dark-alt .orbv-section-headline__sub {
  color: var(--orbv-text-secondary);
}

.orbv-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.orbv-steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(25% / 2 + 2rem);
  right: calc(25% / 2 + 2rem);
  height: 1px;
  background: var(--orbv-grid-line);
  z-index: 0;
}

.orbv-step {
  position: relative;
  z-index: 1;
}

.orbv-step__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orbv-accent);
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.orbv-step__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.625rem;
}

.orbv-step__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--orbv-text-on-light-2);
}

/* =====================================================================
   FEATURE GRID
   ===================================================================== */
.orbv-features__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

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

.orbv-feature-card {
  background: var(--orbv-panel);
  border: 1px solid var(--orbv-panel-border);
  border-radius: var(--orbv-radius-card);
  padding: var(--orbv-card-pad);
  transition: border-color var(--orbv-dur) var(--orbv-ease),
              box-shadow var(--orbv-dur) var(--orbv-ease);
}

.orbv-feature-card:hover {
  border-color: rgba(0,200,150,0.3);
  box-shadow: 0 0 0 1px rgba(0,200,150,0.1), 0 8px 32px rgba(0,0,0,0.2);
}

.orbv-feature-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(0,200,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orbv-accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.orbv-feature-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--orbv-text-primary);
  margin-bottom: 0.625rem;
}

.orbv-feature-card__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--orbv-text-secondary);
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.orbv-testimonials__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

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

.orbv-testimonial-card {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  padding: var(--orbv-card-pad);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.orbv-testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
  flex: 1;
  position: relative;
  padding-top: 1.25rem;
}

.orbv-testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--orbv-accent);
  font-family: Georgia, serif;
}

.orbv-testimonial-card__attribution {
  border-top: 1px solid var(--orbv-grid-line);
  padding-top: 1rem;
}

.orbv-testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.1875rem;
}

.orbv-testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--orbv-text-on-light-muted);
}

.orbv-testimonial-card__company-type {
  font-size: 0.75rem;
  color: var(--orbv-accent);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.25rem;
}

.orbv-testimonials__note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--orbv-text-on-light-muted);
  font-style: italic;
}

/* =====================================================================
   CTA BAND
   ===================================================================== */
.orbv-cta-band {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--orbv-dark);
  color: var(--orbv-text-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.orbv-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orbv-gradient-glow);
  pointer-events: none;
}

.orbv-cta-band__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--orbv-px);
  position: relative;
  z-index: 1;
}

.orbv-cta-band__h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orbv-text-primary);
  margin-bottom: 1rem;
}

.orbv-cta-band__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--orbv-text-secondary);
  margin-bottom: 2rem;
}

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

.orbv-cta-band--light {
  background: var(--orbv-light);
  color: var(--orbv-text-on-light);
}

.orbv-cta-band--light .orbv-cta-band__h2 {
  color: var(--orbv-text-on-light);
}

.orbv-cta-band--light .orbv-cta-band__sub {
  color: var(--orbv-text-on-light-2);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.orbv-footer {
  background: var(--orbv-dark);
  color: var(--orbv-text-secondary);
  padding-block: clamp(3rem, 6vw, 5rem) 0;
}

.orbv-footer__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--orbv-panel-border);
}

.orbv-footer__brand-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--orbv-text-secondary);
  margin-top: 1rem;
  max-width: 280px;
}

.orbv-footer__col-heading {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orbv-text-primary);
  margin-bottom: 1rem;
}

.orbv-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.orbv-footer__link {
  font-size: 0.9375rem;
  color: var(--orbv-text-secondary);
  transition: color var(--orbv-dur);
  text-decoration: none;
}

.orbv-footer__link:hover {
  color: var(--orbv-text-primary);
}

.orbv-footer__bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.orbv-footer__copyright {
  font-size: 0.8125rem;
  color: var(--orbv-text-muted);
  line-height: 1.5;
}

.orbv-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.orbv-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--orbv-text-muted);
  text-decoration: none;
  transition: color var(--orbv-dur);
}

.orbv-footer__legal-link:hover {
  color: var(--orbv-text-secondary);
}

/* =====================================================================
   PAGE HERO (sub-pages)
   ===================================================================== */
.orbv-page-hero {
  padding-top: calc(64px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--orbv-px);
}

.orbv-page-hero--dark {
  background: var(--orbv-gradient-hero);
  color: var(--orbv-text-primary);
  position: relative;
  overflow: hidden;
}

.orbv-page-hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orbv-gradient-glow);
  pointer-events: none;
}

.orbv-page-hero--light {
  background: var(--orbv-light);
  color: var(--orbv-text-on-light);
}

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

.orbv-page-hero__inner--centered {
  display: block;
  max-width: 720px;
  text-align: center;
}

.orbv-page-hero__h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.orbv-page-hero--dark .orbv-page-hero__h1 {
  color: var(--orbv-text-primary);
}

.orbv-page-hero--light .orbv-page-hero__h1 {
  color: var(--orbv-text-on-light);
}

.orbv-page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.orbv-page-hero--dark .orbv-page-hero__sub {
  color: var(--orbv-text-secondary);
}

.orbv-page-hero--light .orbv-page-hero__sub {
  color: var(--orbv-text-on-light-2);
}

.orbv-page-hero__visual {
  position: relative;
}

.orbv-page-hero__ornament {
  position: relative;
  width: 100%;
}

/* =====================================================================
   PRODUCT PAGE — FEATURE DEEP DIVE
   ===================================================================== */
.orbv-feature-dive {
  padding-block: var(--orbv-section-py);
}

.orbv-feature-dive__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.orbv-feature-dive__inner--rev {
  direction: rtl;
}

.orbv-feature-dive__inner--rev > * {
  direction: ltr;
}

.orbv-feature-dive__h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.orbv-section--dark-alt .orbv-feature-dive__h2,
.orbv-section--dark .orbv-feature-dive__h2 {
  color: var(--orbv-text-primary);
}

.orbv-section--white .orbv-feature-dive__h2,
.orbv-section--light .orbv-feature-dive__h2 {
  color: var(--orbv-text-on-light);
}

.orbv-feature-dive__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.orbv-section--dark-alt .orbv-feature-dive__body,
.orbv-section--dark .orbv-feature-dive__body {
  color: var(--orbv-text-secondary);
}

.orbv-section--white .orbv-feature-dive__body,
.orbv-section--light .orbv-feature-dive__body {
  color: var(--orbv-text-on-light-2);
}

/* =====================================================================
   INLINE DATA MOCKS (Product page)
   ===================================================================== */
.orbv-mock-panel {
  background: var(--orbv-panel);
  border: 1px solid var(--orbv-panel-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
}

.orbv-mock-panel--light {
  background: var(--orbv-white);
  border-color: var(--orbv-grid-line);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.orbv-mock-panel__header {
  background: var(--orbv-dark-alt);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--orbv-panel-border);
}

.orbv-mock-panel--light .orbv-mock-panel__header {
  background: var(--orbv-light);
  border-color: var(--orbv-grid-line);
}

.orbv-mock-panel__header-label {
  font-size: 0.6875rem;
  color: var(--orbv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.orbv-mock-panel--light .orbv-mock-panel__header-label {
  color: var(--orbv-text-on-light-muted);
}

.orbv-mock-panel__body {
  padding: 1rem;
}

.orbv-timeline-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(42,51,71,0.4);
  font-size: 0.75rem;
}

.orbv-timeline-row:last-child {
  border-bottom: none;
}

.orbv-timeline-row__name {
  color: var(--orbv-text-secondary);
}

.orbv-timeline-row__bar {
  height: 6px;
  border-radius: 3px;
  background: var(--orbv-panel-border);
  position: relative;
  overflow: hidden;
}

.orbv-timeline-row__fill {
  height: 100%;
  border-radius: 3px;
}

.orbv-timeline-row__fill--accent { background: var(--orbv-accent); }
.orbv-timeline-row__fill--alert { background: var(--orbv-alert); }
.orbv-timeline-row__fill--muted { background: var(--orbv-text-muted); }

.orbv-timeline-row__tag {
  font-size: 0.625rem;
  padding: 0.175rem 0.4rem;
  border-radius: 3px;
  font-weight: 500;
  white-space: nowrap;
}

.orbv-timeline-row__tag--promo {
  background: rgba(245,158,11,0.15);
  color: var(--orbv-alert);
  border: 1px solid rgba(245,158,11,0.3);
}

.orbv-timeline-row__tag--perm {
  background: rgba(239,68,68,0.12);
  color: var(--orbv-destructive);
  border: 1px solid rgba(239,68,68,0.25);
}

.orbv-timeline-row__tag--clear {
  background: rgba(100,116,139,0.15);
  color: var(--orbv-text-muted);
  border: 1px solid rgba(100,116,139,0.25);
}

.orbv-rec-row {
  display: grid;
  grid-template-columns: 2fr auto auto 80px auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--orbv-grid-line);
  font-size: 0.75rem;
}

.orbv-rec-row:last-child {
  border-bottom: none;
}

.orbv-rec-row__name {
  color: var(--orbv-text-on-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.orbv-rec-row__price {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orbv-text-on-light-2);
  text-align: right;
}

.orbv-rec-row__suggest {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orbv-accent);
  font-weight: 500;
  text-align: right;
}

.orbv-rec-row__delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-align: center;
  padding: 0.175rem 0.375rem;
  border-radius: 3px;
}

.orbv-rec-row__delta--pos {
  color: var(--orbv-success);
  background: rgba(16,185,129,0.1);
}

.orbv-rec-row__delta--neg {
  color: var(--orbv-destructive);
  background: rgba(239,68,68,0.1);
}

.orbv-rec-row__btn {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  cursor: default;
}

.orbv-rec-row__btn--approve {
  background: rgba(0,200,150,0.15);
  color: var(--orbv-accent);
  border: 1px solid rgba(0,200,150,0.3);
}

.orbv-rec-row__btn--skip {
  background: transparent;
  color: var(--orbv-text-on-light-muted);
  border: 1px solid var(--orbv-grid-line);
}

.orbv-scatter-plot {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--orbv-white);
  border-radius: 8px;
  overflow: hidden;
}

.orbv-scatter-plot__axis-x {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  right: 0.5rem;
  height: 1px;
  background: var(--orbv-grid-line);
}

.orbv-scatter-plot__axis-y {
  position: absolute;
  top: 0.5rem;
  bottom: 2rem;
  left: 2.5rem;
  width: 1px;
  background: var(--orbv-grid-line);
}

.orbv-scatter-plot__label {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: var(--orbv-text-on-light-muted);
  padding: 0.2rem 0.375rem;
  background: rgba(248,249,252,0.9);
  border: 1px solid var(--orbv-grid-line);
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.orbv-scatter-dot {
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%,-50%);
}

.orbv-scatter-dot--accent { background: var(--orbv-accent); opacity: 0.85; }
.orbv-scatter-dot--alert { background: var(--orbv-alert); opacity: 0.75; }
.orbv-scatter-dot--muted { background: var(--orbv-text-muted); opacity: 0.6; }
.orbv-scatter-dot--dark { background: var(--orbv-dark); opacity: 0.5; }

/* =====================================================================
   INTEGRATIONS
   ===================================================================== */
.orbv-integrations-strip__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.orbv-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--orbv-text-on-light-2);
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: 8px;
  padding: 0.625rem 1.25rem;
  transition: border-color var(--orbv-dur), box-shadow var(--orbv-dur);
}

.orbv-platform-pill:hover {
  border-color: var(--orbv-accent);
  box-shadow: 0 0 0 1px rgba(0,200,150,0.2);
}

.orbv-platform-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orbv-accent);
  flex-shrink: 0;
}

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

.orbv-integration-card {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  padding: var(--orbv-card-pad);
  transition: border-color var(--orbv-dur), box-shadow var(--orbv-dur);
}

.orbv-integration-card:hover {
  border-color: rgba(0,200,150,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.orbv-integration-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.orbv-integration-card__name {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--orbv-text-on-light);
}

.orbv-integration-card__status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.orbv-integration-card__status--available {
  background: rgba(0,200,150,0.1);
  color: var(--orbv-accent);
  border: 1px solid rgba(0,200,150,0.25);
}

.orbv-integration-card__status--scale {
  background: rgba(245,158,11,0.1);
  color: var(--orbv-alert);
  border: 1px solid rgba(245,158,11,0.25);
}

.orbv-integration-card__setup {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--orbv-text-on-light-muted);
  margin-bottom: 0.625rem;
}

.orbv-integration-card__notes {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--orbv-text-on-light-2);
}

/* =====================================================================
   PRICING TABLE
   ===================================================================== */
.orbv-pricing-section__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
}

.orbv-pricing-toggle__label {
  color: var(--orbv-text-on-light-2);
}

.orbv-pricing-toggle__label--active {
  color: var(--orbv-text-on-light);
  font-weight: 600;
}

.orbv-pricing-toggle__label--monthly {
  color: var(--orbv-text-on-light);
  font-weight: 600;
}

.orbv-pricing-toggle__label--annual {
  color: var(--orbv-text-on-light-2);
}

.orbv-pricing-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--orbv-grid-line);
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: background var(--orbv-dur);
}

.orbv-pricing-toggle__switch--active {
  background: var(--orbv-accent);
}

.orbv-pricing-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--orbv-white);
  border-radius: 50%;
  transition: transform var(--orbv-dur) var(--orbv-ease);
}

.orbv-pricing-toggle__switch--active .orbv-pricing-toggle__knob {
  transform: translateX(20px);
}

.orbv-pricing-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--orbv-accent);
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
}

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

.orbv-pricing-card {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  padding: var(--orbv-card-pad);
  display: flex;
  flex-direction: column;
}

.orbv-pricing-card--highlighted {
  background: var(--orbv-dark);
  border-color: var(--orbv-accent);
  box-shadow: 0 0 0 1px rgba(0,200,150,0.3), 0 12px 40px rgba(0,0,0,0.15);
  position: relative;
}

.orbv-pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--orbv-dark);
  background: var(--orbv-accent);
  padding: 0.25rem 0.875rem;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}

.orbv-pricing-card__name {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.orbv-pricing-card:not(.orbv-pricing-card--highlighted) .orbv-pricing-card__name {
  color: var(--orbv-text-on-light);
}

.orbv-pricing-card--highlighted .orbv-pricing-card__name {
  color: var(--orbv-text-primary);
}

.orbv-pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1rem 0;
}

.orbv-pricing-card__price {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.orbv-pricing-card:not(.orbv-pricing-card--highlighted) .orbv-pricing-card__price {
  color: var(--orbv-text-on-light);
}

.orbv-pricing-card--highlighted .orbv-pricing-card__price {
  color: var(--orbv-accent);
}

.orbv-pricing-card__period {
  font-size: 0.875rem;
}

.orbv-pricing-card:not(.orbv-pricing-card--highlighted) .orbv-pricing-card__period {
  color: var(--orbv-text-on-light-muted);
}

.orbv-pricing-card--highlighted .orbv-pricing-card__period {
  color: var(--orbv-text-secondary);
}

.orbv-pricing-card__caps {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}

.orbv-pricing-card:not(.orbv-pricing-card--highlighted) .orbv-pricing-card__caps {
  color: var(--orbv-text-on-light-muted);
  border-bottom: 1px solid var(--orbv-grid-line);
}

.orbv-pricing-card--highlighted .orbv-pricing-card__caps {
  color: var(--orbv-text-muted);
  border-bottom: 1px solid var(--orbv-panel-border);
}

.orbv-pricing-card__caps-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0;
}

.orbv-pricing-card__features {
  flex: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.orbv-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.orbv-pricing-card:not(.orbv-pricing-card--highlighted) .orbv-pricing-card__feature {
  color: var(--orbv-text-on-light-2);
}

.orbv-pricing-card--highlighted .orbv-pricing-card__feature {
  color: var(--orbv-text-secondary);
}

.orbv-pricing-card__feature-icon {
  color: var(--orbv-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
}

.orbv-pricing-card__annual-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--orbv-text-on-light-muted);
}

.orbv-pricing-card__enterprise-note {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.orbv-pricing-card__enterprise-note a {
  color: var(--orbv-accent);
  text-decoration: underline;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.orbv-faq__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-faq-list {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.orbv-faq-item {
  border-bottom: 1px solid var(--orbv-grid-line);
}

.orbv-faq-item:first-child {
  border-top: 1px solid var(--orbv-grid-line);
}

.orbv-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--orbv-text-on-light);
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: color var(--orbv-dur);
}

.orbv-faq-item__trigger:hover {
  color: var(--orbv-accent);
}

.orbv-faq-item__icon {
  flex-shrink: 0;
  color: var(--orbv-text-on-light-muted);
  font-size: 0.875rem;
  transition: transform var(--orbv-dur) var(--orbv-ease);
}

.orbv-faq-item--open .orbv-faq-item__icon {
  transform: rotate(180deg);
}

.orbv-faq-item--open .orbv-faq-item__trigger {
  color: var(--orbv-accent);
}

.orbv-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--orbv-ease);
}

.orbv-faq-item--open .orbv-faq-item__body {
  max-height: 400px;
}

.orbv-faq-item__answer {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.orbv-narrative__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.orbv-narrative__h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orbv-text-on-light);
  margin-bottom: 1.25rem;
}

.orbv-narrative__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--orbv-text-on-light-2);
}

.orbv-narrative__body p + p {
  margin-top: 1rem;
}

.orbv-narrative__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.orbv-narrative__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

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

.orbv-team-card {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  overflow: hidden;
  transition: box-shadow var(--orbv-dur);
}

.orbv-team-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.orbv-team-card__photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--orbv-light-alt);
}

.orbv-team-card__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
}

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

.orbv-team-card__name {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.2rem;
}

.orbv-team-card__title {
  font-size: 0.875rem;
  color: var(--orbv-accent);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

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

.orbv-values-strip__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

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

.orbv-value-item {
  border-left: 3px solid var(--orbv-accent);
  padding-left: 1.25rem;
}

.orbv-value-item__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--orbv-text-primary);
  margin-bottom: 0.5rem;
}

.orbv-value-item__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--orbv-text-secondary);
}

/* =====================================================================
   CUSTOMERS PAGE
   ===================================================================== */
.orbv-case-studies__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.orbv-case-study-card {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
  transition: box-shadow var(--orbv-dur);
}

.orbv-case-study-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

.orbv-case-study-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.orbv-case-study-card__company {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orbv-text-on-light);
}

.orbv-case-study-card__category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--orbv-text-on-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.orbv-case-study-card__result {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orbv-accent);
  padding: 0.625rem 1rem;
  background: rgba(0,200,150,0.08);
  border-radius: 8px;
  border: 1px solid rgba(0,200,150,0.2);
  line-height: 1.4;
}

.orbv-case-study-card__detail {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
  margin-bottom: 1.25rem;
}

.orbv-case-study-card__quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--orbv-text-on-light);
  font-style: italic;
  border-left: 3px solid var(--orbv-accent);
  padding-left: 1rem;
  margin-bottom: 0.75rem;
}

.orbv-case-study-card__attribution {
  font-size: 0.875rem;
  color: var(--orbv-text-on-light-muted);
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.orbv-contact__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.orbv-contact__h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.75rem;
}

.orbv-contact__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
  margin-bottom: 2rem;
}

.orbv-contact__detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.orbv-contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.orbv-contact__detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,200,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orbv-accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.orbv-contact__detail-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--orbv-text-on-light-2);
}

.orbv-contact__detail-text a {
  color: var(--orbv-accent);
  text-decoration: none;
}

.orbv-contact__detail-text a:hover {
  text-decoration: underline;
}

.orbv-contact-form {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  padding: 2rem;
}

.orbv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.orbv-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orbv-text-on-light);
}

.orbv-form-input,
.orbv-form-select,
.orbv-form-textarea {
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--orbv-text-on-light);
  background: var(--orbv-white);
  border: 1.5px solid var(--orbv-grid-line);
  border-radius: 6px;
  padding: 0.6875rem 0.875rem;
  transition: border-color var(--orbv-dur);
  line-height: 1.4;
}

.orbv-form-input:focus,
.orbv-form-select:focus,
.orbv-form-textarea:focus {
  outline: none;
  border-color: var(--orbv-accent);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.12);
}

.orbv-form-input::placeholder,
.orbv-form-textarea::placeholder {
  color: var(--orbv-text-on-light-muted);
}

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

/* =====================================================================
   BLOG
   ===================================================================== */
.orbv-blog-hero__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-blog-grid-section__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-blog-featured {
  margin-bottom: 3rem;
}

.orbv-blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--orbv-dur);
}

.orbv-blog-featured-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.orbv-blog-featured-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--orbv-light-alt);
}

.orbv-blog-featured-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.orbv-blog-featured-card__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orbv-blog-featured-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orbv-accent);
  margin-bottom: 0.625rem;
}

.orbv-blog-featured-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.875rem;
}

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

.orbv-blog-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  color: var(--orbv-text-on-light-muted);
}

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

.orbv-blog-card {
  background: var(--orbv-white);
  border: 1px solid var(--orbv-grid-line);
  border-radius: var(--orbv-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--orbv-dur);
}

.orbv-blog-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

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

.orbv-blog-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

.orbv-blog-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orbv-accent);
  margin-bottom: 0.5rem;
}

.orbv-blog-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.5rem;
}

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

.orbv-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  color: var(--orbv-text-on-light-muted);
  margin-top: auto;
}

.orbv-blog-card__meta-sep {
  opacity: 0.5;
}

/* =====================================================================
   BLOG ARTICLE PAGE
   ===================================================================== */
.orbv-article-hero {
  padding-top: calc(64px + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--orbv-light);
}

.orbv-article-hero__inner {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.orbv-article-hero__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orbv-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.orbv-article-hero__h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--orbv-text-on-light);
  margin-bottom: 1rem;
}

.orbv-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--orbv-text-on-light-muted);
}

.orbv-article-body-section {
  background: var(--orbv-white);
  padding-block: clamp(3rem, 5vw, 5rem);
}

.orbv-article-cover {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: var(--orbv-px);
  margin-bottom: 2.5rem;
}

.orbv-article-cover img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.orbv-article-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  color: var(--orbv-text-on-light);
}

.orbv-article-content h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--orbv-text-on-light);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.orbv-article-content h3 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--orbv-text-on-light);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.orbv-article-content p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--orbv-text-on-light-2);
  margin-bottom: 1.25rem;
}

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

.orbv-article-content ul { list-style: disc; }
.orbv-article-content ol { list-style: decimal; }

.orbv-article-content li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
  margin-bottom: 0.375rem;
}

.orbv-article-content blockquote {
  border-left: 3px solid var(--orbv-accent);
  padding-left: 1.25rem;
  margin-block: 1.75rem;
  font-style: italic;
  color: var(--orbv-text-on-light-2);
  font-size: 1.0625rem;
}

.orbv-article-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  background: var(--orbv-light);
  border: 1px solid var(--orbv-grid-line);
  border-radius: 4px;
  padding: 0.2em 0.4em;
  color: var(--orbv-text-on-light);
}

.orbv-article-content pre {
  background: var(--orbv-dark);
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-block: 1.5rem;
}

.orbv-article-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--orbv-text-primary);
  font-size: 0.875rem;
}

/* =====================================================================
   AUTH PAGES
   ===================================================================== */
.orbv-auth-page {
  min-height: 100vh;
  background: var(--orbv-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.orbv-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orbv-gradient-glow);
  pointer-events: none;
}

.orbv-auth-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbv-auth-card {
  position: relative;
  z-index: 1;
  background: var(--orbv-panel);
  border: 1px solid var(--orbv-panel-border);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.orbv-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
  text-decoration: none;
}

.orbv-auth-card__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orbv-text-primary);
  text-align: center;
  margin-bottom: 0.375rem;
}

.orbv-auth-card__subtext {
  font-size: 0.9375rem;
  color: var(--orbv-text-secondary);
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

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

.orbv-auth-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.orbv-auth-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orbv-text-secondary);
}

.orbv-auth-input {
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--orbv-text-primary);
  background: var(--orbv-dark-alt);
  border: 1.5px solid var(--orbv-panel-border);
  border-radius: 6px;
  padding: 0.6875rem 0.875rem;
  transition: border-color var(--orbv-dur);
  line-height: 1.4;
}

.orbv-auth-input:focus {
  outline: none;
  border-color: var(--orbv-accent);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.12);
}

.orbv-auth-input::placeholder {
  color: var(--orbv-text-muted);
}

.orbv-auth-select {
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--orbv-text-primary);
  background: var(--orbv-dark-alt);
  border: 1.5px solid var(--orbv-panel-border);
  border-radius: 6px;
  padding: 0.6875rem 0.875rem;
  transition: border-color var(--orbv-dur);
  cursor: pointer;
  appearance: none;
}

.orbv-auth-select:focus {
  outline: none;
  border-color: var(--orbv-accent);
}

.orbv-auth-select option {
  background: var(--orbv-panel);
  color: var(--orbv-text-primary);
}

.orbv-auth-submit {
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orbv-dark);
  background: var(--orbv-accent);
  border: none;
  border-radius: 6px;
  padding: 0.875rem;
  cursor: pointer;
  transition: background var(--orbv-dur);
  margin-top: 0.5rem;
}

.orbv-auth-submit:hover {
  background: var(--orbv-accent-hover);
}

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

.orbv-auth-link {
  font-size: 0.875rem;
  color: var(--orbv-text-secondary);
  text-decoration: none;
  transition: color var(--orbv-dur);
}

.orbv-auth-link:hover {
  color: var(--orbv-accent);
}

.orbv-auth-legal {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--orbv-panel-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--orbv-text-muted);
  line-height: 1.5;
}

.orbv-auth-legal a {
  color: var(--orbv-text-secondary);
  text-decoration: underline;
}

.orbv-auth-legal a:hover {
  color: var(--orbv-accent);
}

/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.orbv-legal-page {
  background: var(--orbv-white);
}

.orbv-legal-hero {
  padding-top: calc(64px + 3rem);
  padding-bottom: 2rem;
  background: var(--orbv-light);
}

.orbv-legal-hero__inner {
  max-width: var(--orbv-container-max);
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

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

.orbv-legal-content__inner {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: var(--orbv-px);
}

.legal-article {
  color: var(--orbv-text-on-light);
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--orbv-grid-line);
}

.legal-article h1 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--orbv-text-on-light-muted);
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orbv-text-on-light);
  margin-bottom: 0.875rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--orbv-grid-line);
}

.legal-article h3 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orbv-text-on-light);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-article p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--orbv-text-on-light-2);
  margin-bottom: 0.875rem;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
}

.legal-article ul { list-style: disc; }
.legal-article ol { list-style: decimal; }

.legal-article li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--orbv-text-on-light-2);
  margin-bottom: 0.25rem;
}

.legal-article address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--orbv-text-on-light-2);
  padding: 1rem;
  background: var(--orbv-light);
  border-radius: 8px;
  border-left: 3px solid var(--orbv-accent);
  margin-top: 0.5rem;
}

.legal-article a {
  color: var(--orbv-accent);
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-block: 1rem;
}

.legal-table th {
  text-align: left;
  padding: 0.625rem 0.875rem;
  background: var(--orbv-light);
  color: var(--orbv-text-on-light);
  font-weight: 600;
  border: 1px solid var(--orbv-grid-line);
}

.legal-table td {
  padding: 0.625rem 0.875rem;
  color: var(--orbv-text-on-light-2);
  border: 1px solid var(--orbv-grid-line);
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: var(--orbv-light);
}

/* =====================================================================
   COOKIE BANNER
   ===================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--orbv-panel);
  border-top: 1px solid var(--orbv-panel-border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

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

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--orbv-text-secondary);
}

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

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

.cookie-banner__btn {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orbv-dark);
  background: var(--orbv-accent);
  border: 1.5px solid var(--orbv-accent);
  border-radius: 5px;
  padding: 0.5rem 1.125rem;
  cursor: pointer;
  transition: background var(--orbv-dur), color var(--orbv-dur);
  line-height: 1.4;
}

.cookie-banner__btn:hover {
  background: var(--orbv-accent-hover);
  border-color: var(--orbv-accent-hover);
}

.cookie-banner__btn--secondary {
  color: var(--orbv-text-secondary);
  background: transparent;
  border-color: var(--orbv-panel-border);
}

.cookie-banner__btn--secondary:hover {
  color: var(--orbv-text-primary);
  border-color: var(--orbv-text-muted);
}

/* =====================================================================
   SCROLL REVEAL ANIMATION
   ===================================================================== */
.orbv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--orbv-dur-enter) var(--orbv-ease),
              transform var(--orbv-dur-enter) var(--orbv-ease);
}

.orbv-reveal--visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   404 PAGE
   ===================================================================== */
.orbv-404 {
  min-height: 100vh;
  background: var(--orbv-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.orbv-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orbv-gradient-glow);
  pointer-events: none;
}

.orbv-404__inner {
  position: relative;
  z-index: 1;
}

.orbv-404__code {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orbv-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.orbv-404__title {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--orbv-text-primary);
  margin-bottom: 0.875rem;
}

.orbv-404__sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--orbv-text-secondary);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-inline: auto;
}

/* =====================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ===================================================================== */
@media (max-width: 1024px) {
  .orbv-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .orbv-hero__media {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .orbv-hero__sub {
    max-width: none;
  }

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

  .orbv-steps::before {
    display: none;
  }

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

  .orbv-metric {
    border-bottom: 1px solid var(--orbv-panel-border);
  }

  .orbv-metric:nth-child(2) {
    border-right: none;
  }

  .orbv-metric:nth-child(3) {
    border-bottom: none;
  }

  .orbv-metric:last-child {
    border-bottom: none;
  }

  .orbv-feature-dive__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .orbv-feature-dive__inner--rev {
    direction: ltr;
  }

  .orbv-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .orbv-narrative__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .orbv-contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .orbv-case-study-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.orbv-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orbv-dark);
  z-index: 999;
  padding: 2rem var(--orbv-px);
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.orbv-mobile-menu--open {
  display: flex;
}

/* =====================================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================================================================== */
@media (max-width: 768px) {
  .orbv-nav__links,
  .orbv-nav__actions {
    display: none;
  }

  .orbv-hamburger {
    display: flex;
  }

  .orbv-nav__inner {
    position: relative;
  }

  .orbv-mobile-menu__link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--orbv-text-secondary);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--orbv-panel-border);
    text-decoration: none;
    display: block;
    transition: color var(--orbv-dur);
  }

  .orbv-mobile-menu__link:hover {
    color: var(--orbv-text-primary);
  }

  .orbv-mobile-menu__actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .orbv-features-grid {
    grid-template-columns: 1fr;
  }

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

  .orbv-problem__cols {
    grid-template-columns: 1fr;
  }

  .orbv-steps {
    grid-template-columns: 1fr;
  }

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

  .orbv-team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

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

  .orbv-integration-grid {
    grid-template-columns: 1fr;
  }

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

  .orbv-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .orbv-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .orbv-form-row {
    grid-template-columns: 1fr;
  }

  .orbv-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .orbv-cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .orbv-auth-card {
    padding: 1.75rem;
  }

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

/* =====================================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ===================================================================== */
@media (max-width: 480px) {
  .orbv-metrics-grid {
    grid-template-columns: 1fr;
  }

  .orbv-metric {
    border-right: none;
  }

  .orbv-dash-sku-row {
    grid-template-columns: 1fr auto auto;
  }

  .orbv-dash-sku-row__sku {
    display: none;
  }
}
