/* Orbivex — obv-main.css
   Palette: dark dominant, teal accent #1AABB0, amber #F5A623
   Typography: DM Serif Display (headings) + IBM Plex Sans (body) + IBM Plex Mono (data)
*/

/* ============================================================
   0. RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg-dark:          #0D1117;
  --bg-dark-alt:      #151C26;
  --bg-light:         #F4F6F8;
  --bg-light-alt:     #E8ECF0;
  --bg-white:         #FFFFFF;
  --bg-brand:         #0A4F6E;

  --accent:           #1AABB0;
  --accent-amber:     #F5A623;
  --accent-success:   #2DB87A;
  --accent-danger:    #E05252;

  /* Text on dark */
  --heading:          #FFFFFF;
  --body-text:        #C8D4DC;
  --subtle:           #6B7E8B;
  --divider-dark:     #1E2D3A;

  /* Text on light */
  --on-light-heading: #0D1117;
  --on-light-body:    #3A4A56;
  --on-light-muted:   #6B7E8B;
  --divider-light:    #D0D9DF;

  /* Text on brand */
  --on-brand-heading: #FFFFFF;
  --on-brand-body:    #B8D4DC;

  /* Chart colors */
  --chart-1: #1AABB0;
  --chart-2: #F5A623;
  --chart-3: #2DB87A;
  --chart-4: #7C6FCD;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body:    'IBM Plex Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad: 120px;
  --section-pad-mob: 64px;
  --container-max: 1200px;
  --container-pad: 24px;

  /* Borders */
  --radius-card:  6px;
  --radius-input: 4px;
  --radius-tag:   2px;
}

/* ============================================================
   1. BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

body.obv-page--dark-top { background: var(--bg-dark); color: var(--body-text); }
body.obv-page--light-top { background: var(--bg-white); color: var(--on-light-body); }

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

ul, ol { list-style: none; }

/* ============================================================
   2. CONTAINERS
   ============================================================ */
.obv-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.obv-container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   3. NAVIGATION
   ============================================================ */
.obv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.obv-nav.obv-nav--scrolled {
  background: var(--bg-dark);
  box-shadow: 0 1px 0 var(--divider-dark);
}

/* Light-top pages: transparent becomes white */
body.obv-page--light-top .obv-nav.obv-nav--scrolled {
  background: var(--bg-white);
  box-shadow: 0 1px 0 var(--divider-light);
}

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

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

.obv-nav__logo img { height: 32px; width: auto; }

.obv-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.obv-nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  padding: 8px 12px;
  border-radius: var(--radius-input);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

body.obv-page--light-top .obv-nav__link {
  color: var(--on-light-body);
}

.obv-nav__link:hover {
  color: var(--accent);
  background: rgba(26, 171, 176, 0.08);
}

.obv-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Dropdown */
.obv-nav__dropdown {
  position: relative;
}

.obv-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  border-radius: var(--radius-input);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.obv-nav__dropdown-toggle:hover {
  color: var(--accent);
  background: rgba(26, 171, 176, 0.08);
}

body.obv-page--light-top .obv-nav__dropdown-toggle {
  color: var(--on-light-body);
}

body.obv-page--light-top .obv-nav__dropdown-toggle:hover {
  color: var(--accent);
}

.obv-nav__dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.2s;
}

.obv-nav__dropdown--open .obv-nav__dropdown-toggle i {
  transform: rotate(180deg);
}

.obv-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-dark-alt);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-card);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.obv-nav__dropdown--open .obv-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.obv-page--light-top .obv-nav__dropdown-menu {
  background: var(--bg-white);
  border-color: var(--divider-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.obv-nav__dropdown-item {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
  padding: 10px 14px;
  border-radius: var(--radius-input);
  transition: color 0.2s, background 0.2s;
}

body.obv-page--light-top .obv-nav__dropdown-item {
  color: var(--on-light-body);
}

.obv-nav__dropdown-item:hover {
  color: var(--accent);
  background: rgba(26, 171, 176, 0.08);
}

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

.obv-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--body-text);
  border-radius: 2px;
  transition: all 0.3s;
}

