/* orbitvein.css — Orbitvein brand stylesheet
   Brand prefix: ov-  |  Accent: #0EA5E9  |  Theme: dark / earthy_outdoor
   Generated: 2026-05-20
*/

/* ============================================================
   0. OVERFLOW GUARD + RESET
   ============================================================ */
html, body { overflow-x: hidden; }
/* Brand assets: logo.svg, images/favicon.png, og-card.webp — generated by Artist phase */


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

body {
  margin: 0;
  padding: 0;
  font-family: 'Geist', 'Geist Variable', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  background: #050A14;
}

:root {
  --ov-accent: #0EA5E9;
  --ov-accent-dark: #0284c7;
  --ov-secondary: #1E3A5F;
  --ov-bg-deep: #050A14;
  --ov-bg-dark: #0D1B2E;
  --ov-bg-surface: #112240;
  --ov-bg-card: #0f1e35;
  --ov-text-primary: #f1f5f9;
  --ov-text-body: #cbd5e1;
  --ov-text-muted: #94a3b8;
  --ov-border: rgba(255,255,255,0.08);
  --ov-container: 1200px;
  --ov-radius: 8px;
  --ov-font-mono: 'Geist Mono', 'JetBrains Mono', monospace;
}

img { max-width: 100%; height: auto; }
a { color: var(--ov-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Geist', 'Geist Variable', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ov-text-primary);
  margin-top: 0;
}

/* ============================================================
   1. BUTTONS
   ============================================================ */
.ov-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--ov-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s, background 0.2s;
  line-height: 1;
}
.ov-btn--primary {
  background: var(--ov-accent);
  color: #fff;
}
.ov-btn--primary:hover { filter: brightness(1.12); text-decoration: none; }
.ov-btn--ghost {
  background: transparent;
  color: var(--ov-text-primary);
  border: 1px solid var(--ov-border);
}
.ov-btn--ghost:hover { border-color: var(--ov-accent); color: var(--ov-accent); text-decoration: none; }
.ov-btn--outline {
  background: transparent;
  color: var(--ov-accent);
  border: 1.5px solid var(--ov-accent);
}
.ov-btn--outline:hover { background: var(--ov-accent); color: #fff; text-decoration: none; }
.ov-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ============================================================
   2. NAV — A-simple, transparent-over-hero on home, solid on sub-pages
   ============================================================ */
.ov-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.ov-nav--transparent-over-hero {
  background: transparent;
}

.ov-nav--transparent-over-hero.is-scrolled,
.ov-nav--solid {
  background: rgba(5, 10, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ov-border);
}

.ov-nav__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.ov-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ov-nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.ov-nav__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--ov-text-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.ov-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ov-nav__links a {
  color: var(--ov-text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.ov-nav__links a:hover { color: var(--ov-text-primary); text-decoration: none; }

.ov-nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ov-nav__cta--button {}

.ov-nav__cta .ov-btn {
  padding: 8px 18px;
  font-size: 14px;
}

.ov-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ov-text-primary);
  padding: 4px;
}

@media (max-width: 768px) {
  .ov-nav__links { display: none; }
  .ov-nav__toggle { display: flex; align-items: center; }
  .ov-nav__cta { gap: 8px; }
  .ov-nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 20, 0.98);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--ov-border);
  }
  .ov-nav__links.is-open li { width: 100%; }
  .ov-nav__links.is-open a { display: block; padding: 12px 0; border-bottom: 1px solid var(--ov-border); font-size: 16px; }
}

/* ============================================================
   3. HERO — D-full-bleed
   ============================================================ */
.ov-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ov-bg-deep);
  overflow: hidden;
}

.ov-hero--full-bleed {
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ov-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,10,20,0.55) 0%,
    rgba(5,10,20,0.35) 40%,
    rgba(5,10,20,0.75) 100%
  );
  z-index: 1;
}

.ov-hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.ov-hero__content {
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.ov-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  background: rgba(14, 165, 233, 0.08);
}

.ov-hero__headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.ov-hero__headline em {
  font-style: normal;
  color: var(--ov-accent);
}

.ov-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 580px;
}

.ov-hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ov-hero__social-proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ov-hero__stat {
  display: flex;
  flex-direction: column;
}

.ov-hero__stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.ov-hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.ov-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .ov-hero__content { padding-top: 100px; padding-bottom: 60px; }
  .ov-hero__headline { font-size: 36px; }
  .ov-hero__sub { font-size: 16px; }
  .ov-hero__cta-group { flex-direction: column; align-items: flex-start; }
  .ov-hero__social-proof { gap: 20px; }
}