body.obv-page--light-top .obv-nav__hamburger span {
  background: var(--on-light-body);
}

.obv-nav__hamburger.obv-nav__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.obv-nav__hamburger.obv-nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.obv-nav__hamburger.obv-nav__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.obv-nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--divider-dark);
  padding: 16px 24px 24px;
  z-index: 999;
}

body.obv-page--light-top .obv-nav__mobile {
  background: var(--bg-white);
  border-color: var(--divider-light);
}

.obv-nav__mobile.obv-nav__mobile--open {
  display: block;
}

.obv-nav__mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--body-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--divider-dark);
}

body.obv-page--light-top .obv-nav__mobile-link {
  color: var(--on-light-body);
  border-color: var(--divider-light);
}

.obv-nav__mobile-link:hover { color: var(--accent); }

.obv-nav__mobile-sub {
  padding-left: 16px;
}

.obv-nav__mobile-sub .obv-nav__mobile-link {
  font-size: 14px;
  font-weight: 400;
}

.obv-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.obv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 22px;
  border-radius: var(--radius-input);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary — works on any bg */
.obv-btn--primary {
  background: var(--accent);
  color: #0D1117;
  border-color: var(--accent);
}
.obv-btn--primary:hover {
  background: #17979c;
  border-color: #17979c;
  color: #0D1117;
}

/* Outline on dark */
.obv-btn--outline-dark {
  background: transparent;
  color: var(--heading);
  border-color: rgba(255,255,255,0.35);
}
.obv-btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Outline on light */
.obv-btn--outline-light {
  background: transparent;
  color: var(--on-light-heading);
  border-color: var(--on-light-body);
}
.obv-btn--outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Ghost on dark */
.obv-btn--ghost-dark {
  background: transparent;
  color: var(--body-text);
  border-color: transparent;
}
.obv-btn--ghost-dark:hover { color: var(--accent); }

/* Ghost on light */
.obv-btn--ghost-light {
  background: transparent;
  color: var(--on-light-body);
  border-color: transparent;
}
.obv-btn--ghost-light:hover { color: var(--accent); }

/* Text link */
.obv-btn--text {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
  padding: 8px 0;
}
.obv-btn--text:hover { text-decoration: underline; color: var(--accent); }

/* Size variants */
.obv-btn--sm { font-size: 13px; padding: 8px 16px; }
.obv-btn--lg { font-size: 16px; padding: 14px 28px; }

/* ============================================================
   5. SECTIONS — BG CONTEXTS
   ============================================================ */
.obv-section { padding: var(--section-pad) 0; }
.obv-section--dark { background: var(--bg-dark); }
.obv-section--dark-alt { background: var(--bg-dark-alt); }
.obv-section--light { background: var(--bg-light); }
.obv-section--light-alt { background: var(--bg-light-alt); }
.obv-section--white { background: var(--bg-white); }
.obv-section--brand { background: var(--bg-brand); }

/* ============================================================
   6. SECTION HEADINGS
   ============================================================ */
.obv-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.obv-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 20px;
}

.obv-section-title--light {
  color: var(--on-light-heading);
}

.obv-section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--body-text);
  max-width: 600px;
  line-height: 1.7;
}

.obv-section-sub--light {
  color: var(--on-light-body);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.obv-hero {
  padding-top: 168px;
  padding-bottom: 100px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay */
.obv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--divider-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--divider-dark) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

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

.obv-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.obv-hero__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 20px;
}

.obv-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 36px;
}

.obv-hero__content {
  position: relative;
  z-index: 1;
}

.obv-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.obv-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dashboard Mock */
.obv-dashboard-mock {
  background: var(--bg-dark-alt);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--divider-dark);
}

.obv-dashboard-mock__titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--divider-dark);
}

.obv-dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.obv-dashboard-mock__dot:nth-child(1) { background: #E05252; }
.obv-dashboard-mock__dot:nth-child(2) { background: var(--accent-amber); }
.obv-dashboard-mock__dot:nth-child(3) { background: var(--accent-success); }

.obv-dashboard-mock__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--subtle);
  margin-left: 8px;
}

.obv-dashboard-mock__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 12px;
}

.obv-dashboard-mock__table th {
  text-align: left;
  padding: 8px 12px;
  color: var(--subtle);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--divider-dark);
}

.obv-dashboard-mock__table td {
  padding: 9px 12px;
  color: var(--body-text);
  border-bottom: 1px solid rgba(30, 45, 58, 0.5);
}

.obv-dashboard-mock__table tr:last-child td { border-bottom: none; }

.obv-delta--up { color: var(--accent-success); font-weight: 500; }
.obv-delta--down { color: var(--accent-danger); font-weight: 500; }
.obv-delta--neutral { color: var(--subtle); }

.obv-sku-name { color: var(--heading); font-weight: 500; }
.obv-price { color: var(--body-text); }
.obv-price--competitor { color: var(--accent-amber); }

/* ============================================================
   8. PROOF BAR
   ============================================================ */
.obv-proof-bar {
  padding: 40px 0;
  background: var(--bg-dark-alt);
  border-top: 1px solid var(--divider-dark);
  border-bottom: 1px solid var(--divider-dark);
}

.obv-proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.obv-proof-bar__stat {
  text-align: center;
}

.obv-proof-bar__value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.obv-proof-bar__label {
  font-size: 13px;
  color: var(--subtle);
  font-weight: 400;
}

.obv-proof-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--divider-dark);
}

/* ============================================================
   9. PROBLEM SECTION
   ============================================================ */
.obv-problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.obv-problem__narrative p {
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.obv-problem__narrative p:last-child { margin-bottom: 0; }

/* Timeline SVG */
.obv-timeline-svg {
  width: 100%;
  max-width: 480px;
}

/* ============================================================
   10. CAPABILITY CARDS (Platform Preview)
   ============================================================ */
.obv-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.obv-cap-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.obv-cap-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.obv-cap-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 171, 176, 0.12);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 18px;
}

.obv-cap-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 12px;
}

.obv-cap-card__body {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.obv-sparkline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(26, 171, 176, 0.08);
  border: 1px solid rgba(26, 171, 176, 0.2);
  border-radius: var(--radius-tag);
  padding: 6px 10px;
  display: inline-block;
  margin-top: 8px;
}

/* ============================================================
   11. HOW IT WORKS (Steps)
   ============================================================ */
.obv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
  position: relative;
}

.obv-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: var(--divider-light);
}

.obv-step {
  text-align: center;
  position: relative;
}

.obv-step__number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #0D1117;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.obv-step__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 12px;
}

.obv-step__body {
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.7;
}

.obv-step__channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.obv-channel-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  background: var(--bg-light-alt);
  color: var(--on-light-body);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-tag);
  padding: 4px 8px;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.obv-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.obv-testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
}

.obv-testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--accent);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
  opacity: 0.6;
}

.obv-testimonial-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--on-light-body);
  line-height: 1.75;
  margin-top: 24px;
  padding-top: 8px;
}

.obv-testimonial-card__author {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-light-heading);
}

.obv-testimonial-card__role {
  font-size: 12px;
  color: var(--on-light-muted);
  margin-top: 2px;
}

/* ============================================================
   13. INTEGRATION LOGOS / CHIPS
   ============================================================ */
.obv-integrations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.obv-integration-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--on-light-body);
  transition: border-color 0.2s;
}

.obv-integration-chip:hover { border-color: var(--accent); }

.obv-integration-chip i {
  font-size: 15px;
  color: var(--on-light-muted);
}

/* ============================================================
   14. CTA BAND
   ============================================================ */
.obv-cta-band {
  padding: 80px 0;
  background: var(--bg-brand);
  text-align: center;
}

.obv-cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--on-brand-heading);
  margin-bottom: 16px;
}

.obv-cta-band__sub {
  font-size: 17px;
  color: var(--on-brand-body);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.obv-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--divider-dark);
  padding: 72px 0 0;
}

.obv-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.obv-footer__brand-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 20px;
}

.obv-footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--subtle);
  margin-bottom: 6px;
}