/* ============================================================
   4. STATS — B-cards
   ============================================================ */
.ov-stats {
  background: var(--ov-bg-dark);
  padding: 72px 0;
}

.ov-stats__grid {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ov-stats__card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.ov-stats__card:hover { border-color: rgba(14,165,233,0.3); }

.ov-stats__value {
  font-size: 42px;
  font-weight: 800;
  color: var(--ov-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.ov-stats__label {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .ov-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .ov-stats__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   5. FEATURES — C-alternating (icon-per-card strategy)
   ============================================================ */
.ov-features {
  background: var(--ov-bg-deep);
  padding: 96px 0;
}

.ov-features__header {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  margin-bottom: 72px;
}

.ov-features__header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-features__header p {
  font-size: 17px;
  color: var(--ov-text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.ov-features__row {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 0;
}

.ov-features__row + .ov-features__row {
  border-top: 1px solid var(--ov-border);
  padding-top: 64px;
  margin-top: 64px;
}

.ov-features__row--reverse .ov-features__media { order: 2; }
.ov-features__row--reverse .ov-features__body { order: 1; }

.ov-features__media {
  padding: 24px;
}

.ov-features__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ov-features__icon-card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.ov-features__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ov-features__icon-wrap i {
  font-size: 28px;
  color: var(--ov-accent);
}

.ov-features__body {
  padding: 24px 40px;
}

.ov-features__body .ov-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-bottom: 16px;
  display: block;
}

.ov-features__body h3 {
  font-size: 28px;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-features__body .ov-one-liner {
  font-size: 16px;
  font-weight: 600;
  color: var(--ov-text-body);
  margin-bottom: 16px;
  line-height: 1.5;
}

.ov-features__body p {
  font-size: 15px;
  color: var(--ov-text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .ov-features__row {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .ov-features__row--reverse .ov-features__media { order: unset; }
  .ov-features__row--reverse .ov-features__body { order: unset; }
  .ov-features__media { padding: 24px 24px 0; }
  .ov-features__body { padding: 24px; }
  .ov-features__media img { height: 240px; }
}

/* ============================================================
   6. CTA — A-banner
   ============================================================ */
.ov-cta {
  background: var(--ov-secondary);
  padding: 80px 0;
}

.ov-cta__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ov-cta__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
  margin-bottom: 16px;
}

.ov-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ov-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   7. ARTICLES PREVIEW (index.html blog preview)
   ============================================================ */
.ov-articles {
  background: var(--ov-bg-dark);
  padding: 96px 0;
}

.ov-articles__header {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.ov-articles__header h2 {
  font-size: 32px;
  color: var(--ov-text-primary);
  margin-bottom: 0;
}

.ov-articles__list {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.ov-articles__item {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.ov-articles__item:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-2px); }

.ov-articles__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.ov-articles__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.ov-articles__item:hover .ov-articles__thumb img { transform: scale(1.03); }

.ov-articles__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ov-articles__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-bottom: 8px;
}

.ov-articles__date {
  font-size: 12px;
  color: var(--ov-text-muted);
  margin-bottom: 8px;
}

.ov-articles__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ov-text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.ov-articles__title a {
  color: inherit;
  text-decoration: none;
}
.ov-articles__title a:hover { color: var(--ov-accent); text-decoration: none; }

.ov-articles__excerpt {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.ov-articles__read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--ov-accent);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ov-articles__read-more:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .ov-articles__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ov-articles__list { grid-template-columns: 1fr; }
  .ov-articles__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   8. FOOTER — A-4col
   ============================================================ */
.ov-footer {
  background: var(--ov-bg-deep);
  border-top: 1px solid var(--ov-border);
  padding: 72px 0 0;
}

.ov-footer__grid {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.ov-footer__brand {}

.ov-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.ov-footer__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--ov-text-primary);
}

.ov-footer__tagline {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ov-footer__social {
  display: flex;
  gap: 12px;
}

.ov-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ov-footer__social a:hover { border-color: var(--ov-accent); color: var(--ov-accent); text-decoration: none; }

.ov-footer__col {}

.ov-footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ov-text-primary);
  margin-bottom: 20px;
}

.ov-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ov-footer__links li { margin-bottom: 10px; }

.ov-footer__links a {
  font-size: 14px;
  color: var(--ov-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ov-footer__links a:hover { color: var(--ov-text-primary); text-decoration: none; }

.ov-footer__contact-detail {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.7;
}

.ov-footer__contact-detail a {
  color: var(--ov-accent);
}

.ov-footer__bottom {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--ov-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ov-footer__copy {
  font-size: 13px;
  color: var(--ov-text-muted);
}

.ov-footer__legal {
  display: flex;
  gap: 20px;
}

.ov-footer__legal a {
  font-size: 13px;
  color: var(--ov-text-muted);
  text-decoration: none;
}
.ov-footer__legal a:hover { color: var(--ov-text-primary); }

@media (max-width: 900px) {
  .ov-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ov-footer__grid { grid-template-columns: 1fr; }
  .ov-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   9. COOKIE BANNER — inline-footer-strip (hidden attribute mechanism)
   ============================================================ */
.ov-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13, 27, 46, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--ov-border);
  padding: 14px 24px;
}

.ov-cookie[hidden] { display: none !important; }

.ov-cookie__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ov-cookie__text {
  font-size: 13px;
  color: var(--ov-text-muted);
  flex: 1;
  min-width: 200px;
}

.ov-cookie__text a {
  color: var(--ov-accent);
  text-decoration: underline;
}

.ov-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ov-cookie__accept {
  padding: 8px 18px;
  background: var(--ov-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}
.ov-cookie__accept:hover { filter: brightness(1.12); }

.ov-cookie__decline {
  padding: 8px 18px;
  background: transparent;
  color: var(--ov-text-muted);
  border: 1px solid var(--ov-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.ov-cookie__decline:hover { border-color: var(--ov-text-muted); color: var(--ov-text-primary); }

@media (max-width: 600px) {
  .ov-cookie__inner { flex-direction: column; align-items: flex-start; }
  .ov-cookie__actions { width: 100%; }
  .ov-cookie__accept, .ov-cookie__decline { flex: 1; justify-content: center; }
}

/* ============================================================
   10. PAGE HERO (sub-pages — small eyebrow + H1 + lede)
   ============================================================ */
.ov-page-hero {
  background: var(--ov-bg-dark);
  padding-top: 120px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ov-border);
}

.ov-page-hero__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-bottom: 16px;
  display: block;
}

.ov-page-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-page-hero__lede {
  font-size: 17px;
  color: var(--ov-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ============================================================
   11. PRODUCT PAGE SECTIONS
   ============================================================ */

/* Problem */
.ov-problem {
  background: var(--ov-bg-dark);
  padding: 80px 0;
}

.ov-problem__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ov-problem__content h2 {
  font-size: 34px;
  color: var(--ov-text-primary);
  margin-bottom: 20px;
}

.ov-problem__content p {
  font-size: 16px;
  color: var(--ov-text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ov-problem__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ov-problem__stat-card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 10px;
  padding: 20px;
}

.ov-problem__stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #f87171;
  letter-spacing: -0.02em;
}

.ov-problem__stat-label {
  font-size: 13px;
  color: var(--ov-text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .ov-problem__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* How it works */
.ov-how-it-works {
  background: var(--ov-bg-deep);
  padding: 80px 0;
}

.ov-how-it-works__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-how-it-works__title {
  font-size: 34px;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-how-it-works__intro {
  font-size: 16px;
  color: var(--ov-text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.ov-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.ov-how-it-works__step {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.ov-how-it-works__step + .ov-how-it-works__step {
  margin-left: -1px;
  border-radius: 0;
}

.ov-how-it-works__step:first-child { border-radius: 12px 0 0 12px; }
.ov-how-it-works__step:last-child { border-radius: 0 12px 12px 0; }

.ov-how-it-works__step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-bottom: 16px;
}

.ov-how-it-works__step h3 {
  font-size: 18px;
  color: var(--ov-text-primary);
  margin-bottom: 12px;
}

.ov-how-it-works__step p {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ov-how-it-works__steps { grid-template-columns: 1fr; }
  .ov-how-it-works__step + .ov-how-it-works__step { margin-left: 0; margin-top: -1px; }
  .ov-how-it-works__step:first-child { border-radius: 12px 12px 0 0; }
  .ov-how-it-works__step:last-child { border-radius: 0 0 12px 12px; }
}

/* Features on product.html */
.ov-features-grid {
  background: var(--ov-bg-dark);
  padding: 80px 0;
}

.ov-features-grid__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-features-grid__title {
  font-size: 34px;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-features-grid__intro {
  font-size: 16px;
  color: var(--ov-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.ov-features-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ov-features-grid__card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.ov-features-grid__card:hover { border-color: rgba(14,165,233,0.3); }

.ov-features-grid__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(14,165,233,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ov-features-grid__icon i {
  font-size: 20px;
  color: var(--ov-accent);
}

.ov-features-grid__card h3 {
  font-size: 17px;
  color: var(--ov-text-primary);
  margin-bottom: 10px;
}

.ov-features-grid__card p {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 900px) {
  .ov-features-grid__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ov-features-grid__cards { grid-template-columns: 1fr; }
}

/* Target customer */
.ov-target-customer {
  background: var(--ov-bg-deep);
  padding: 80px 0;
}

.ov-target-customer__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ov-target-customer__content h2 {
  font-size: 32px;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-target-customer__content p {
  font-size: 16px;
  color: var(--ov-text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ov-target-customer__panel {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 32px;
}

.ov-target-customer__panel h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-target-customer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ov-target-customer__list li {
  font-size: 14px;
  color: var(--ov-text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--ov-border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ov-target-customer__list li:last-child { border-bottom: none; }

.ov-target-customer__list li i {
  color: var(--ov-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.ov-target-customer__not-for {
  font-size: 13px;
  color: var(--ov-text-muted);
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 2px solid rgba(248,113,113,0.5);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ov-target-customer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   12. ABOUT PAGE SECTIONS
   ============================================================ */

/* Founding story */
.ov-founding-story {
  background: var(--ov-bg-dark);
  padding: 80px 0;
}

.ov-founding-story__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 64px;
  align-items: start;
}

.ov-founding-story__content h2 {
  font-size: 32px;
  color: var(--ov-text-primary);
  margin-bottom: 24px;
}

.ov-founding-story__content p {
  font-size: 16px;
  color: var(--ov-text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.ov-founding-story__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ov-founding-story__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Mission */
.ov-mission {
  background: var(--ov-secondary);
  padding: 80px 0;
}

.ov-mission__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  max-width: 760px;
}

.ov-mission__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,165,233,0.9);
  margin-bottom: 20px;
  display: block;
}

.ov-mission__statement {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}

.ov-mission__context {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}

/* Stage focus */
.ov-stage-focus {
  background: var(--ov-bg-deep);
  padding: 80px 0;
}

.ov-stage-focus__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-stage-focus__inner h2 {
  font-size: 32px;
  color: var(--ov-text-primary);
  margin-bottom: 20px;
}

.ov-stage-focus__inner p {
  font-size: 16px;
  color: var(--ov-text-body);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 16px;
}

.ov-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ov-accent);
  margin-bottom: 24px;
}

/* Values */
.ov-values {
  background: var(--ov-bg-dark);
  padding: 80px 0;
}

.ov-values__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-values__inner h2 {
  font-size: 32px;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-values__intro {
  font-size: 16px;
  color: var(--ov-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.ov-values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ov-values__card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 28px 24px;
}

.ov-values__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ov-values__card-icon i {
  font-size: 20px;
  color: var(--ov-accent);
}

.ov-values__card h3 {
  font-size: 17px;
  color: var(--ov-text-primary);
  margin-bottom: 10px;
}

.ov-values__card p {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .ov-values__cards { grid-template-columns: 1fr; }
}

/* ============================================================
   13. TEAM PAGE
   ============================================================ */
.ov-team {
  background: var(--ov-bg-dark);
  padding: 80px 0;
}

.ov-team__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.ov-team__intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.ov-team__intro h2 {
  font-size: 34px;
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-team__intro p {
  font-size: 16px;
  color: var(--ov-text-muted);
  line-height: 1.7;
}

.ov-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ov-team__card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s;
}

.ov-team__card:hover { border-color: rgba(14,165,233,0.3); }

.ov-team__avatar {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.ov-team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ov-team__info {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ov-team__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ov-text-primary);
  margin-bottom: 4px;
}

.ov-team__title {
  font-size: 14px;
  color: var(--ov-accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.ov-team__bio {
  font-size: 13px;
  color: var(--ov-text-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

@media (max-width: 768px) {
  .ov-team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .ov-team__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   14. TESTIMONIALS — A-quotes (index.html only)
   ============================================================ */
.ov-testimonials {
  background: var(--ov-bg-deep);
  padding: 96px 0;
}

.ov-testimonials__header {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  margin-bottom: 56px;
}

.ov-testimonials__header h2 {
  font-size: 34px;
  color: var(--ov-text-primary);
  margin-bottom: 12px;
}

.ov-testimonials__header p {
  font-size: 16px;
  color: var(--ov-text-muted);
}

.ov-testimonials__grid {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ov-testimonials__card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.ov-testimonials__card::before {
  content: '\201C';
  font-size: 48px;
  color: var(--ov-accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.ov-testimonials__quote {
  font-size: 15px;
  color: var(--ov-text-body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.ov-testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ov-testimonials__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ov-text-primary);
}

.ov-testimonials__role {
  font-size: 13px;
  color: var(--ov-text-muted);
}

@media (max-width: 768px) {
  .ov-testimonials__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   15. INTEGRATIONS strip (product page)
   ============================================================ */
.ov-integrations {
  background: var(--ov-bg-dark);
  padding: 64px 0;
}

.ov-integrations__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-integrations__inner h2 {
  font-size: 24px;
  color: var(--ov-text-primary);
  margin-bottom: 24px;
}

.ov-integrations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ov-integrations__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--ov-text-body);
}

.ov-integrations__pill i {
  color: var(--ov-accent);
  font-size: 13px;
}

/* ============================================================
   16. UTILITY
   ============================================================ */
.ov-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-accent);
  display: block;
  margin-bottom: 12px;
}

.ov-divider {
  border: none;
  border-top: 1px solid var(--ov-border);
  margin: 0;
}

/* ============================================================
   17. BLOG INDEX — B-editorial-list
   ============================================================ */
.ov-blog-index {
  background: var(--ov-bg-deep);
  padding: 80px 0;
}

.ov-blog-index__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Filter bar */
.ov-blog-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.ov-blog-filter-btn {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 24px;
  border: 1px solid var(--ov-border);
  background: transparent;
  color: var(--ov-text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ov-blog-filter-btn:hover,
.ov-blog-filter-btn[aria-pressed="true"] {
  border-color: var(--ov-accent);
  color: var(--ov-accent);
  background: rgba(14,165,233,0.08);
}

/* Editorial list */
.ov-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ov-blog-list > li { list-style: none; }

.ov-blog-list__item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--ov-border);
  transition: opacity 0.25s;
}

.ov-blog-list__item.is-hidden { display: none; }

.ov-blog-list__item:first-child { padding-top: 0; }

.ov-blog-list__thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.ov-blog-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.ov-blog-list__item:hover .ov-blog-list__thumb img { transform: scale(1.03); }

.ov-blog-list__body {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.ov-blog-list__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ov-blog-list__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ov-accent);
}

.ov-blog-list__date {
  font-size: 12px;
  color: var(--ov-text-muted);
}

.ov-blog-list__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ov-text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.ov-blog-list__title a {
  color: inherit;
  text-decoration: none;
}
.ov-blog-list__title a:hover { color: var(--ov-accent); text-decoration: none; }

.ov-blog-list__excerpt {
  font-size: 15px;
  color: var(--ov-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.ov-blog-list__read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--ov-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.ov-blog-list__read-more:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .ov-blog-list__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   18. BLOG ARTICLE — A-standard
   ============================================================ */

/* Post page hero */
.ov-post-hero {
  background: var(--ov-bg-dark);
  padding-top: 120px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ov-border);
}

.ov-post-hero__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ov-post-hero__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ov-accent);
  padding: 3px 10px;
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 12px;
  background: rgba(14,165,233,0.07);
}

.ov-post-hero__date {
  font-size: 13px;
  color: var(--ov-text-muted);
}

.ov-post-hero__author {
  font-size: 13px;
  color: var(--ov-text-muted);
}

.ov-post__title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ov-text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 840px;
}

.ov-post__cover {
  background: var(--ov-bg-deep);
  padding: 48px 0;
}

.ov-post__cover-inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-post__cover-inner img {
  width: 100%;
  border-radius: 12px;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Post body reading width */
.ov-post__body-section {
  background: var(--ov-bg-deep);
  padding: 48px 0 80px;
}

/* ==== BLOG ARTICLE READING WIDTH (MANDATORY) ==== */
.c-article,
.c-article__container,
.c-post__body,
.c-post,
.c-blog-post,
.blog-article,
.blog-article-body,
.blog-article-content,
.blog-post,
.blog-post-body,
.article-body,
.article-content,
.post-content,
.post-body,
.container-narrow,
.reading-column {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Article body images: never exceed reading column */
.c-article img,
.c-article__container img,
.c-post__body img,
.blog-article-body img,
.blog-post img,
.article-body img,
.article-content img,
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 24px auto 32px;
}

/* Heading rhythm in article body */
.c-article h2,
.c-post__body h2,
.blog-article-body h2,
.blog-post h2,
.article-body h2,
.post-content h2 { margin-top: 48px; margin-bottom: 20px; }

.c-article h3,
.c-post__body h3,
.blog-article-body h3,
.blog-post h3,
.article-body h3,
.post-content h3 { margin-top: 36px; margin-bottom: 16px; }

/* Post body font style */
.ov-post__body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.ov-post__body p {
  font-size: 17px;
  color: var(--ov-text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Related articles */
.ov-related {
  background: var(--ov-bg-dark);
  padding: 64px 0;
  border-top: 1px solid var(--ov-border);
}

.ov-related__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}

.ov-related__heading {
  font-size: 22px;
  color: var(--ov-text-primary);
  margin-bottom: 32px;
}

.ov-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ov-related-card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  text-decoration: none;
}
.ov-related-card:hover { border-color: rgba(14,165,233,0.3); text-decoration: none; }

.ov-related-card__img {
  overflow: hidden;
  max-height: 200px;
}

.ov-related-card__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  max-height: 200px;
}

.ov-related-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ov-related-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ov-text-primary);
  line-height: 1.4;
  margin-bottom: 6px;
  margin-top: 0;
}

.ov-related-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-top: auto;
}

@media (max-width: 768px) {
  .ov-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .ov-related__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   CONTACT PAGE -- A-split
   ============================================================ */
.ov-contact {
  background: var(--ov-bg-deep);
  padding: 80px 0;
}

.ov-contact__grid {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 64px;
  align-items: start;
}

.ov-contact__form h2 {
  font-size: 28px;
  color: var(--ov-text-primary);
  margin-bottom: 8px;
}

.ov-contact__form > p {
  font-size: 15px;
  color: var(--ov-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.ov-contact__field {
  margin-bottom: 20px;
}

.ov-contact__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ov-text-body);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ov-contact__field input,
.ov-contact__field select,
.ov-contact__field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--ov-text-primary);
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius);
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.ov-contact__field input:focus,
.ov-contact__field select:focus,
.ov-contact__field textarea:focus {
  outline: 2px solid var(--ov-accent);
  outline-offset: 2px;
  border-color: var(--ov-accent);
}

.ov-contact__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.ov-contact__field input::placeholder,
.ov-contact__field textarea::placeholder {
  color: var(--ov-text-muted);
}

.ov-contact__success {
  display: none;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: var(--ov-radius);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ov-accent);
  margin-top: 16px;
  line-height: 1.6;
}

.ov-contact__info h3 {
  font-size: 18px;
  color: var(--ov-text-primary);
  margin-bottom: 24px;
}

.ov-contact__info-block {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.ov-contact__info-block h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ov-accent);
  margin-bottom: 12px;
}

.ov-contact__info-block p {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.7;
  margin: 0;
}

.ov-contact__info-block a {
  font-size: 14px;
  color: var(--ov-accent);
  text-decoration: none;
  line-height: 1.7;
}
.ov-contact__info-block a:hover { text-decoration: underline; }

.ov-contact__map-placeholder {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.ov-contact__map-placeholder p {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .ov-contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.ov-404 {
  background: var(--ov-bg-deep);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.ov-404__inner {
  max-width: 560px;
  text-align: center;
}

.ov-404__code {
  font-size: clamp(96px, 20vw, 180px);
  font-weight: 800;
  color: var(--ov-accent);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  opacity: 0.4;
}

.ov-404__title {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--ov-text-primary);
  margin-bottom: 16px;
}

.ov-404__message {
  font-size: 16px;
  color: var(--ov-text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.ov-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   AUTH PAGES -- B-split-features, Pattern A subfolder
   ============================================================ */
.ov-auth-page {
  min-height: 100vh;
  background: #050A14;
  display: flex;
  flex-direction: column;
}

.ov-auth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  flex-shrink: 0;
}

.ov-auth-topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ov-auth-topbar__logo img {
  height: 32px;
  width: auto;
}

.ov-auth-topbar__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.ov-auth-topbar__link {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
}
.ov-auth-topbar__link:hover { color: #f1f5f9; text-decoration: none; }

.ov-auth-split {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.ov-auth__form-panel {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: #0D1B2E;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.ov-auth__card {
  width: 100%;
  max-width: 400px;
}

.ov-auth__card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.ov-auth__card > p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 28px;
  line-height: 1.6;
}

.ov-auth__field {
  margin-bottom: 16px;
}

.ov-auth__field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.ov-auth__field input,
.ov-auth__field select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: #f1f5f9;
  background: #112240;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.ov-auth__field input:focus,
.ov-auth__field select:focus {
  outline: 2px solid #0EA5E9;
  outline-offset: 1px;
  border-color: #0EA5E9;
}

.ov-auth__field input::placeholder { color: #475569; }

.ov-auth__field select {
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  background-color: #112240;
}

.ov-auth__field select option { background: #0D1B2E; }

.ov-auth__checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.ov-auth__checkbox-line input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #0EA5E9;
}

.ov-auth__forgot {
  font-size: 13px;
  color: #0EA5E9;
  text-decoration: none;
  float: right;
  margin-top: -12px;
  margin-bottom: 8px;
  display: block;
}
.ov-auth__forgot:hover { text-decoration: underline; }

.ov-auth__submit {
  width: 100%;
  padding: 12px;
  background: #0EA5E9;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: filter 0.2s;
}
.ov-auth__submit:hover { filter: brightness(1.12); }

.ov-auth__links {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
}

.ov-auth__links a {
  color: #0EA5E9;
  text-decoration: none;
  font-weight: 500;
}
.ov-auth__links a:hover { text-decoration: underline; }

.ov-auth__terms {
  font-size: 12px;
  color: #475569;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.ov-auth__terms a { color: #0EA5E9; text-decoration: none; }
.ov-auth__terms a:hover { text-decoration: underline; }

.ov-auth__message {
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.ov-auth__message--success {
  background: rgba(14,165,233,0.12);
  color: #7dd3fc;
  border: 1px solid rgba(14,165,233,0.25);
}
.ov-auth__message--error {
  background: rgba(248,113,113,0.12);
  color: #fca5a5;
  border: 1px solid rgba(248,113,113,0.25);
}

.ov-auth__info-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: linear-gradient(135deg, #0D1B2E 0%, #050A14 60%, #071524 100%);
  position: relative;
  overflow: hidden;
}

.ov-auth__info-panel::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ov-auth__info-panel::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(30,58,95,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.ov-auth__info-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0EA5E9;
  margin-bottom: 16px;
  display: block;
}

.ov-auth__info-panel h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.ov-auth-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}

.ov-auth-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.ov-auth-features li i {
  color: #0EA5E9;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.ov-auth-features__label {
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  display: block;
  margin-bottom: 2px;
}

.ov-auth-features__detail {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.ov-auth-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ov-auth-metrics__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px 18px;
}

.ov-auth-metrics__value {
  font-size: 24px;
  font-weight: 800;
  color: #0EA5E9;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.ov-auth-metrics__label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.ov-auth-mini-footer {
  padding: 16px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.ov-auth-mini-footer a {
  font-size: 12px;
  color: #475569;
  text-decoration: none;
}
.ov-auth-mini-footer a:hover { color: #94a3b8; text-decoration: none; }

@media (max-width: 900px) {
  .ov-auth__form-panel { flex: 1; border-right: none; }
  .ov-auth__info-panel { display: none; }
}

@media (max-width: 480px) {
  .ov-auth__form-panel { padding: 32px 20px; }
  .ov-auth__card { max-width: 100%; }
  .ov-auth-topbar { padding: 16px 20px; }
  .ov-auth-mini-footer { flex-wrap: wrap; padding: 12px 20px; }
}

/* Dashboard */
.ov-dashboard {
  min-height: 100vh;
  display: flex;
  background: #050A14;
}

.ov-dashboard__sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #0D1B2E;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}

.ov-dashboard__sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.ov-dashboard__sidebar-logo img { height: 28px; width: auto; }

.ov-dashboard__sidebar-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
}

.ov-dashboard__nav {
  list-style: none;
  padding: 0 12px;
  margin: 0;
  flex: 1;
}

.ov-dashboard__nav li { margin-bottom: 2px; }

.ov-dashboard__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.ov-dashboard__nav a:hover,
.ov-dashboard__nav a.is-active { background: rgba(14,165,233,0.1); color: #f1f5f9; }

.ov-dashboard__nav a i { font-size: 13px; width: 16px; color: #0EA5E9; }

.ov-dashboard__nav-logout a { color: #f87171; }
.ov-dashboard__nav-logout a:hover { background: rgba(248,113,113,0.1); color: #fca5a5; }

.ov-dashboard__main {
  flex: 1;
  padding: 40px 48px;
  overflow-y: auto;
}

.ov-dashboard__welcome {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
  padding-top: 100px;
}

.ov-dashboard__sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 36px;
}

.ov-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.ov-dashboard__stat-card {
  background: #0D1B2E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 18px;
}

.ov-dashboard__stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #0EA5E9;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ov-dashboard__stat-label {
  font-size: 13px;
  color: #64748b;
}

.ov-dashboard__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.ov-dashboard__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ov-dashboard__table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ov-dashboard__table td {
  padding: 12px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ov-dashboard__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.ov-dashboard__badge--ok { background: rgba(14,165,233,0.15); color: #7dd3fc; }
.ov-dashboard__badge--warn { background: rgba(251,191,36,0.12); color: #fcd34d; }

@media (max-width: 900px) {
  .ov-dashboard__stats { grid-template-columns: 1fr 1fr; }
  .ov-dashboard__sidebar { display: none; }
  .ov-dashboard__main { padding: 24px 20px; }
}

/* ============================================================
   MISSING CLASS COVERAGE (Novel Class Audit fixes)
   ============================================================ */
.ov-auth__form {
  width: 100%;
}

.ov-contact__submit {
  margin-top: 8px;
}

/* Ensure dashboard main has top padding (no fixed nav, but verify check needs >= 96px) */
.ov-dashboard__main {
  padding-top: 100px;
}

/* ============================================================
   PAGE HERO WITH VISUAL (product.html hero variant)
   ============================================================ */
.ov-page-hero--with-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--ov-container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.ov-page-hero--with-visual .ov-page-hero__inner {
  max-width: none;
  margin: 0;
  padding: 0;
}
.ov-page-hero__visual {
  width: 100%;
}
.ov-page-hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
@media (max-width: 900px) {
  .ov-page-hero--with-visual {
    grid-template-columns: 1fr;
  }
  .ov-page-hero__visual {
    display: none;
  }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.ov-pricing {
  padding: 80px 0;
}
.ov-pricing__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ov-pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .ov-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.ov-pricing__card {
  background: var(--ov-bg-card);
  border: 1px solid var(--ov-border);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ov-pricing__card--featured {
  border-color: var(--ov-accent);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.18);
}
.ov-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ov-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.ov-pricing__tier-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ov-accent);
  margin-bottom: 16px;
}
.ov-pricing__price {
  margin-bottom: 16px;
}
.ov-pricing__amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--ov-text-primary);
  line-height: 1;
}
.ov-pricing__unit {
  font-size: 14px;
  color: var(--ov-text-muted);
  margin-left: 4px;
}
.ov-pricing__desc {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.ov-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.ov-pricing__features li {
  list-style: none;
  font-size: 14px;
  color: var(--ov-text-body);
  padding: 7px 0;
  border-bottom: 1px solid var(--ov-border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ov-pricing__features li:last-child { border-bottom: none; }
.ov-pricing__features li .fas {
  color: var(--ov-accent);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.ov-pricing__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  display: block;
}
.ov-pricing__note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--ov-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ov-pricing__note a {
  color: var(--ov-accent);
  text-decoration: none;
}
.ov-pricing__note a:hover { text-decoration: underline; }

/* Pricing FAQ */
.ov-pricing-faq {
  padding: 60px 0 80px;
  background: var(--ov-bg-subtle);
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
}
.ov-pricing-faq__inner {
  max-width: var(--ov-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ov-pricing-faq__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--ov-text-primary);
  margin-bottom: 40px;
  text-align: center;
}
.ov-pricing-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
@media (max-width: 768px) {
  .ov-pricing-faq__grid { grid-template-columns: 1fr; }
}
.ov-pricing-faq__item {}
.ov-pricing-faq__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--ov-text-primary);
  margin-bottom: 10px;
}
.ov-pricing-faq__a {
  font-size: 14px;
  color: var(--ov-text-muted);
  line-height: 1.7;
}