.obv-footer__contact-line i {
  font-size: 11px;
  color: var(--accent);
  width: 14px;
  flex-shrink: 0;
}

.obv-footer__contact-line a {
  color: var(--subtle);
  transition: color 0.2s;
}

.obv-footer__contact-line a:hover { color: var(--accent); }

.obv-footer__col-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 20px;
}

.obv-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.obv-footer__link {
  font-size: 14px;
  color: var(--body-text);
  transition: color 0.2s;
}

.obv-footer__link:hover { color: var(--accent); }

.obv-footer__bottom {
  border-top: 1px solid var(--divider-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.obv-footer__copyright {
  font-size: 13px;
  color: var(--subtle);
}

.obv-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.obv-footer__bottom-link {
  font-size: 13px;
  color: var(--subtle);
  transition: color 0.2s;
}

.obv-footer__bottom-link:hover { color: var(--accent); }

/* ============================================================
   16. PLATFORM PAGE — TABS
   ============================================================ */
.obv-tabs {
  margin-top: 48px;
}

.obv-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--divider-dark);
  margin-bottom: 32px;
}

.obv-tabs__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--subtle);
  background: transparent;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.obv-tabs__btn:hover { color: var(--body-text); }

.obv-tabs__btn.obv-tabs__btn--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.obv-tabs__panel {
  display: none;
}

.obv-tabs__panel.obv-tabs__panel--active {
  display: block;
}

/* ============================================================
   17. FEATURES GRID (Platform)
   ============================================================ */
.obv-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.obv-feature-card {
  background: var(--bg-white);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.obv-feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(26, 171, 176, 0.08);
}

.obv-feature-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 171, 176, 0.1);
  border-radius: var(--radius-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
}

.obv-feature-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 8px;
}

.obv-feature-card__body {
  font-size: 13px;
  color: var(--on-light-body);
  line-height: 1.65;
  margin-bottom: 12px;
}

.obv-feature-card__metric {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(26, 171, 176, 0.07);
  border: 1px solid rgba(26, 171, 176, 0.15);
  border-radius: var(--radius-tag);
  padding: 4px 8px;
  display: inline-block;
}

/* ============================================================
   18. DATA PIPELINE (Platform)
   ============================================================ */
.obv-pipeline-wrap {
  margin-top: 56px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.obv-pipeline-svg {
  min-width: 700px;
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   19. SECURITY ITEMS
   ============================================================ */
.obv-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.obv-security-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.obv-security-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 171, 176, 0.1);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.obv-security-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--on-light-heading);
  margin-bottom: 6px;
}

.obv-security-item__body {
  font-size: 13px;
  color: var(--on-light-body);
  line-height: 1.65;
}

/* ============================================================
   20. SOLUTION PAGES — PAIN CARDS
   ============================================================ */
.obv-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.obv-pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--divider-dark);
  border-left: 3px solid var(--accent-danger);
  border-radius: var(--radius-card);
  padding: 24px;
}

.obv-pain-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}

.obv-pain-card__body {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.65;
}

/* ============================================================
   21. BEFORE / AFTER WORKFLOW
   ============================================================ */
.obv-workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.obv-workflow-col {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--divider-light);
}

.obv-workflow-col__header {
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.obv-workflow-col--before .obv-workflow-col__header {
  background: rgba(224, 82, 82, 0.1);
  color: var(--accent-danger);
  border-bottom: 1px solid rgba(224, 82, 82, 0.2);
}

.obv-workflow-col--after .obv-workflow-col__header {
  background: rgba(26, 171, 176, 0.1);
  color: var(--accent);
  border-bottom: 1px solid rgba(26, 171, 176, 0.2);
}

.obv-workflow-col__body {
  padding: 24px;
  background: var(--bg-white);
}

.obv-workflow-col__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.obv-workflow-col__item:last-child { margin-bottom: 0; }

.obv-workflow-col__item i {
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.obv-workflow-col--before .obv-workflow-col__item i { color: var(--accent-danger); }
.obv-workflow-col--after .obv-workflow-col__item i { color: var(--accent-success); }

.obv-workflow-col__text {
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.55;
}

.obv-workflow-col__metric {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--divider-light);
  text-align: center;
}

.obv-workflow-col__metric-label {
  font-size: 12px;
  color: var(--on-light-muted);
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ============================================================
   22. BRAND MANAGER FEATURES
   ============================================================ */
.obv-brand-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.obv-brand-feature {
  background: var(--bg-white);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 32px;
}

.obv-brand-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(10, 79, 110, 0.1);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-brand);
  font-size: 18px;
  margin-bottom: 18px;
}

.obv-brand-feature__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 10px;
}

.obv-brand-feature__body {
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.7;
}

/* ============================================================
   23. PRICING PAGE
   ============================================================ */
.obv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.obv-pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.obv-pricing-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.obv-pricing-card--highlighted {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(26, 171, 176, 0.2);
  position: relative;
}

.obv-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D1117;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.obv-pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-light-muted);
  margin-bottom: 12px;
}

.obv-pricing-card--highlighted .obv-pricing-card__tier {
  color: var(--accent);
}

.obv-pricing-card__price {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--on-light-heading);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.obv-pricing-card__currency {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  margin-top: 6px;
  color: var(--on-light-muted);
}

.obv-pricing-card__price-period {
  font-size: 14px;
  color: var(--on-light-muted);
  margin-bottom: 6px;
}

.obv-pricing-card__annual-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(26, 171, 176, 0.08);
  border-radius: var(--radius-tag);
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 24px;
}

.obv-pricing-card__divider {
  height: 1px;
  background: var(--divider-light);
  margin: 16px 0 20px;
}

.obv-pricing-card__limits {
  font-size: 13px;
  color: var(--on-light-muted);
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.obv-pricing-card__limits span {
  color: var(--on-light-body);
  font-weight: 500;
}

.obv-pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.obv-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--on-light-body);
  line-height: 1.45;
}

.obv-pricing-card__feature i {
  color: var(--accent-success);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.obv-pricing-card--highlighted .obv-pricing-card__feature i {
  color: var(--accent);
}

/* Pricing toggle */
.obv-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.obv-pricing-toggle__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-light-muted);
  cursor: pointer;
}

.obv-pricing-toggle__label.obv-pricing-toggle__label--active {
  color: var(--on-light-heading);
}

.obv-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.obv-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  margin: 0;
}

.obv-switch__track {
  position: absolute;
  inset: 0;
  background: var(--divider-light);
  border-radius: 13px;
  transition: background 0.2s;
}

.obv-switch__track::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.obv-switch input:checked + .obv-switch__track { background: var(--accent); }
.obv-switch input:checked + .obv-switch__track::after { transform: translateX(22px); }

/* Pricing toggle price visibility (JS sets display:none) */
.obv-price--monthly {}
.obv-price--annual {}

/* ============================================================
   24. PRICING FAQ
   ============================================================ */
.obv-faq {
  margin-top: 48px;
  max-width: 760px;
  margin-inline: auto;
}

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

.obv-faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--on-light-heading);
  transition: color 0.2s;
}

.obv-faq__question:hover { color: var(--accent); }

.obv-faq__question i {
  font-size: 12px;
  color: var(--on-light-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.obv-faq__item.obv-faq__item--open .obv-faq__question i {
  transform: rotate(180deg);
}

.obv-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.obv-faq__answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.75;
}

/* ============================================================
   25. CUSTOMERS PAGE
   ============================================================ */
.obv-customers-hero-image {
  margin-top: 48px;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 420px;
}

.obv-customers-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.obv-case-studies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

.obv-case-card {
  background: var(--bg-light);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.obv-case-card__company {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.obv-case-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 16px;
}

.obv-case-card__body {
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.75;
}

.obv-case-card__metric-box {
  background: var(--bg-dark);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
}

.obv-case-card__metric-value {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.1;
  display: block;
}

.obv-case-card__metric-label {
  font-size: 13px;
  color: var(--body-text);
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

.obv-case-card__metric-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--subtle);
  display: block;
  margin-top: 12px;
}

/* ============================================================
   26. ABOUT PAGE
   ============================================================ */
.obv-about-hero {
  padding-top: 168px;
  padding-bottom: 100px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

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

.obv-about-hero__title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 24px;
  line-height: 1.15;
}

.obv-about-hero__body p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.obv-about-hero__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--divider-dark);
}

.obv-about-hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.obv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.obv-team-card {
  background: var(--bg-white);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.obv-team-card__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.obv-team-card__info {
  padding: 18px 20px;
}

.obv-team-card__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 4px;
}

.obv-team-card__title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.obv-team-card__bio {
  font-size: 12px;
  color: var(--on-light-muted);
  line-height: 1.6;
}

.obv-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.obv-value-card {
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--divider-light);
}

.obv-value-card__number {
  font-family: var(--font-mono);
  font-size: 28px;
  color: rgba(26, 171, 176, 0.25);
  font-weight: 500;
  margin-bottom: 16px;
}

.obv-value-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 10px;
}

.obv-value-card__body {
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.7;
}

/* ============================================================
   27. BLOG INDEX
   ============================================================ */
.obv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.obv-blog-card {
  background: var(--bg-white);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  color: inherit;
  text-decoration: none;
}

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

.obv-blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.obv-blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.obv-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.obv-blog-card__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.obv-blog-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--on-light-heading);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

.obv-blog-card__excerpt {
  font-size: 13px;
  color: var(--on-light-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.obv-blog-card__read {
  font-size: 12px;
  color: var(--on-light-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   28. BLOG ARTICLE
   ============================================================ */
.obv-article-hero {
  padding: 100px 0 64px;
  background: var(--bg-light);
}

.obv-article-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.obv-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.obv-article-hero__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(26, 171, 176, 0.08);
  border: 1px solid rgba(26, 171, 176, 0.2);
  border-radius: var(--radius-tag);
  padding: 4px 10px;
}

.obv-article-hero__date {
  font-size: 13px;
  color: var(--on-light-muted);
}

.obv-article-hero__read {
  font-size: 13px;
  color: var(--on-light-muted);
}

.obv-article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--on-light-heading);
  line-height: 1.2;
  margin-bottom: 20px;
}

.obv-article-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--divider-light);
}

.obv-article-hero__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-light-heading);
}

.obv-article-hero__author-title {
  font-size: 12px;
  color: var(--on-light-muted);
}

.obv-blog-article__cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
  margin: 32px 0;
}

/* Article body — scoped under light-top pages */
body.obv-page--light-top .obv-article-body {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  padding-bottom: 80px;
}

body.obv-page--light-top .obv-article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-top: 2em;
  margin-bottom: 0.6em;
}

body.obv-page--light-top .obv-article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}

body.obv-page--light-top .obv-article-body p {
  font-size: 16px;
  color: var(--on-light-body);
  line-height: 1.8;
  margin-bottom: 1.2em;
}

body.obv-page--light-top .obv-article-body ul,
body.obv-page--light-top .obv-article-body ol {
  padding-left: 1.75em;
  margin-bottom: 1.2em;
}

body.obv-page--light-top .obv-article-body ul { list-style: disc; }
body.obv-page--light-top .obv-article-body ol { list-style: decimal; }

body.obv-page--light-top .obv-article-body li {
  font-size: 16px;
  color: var(--on-light-body);
  line-height: 1.75;
  margin-bottom: 0.4em;
}

body.obv-page--light-top .obv-article-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25em;
  margin: 1.5em 0;
  color: var(--on-light-muted);
  font-style: italic;
}

body.obv-page--light-top .obv-article-body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-light-alt);
  color: var(--on-light-heading);
  border-radius: var(--radius-tag);
  padding: 2px 6px;
}

body.obv-page--light-top .obv-article-body img {
  max-width: 100%;
  border-radius: var(--radius-card);
  margin-block: 1.5em;
}

/* ============================================================
   29. CONTACT PAGE
   ============================================================ */
.obv-contact__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.obv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.obv-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.obv-form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text);
}

.obv-form-input,
.obv-form-select,
.obv-form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  transition: border-color 0.2s;
  width: 100%;
}

.obv-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7E8B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.obv-form-select option {
  background: var(--bg-dark-alt);
  color: var(--heading);
}

.obv-form-input::placeholder,
.obv-form-textarea::placeholder {
  color: var(--subtle);
}

.obv-form-input:focus,
.obv-form-select:focus,
.obv-form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.obv-form-textarea { min-height: 130px; resize: vertical; }

.obv-contact__info {
  padding-top: 48px;
}

.obv-contact__info-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 24px;
}

.obv-contact__info-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.obv-contact__info-icon {
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
}

.obv-contact__info-text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

.obv-contact__info-text a {
  color: var(--accent);
}

/* Nina photo inset */
.obv-contact__nina {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-card);
  padding: 16px 20px;
}

.obv-contact__nina-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.obv-contact__nina-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

.obv-contact__nina-role {
  font-size: 12px;
  color: var(--subtle);
}

/* ============================================================
   30. AUTH PAGES
   ============================================================ */
.obv-auth-page {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.obv-auth-panel {
  width: 100%;
  max-width: 440px;
  background: var(--bg-dark-alt);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-card);
  padding: 40px;
}

.obv-auth-panel__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.obv-auth-panel__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 8px;
  text-align: center;
}

.obv-auth-panel__sub {
  font-size: 14px;
  color: var(--body-text);
  text-align: center;
  margin-bottom: 32px;
}

.obv-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.obv-auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.obv-auth-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--subtle);
}

.obv-auth-links a {
  color: var(--accent);
}

.obv-auth-divider {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--divider-dark);
  font-size: 13px;
  color: var(--subtle);
}

.obv-auth-divider a {
  color: var(--accent);
}

.obv-demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.obv-demo-modal.obv-demo-modal--open {
  display: flex;
}

.obv-demo-modal__box {
  background: var(--bg-dark-alt);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.obv-demo-modal__icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.obv-demo-modal__title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 12px;
}

.obv-demo-modal__body {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.obv-demo-modal__close {
  background: transparent;
  border: 1px solid var(--divider-dark);
  cursor: pointer;
}

/* ============================================================
   31. LEGAL PAGES
   ============================================================ */
.obv-legal-page-hero {
  padding: 100px 0 40px;
  background: var(--bg-white);
}

body.obv-page--light-top .obv-legal-content {
  max-width: 760px;
  margin: 0 auto 80px;
  padding-inline: var(--container-pad);
}

body.obv-page--light-top .obv-legal-content .legal-article {
  font-size: 15px;
  color: var(--on-light-body);
  line-height: 1.8;
}

body.obv-page--light-top .obv-legal-content .legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--divider-light);
}

body.obv-page--light-top .obv-legal-content .legal-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 8px;
}

body.obv-page--light-top .obv-legal-content .legal-meta {
  font-size: 13px;
  color: var(--on-light-muted);
  font-family: var(--font-mono);
}

body.obv-page--light-top .obv-legal-content section {
  margin-bottom: 32px;
}

body.obv-page--light-top .obv-legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--on-light-heading);
  margin-bottom: 12px;
  margin-top: 32px;
}

body.obv-page--light-top .obv-legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-light-heading);
  margin-bottom: 8px;
  margin-top: 20px;
}

body.obv-page--light-top .obv-legal-content p {
  margin-bottom: 12px;
  color: var(--on-light-body);
  line-height: 1.8;
}

body.obv-page--light-top .obv-legal-content ul,
body.obv-page--light-top .obv-legal-content ol {
  padding-left: 1.5em;
  margin-bottom: 12px;
}

body.obv-page--light-top .obv-legal-content ul { list-style: disc; }
body.obv-page--light-top .obv-legal-content ol { list-style: decimal; }

body.obv-page--light-top .obv-legal-content li {
  margin-bottom: 6px;
  color: var(--on-light-body);
  line-height: 1.7;
}

body.obv-page--light-top .obv-legal-content address {
  font-style: normal;
  background: var(--bg-light);
  border: 1px solid var(--divider-light);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--on-light-body);
  line-height: 1.8;
  margin-top: 8px;
}

body.obv-page--light-top .obv-legal-content .legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 16px;
}

body.obv-page--light-top .obv-legal-content .legal-table th,
body.obv-page--light-top .obv-legal-content .legal-table td {
  border: 1px solid var(--divider-light);
  padding: 10px 14px;
  text-align: left;
}

body.obv-page--light-top .obv-legal-content .legal-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--on-light-heading);
}

body.obv-page--light-top .obv-legal-content a {
  color: var(--accent);
}

/* ============================================================
   32. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--bg-dark-alt);
  border-top: 1px solid var(--divider-dark);
  padding: 16px 0;
}

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

.cookie-banner__text {
  font-size: 13px;
  color: var(--body-text);
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text a {
  color: var(--accent);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-input);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-banner__btn--primary {
  background: var(--accent);
  color: #0D1117;
  border-color: var(--accent);
}

.cookie-banner__btn--primary:hover {
  background: #17979c;
  border-color: #17979c;
}

/* ============================================================
   33. FADE-IN ANIMATIONS
   ============================================================ */
.obv-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ============================================================
   34. SUB-PAGE HERO (non-index)
   ============================================================ */
.obv-subpage-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.obv-subpage-hero--dark { background: var(--bg-dark); }
.obv-subpage-hero--light { background: var(--bg-light); }

.obv-subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--divider-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--divider-dark) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.2;
  pointer-events: none;
}

.obv-subpage-hero--light::before {
  background-image:
    linear-gradient(var(--divider-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--divider-light) 1px, transparent 1px);
  opacity: 0.5;
}

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

.obv-subpage-hero__content {}

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

/* ============================================================
   35. UTILITY
   ============================================================ */
.obv-text-center { text-align: center; }
.obv-mt-sm { margin-top: 24px; }
.obv-mt-md { margin-top: 40px; }
.obv-mt-lg { margin-top: 56px; }
.obv-mb-sm { margin-bottom: 24px; }

.obv-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-tag);
  padding: 4px 8px;
  display: inline-block;
}

.obv-tag--teal {
  background: rgba(26, 171, 176, 0.12);
  color: var(--accent);
  border: 1px solid rgba(26, 171, 176, 0.25);
}

.obv-tag--amber {
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

/* Visually hidden (screen reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   36. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .obv-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .obv-hero__actions { justify-content: center; }
  .obv-features-grid { grid-template-columns: repeat(2, 1fr); }
  .obv-pricing-grid { grid-template-columns: 1fr 1fr; }
  .obv-case-card { grid-template-columns: 1fr; }
  .obv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .obv-about-hero__inner { grid-template-columns: 1fr; }
  .obv-contact__inner { grid-template-columns: 1fr; }
}

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

  .obv-nav__links,
  .obv-nav__actions { display: none; }
  .obv-nav__hamburger { display: flex; }

  .obv-cap-grid { grid-template-columns: 1fr; }
  .obv-steps { grid-template-columns: 1fr; }
  .obv-steps::before { display: none; }
  .obv-testimonials { grid-template-columns: 1fr; }
  .obv-problem__inner { grid-template-columns: 1fr; }
  .obv-features-grid { grid-template-columns: 1fr; }
  .obv-pricing-grid { grid-template-columns: 1fr; }
  .obv-blog-grid { grid-template-columns: 1fr 1fr; }
  .obv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .obv-values-grid { grid-template-columns: 1fr; }
  .obv-security-grid { grid-template-columns: 1fr; }
  .obv-brand-features-grid { grid-template-columns: 1fr; }
  .obv-workflow { grid-template-columns: 1fr; }
  .obv-pain-grid { grid-template-columns: 1fr; }
  .obv-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .obv-proof-bar__inner { gap: 32px; }
  .obv-proof-bar__divider { display: none; }
  .obv-subpage-hero__inner { grid-template-columns: 1fr; }
  .obv-pricing-card--highlighted { margin-top: 0; }
}

@media (max-width: 480px) {
  .obv-blog-grid { grid-template-columns: 1fr; }
  .obv-auth-form-row { grid-template-columns: 1fr; }
}
