:root {
  --accent: #B4FF3C;
  --bg: #1F2633;
  --panel: #151A2E;
  --card: #2B3243;
  --container-max: 1200px;
  --section-padding: 100px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 20, 36, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 5vw;
  height: var(--header-height);
  max-width: calc(var(--container-max) + 10vw);
  margin: 0 auto;
}

.branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.branding img {
  height: 42px;
  width: auto;
}

/* The brand text is a home link on every page (custom logo already links
   home on its own via the_custom_logo). */
.branding__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.branding__link:hover .branding__product,
.branding__link:focus-visible .branding__product {
  color: var(--accent);
}

.branding__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.branding__product {
  font-size: 18px;
  font-weight: 700;
}

.branding__company {
  font-size: 14px;
  color: rgba(229, 231, 235, 0.72);
}

.outbridge-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.outbridge-nav__list {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.outbridge-nav__list a {
  font-size: 15px;
  font-weight: 600;
  color: #F3F4F6;
}

.outbridge-nav__list a:hover,
.outbridge-nav__list a:focus,
.outbridge-nav__list a.is-active {
  color: var(--accent);
}

.outbridge-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  background: var(--accent);
  color: #0F172A;
  box-shadow: 0 12px 32px rgba(180, 255, 60, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.outbridge-nav__cta:hover,
.outbridge-nav__cta:focus {
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(180, 255, 60, 0.32);
}

/* Landing-section anchors live in the side rail on desktop; the <li> stay in
   the DOM for the ≤1024px drawer, where the full list is wanted. */
@media (min-width: 1025px) {
  .outbridge-nav__item--section {
    display: none;
  }
}

/* On-page side rail: dots at the right edge, label slides out on hover and
   stays visible for the active section. Rendered on the landing view only;
   the 1100px content column leaves a ≥90px gutter at this breakpoint. */
.outbridge-sidenav {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 900;
  display: none;
}

@media (min-width: 1280px) {
  .outbridge-sidenav {
    display: block;
  }
}

.outbridge-sidenav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outbridge-sidenav__list a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.outbridge-sidenav__dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(229, 231, 235, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.outbridge-sidenav__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: #eef1f6;
  background: rgba(15, 20, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.outbridge-sidenav__list a:hover .outbridge-sidenav__label,
.outbridge-sidenav__list a:focus-visible .outbridge-sidenav__label,
.outbridge-sidenav__list a.is-active .outbridge-sidenav__label {
  opacity: 1;
  transform: translateX(0);
}

.outbridge-sidenav__list a:hover .outbridge-sidenav__dot,
.outbridge-sidenav__list a:focus-visible .outbridge-sidenav__dot,
.outbridge-sidenav__list a.is-active .outbridge-sidenav__dot {
  background: var(--accent);
  transform: scale(1.3);
}

.site-main {
  display: block;
}

/* Outbridge landing page */
.outbridge-page {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.outbridge-hero {
  position: relative;
  padding: 140px 5vw 120px;
  background:
    radial-gradient(circle at 18% 22%, rgba(180, 255, 60, 0.22) 0%, rgba(16, 21, 34, 0) 58%),
    radial-gradient(circle at 78% 12%, rgba(56, 189, 248, 0.18) 0%, rgba(16, 21, 34, 0) 52%),
    linear-gradient(140deg, rgba(16, 21, 34, 0.92) 0%, rgba(13, 20, 36, 0.78) 52%, rgba(5, 9, 18, 0.92) 100%),
    url('../background.webp') center/cover no-repeat;
  overflow: hidden;
}

.outbridge-hero::before {
  content: '';
  position: absolute;
  inset: -140px -60px -160px -60px;
  background:
    radial-gradient(ellipse at top, rgba(180, 255, 60, 0.14) 0%, rgba(16, 21, 34, 0) 65%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(16, 21, 34, 0) 55%);
  opacity: 0.85;
  pointer-events: none;
}

.outbridge-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.outbridge-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.outbridge-hero__title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.outbridge-hero__description {
  color: #e5e7eb;
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 28px;
}

.outbridge-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.outbridge-hero__cta-primary,
.outbridge-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.outbridge-hero__cta-primary {
  background: var(--accent);
  color: #111827;
  box-shadow: 0 12px 32px rgba(180, 255, 60, 0.25);
}

.outbridge-hero__cta-primary:hover,
.outbridge-hero__cta-primary:focus {
  /* pin ink color: the global a:hover accent rule would paint lime-on-lime */
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(180, 255, 60, 0.3);
}

.outbridge-hero__cta-secondary {
  color: var(--accent);
  border: 2px solid rgba(180, 255, 60, 0.4);
  padding: 16px 28px;
}

.outbridge-hero__cta-secondary:hover,
.outbridge-hero__cta-secondary:focus {
  transform: translateY(-2px);
}

.outbridge-hero__card {
  background: rgba(21, 26, 46, 0.88);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.outbridge-hero__card h2 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 12px;
}

.outbridge-hero__card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.outbridge-hero__card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: #d1d5db;
}

.outbridge-hero__card i {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
}

.outbridge-section {
  padding: var(--section-padding) 5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.outbridge-section > * {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.outbridge-section--alt {
  background: rgba(16, 21, 34, 0.65);
}

.outbridge-section--narrow {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.outbridge-section__heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  text-align: center;
}

.outbridge-section__title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 auto 18px;
  text-align: center;
  max-width: 1100px;
}

.outbridge-section__lead {
  color: #d1d5db;
  font-size: 18px;
  max-width: 1100px;
  margin: 0 auto 56px;
  line-height: 1.6;
  text-align: center;
}

.outbridge-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.outbridge-feature-card {
  background: rgba(21, 26, 46, 0.85);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.outbridge-feature-card:hover,
.outbridge-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(180, 255, 60, 0.4);
}

.outbridge-feature-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.outbridge-feature-card p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.6;
}

.outbridge-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.outbridge-pipeline__visual {
  display: grid;
  gap: 18px;
}

.outbridge-pipeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: rgba(15, 20, 36, 0.75);
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.outbridge-pipeline__badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #0F172A;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 4px;
}

.outbridge-pipeline__step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.outbridge-pipeline__step p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.6;
}

.outbridge-highlight-list {
  display: grid;
  gap: 20px;
}

.outbridge-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(15, 20, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.outbridge-highlight h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.outbridge-highlight p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.5;
}

.outbridge-highlight i {
  font-size: 28px;
  color: var(--accent);
}

.outbridge-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.outbridge-solutions__item {
  background: rgba(15, 20, 36, 0.8);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outbridge-solutions__item h3 {
  margin: 0;
  font-size: 20px;
}

.outbridge-solutions__item p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.6;
}

.outbridge-solutions__item ul {
  margin: 0;
  padding-left: 20px;
  color: #9CA3AF;
  display: grid;
  gap: 6px;
}

.outbridge-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.outbridge-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 20, 36, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #E5E7EB;
  font-weight: 600;
}

.outbridge-faq {
  display: grid;
  gap: 18px;
}

.outbridge-faq__item {
  background: rgba(15, 20, 36, 0.75);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.outbridge-faq__item h3 {
  margin: 0;
  font-size: 18px;
}

.outbridge-faq__trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.outbridge-faq__trigger i {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.outbridge-faq__item.is-open .outbridge-faq__trigger i {
  transform: rotate(180deg);
}

.outbridge-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.outbridge-faq__item.is-open .outbridge-faq__answer {
  max-height: 500px;
}

.outbridge-faq__answer p {
  margin: 10px 0 0;
  color: #d1d5db;
  line-height: 1.6;
}

.outbridge-resources {
  position: relative;
}

.outbridge-resources::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  pointer-events: none;
}

.outbridge-resource-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.outbridge-resource {
  background: rgba(15, 20, 36, 0.82);
  border-radius: 16px;
  padding: 26px 24px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.outbridge-resource i {
  font-size: 26px;
  color: var(--accent);
}

.outbridge-resource h3 {
  margin: 0;
  font-size: 20px;
}

.outbridge-resource p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.6;
}

.outbridge-resource__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
}

.outbridge-resource__link i {
  font-size: 18px;
}

.outbridge-cta {
  padding-bottom: 100px;
}

.outbridge-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(180, 255, 60, 0.14), rgba(15, 20, 36, 0.9));
  border-radius: 20px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.outbridge-cta__inner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
}

.outbridge-cta__inner p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.6;
}

.outbridge-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.outbridge-cta__primary,
.outbridge-cta__secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.outbridge-cta__primary {
  background: var(--accent);
  color: #0F172A;
  box-shadow: 0 12px 32px rgba(180, 255, 60, 0.25);
}

.outbridge-cta__primary:hover,
.outbridge-cta__primary:focus {
  /* pin ink color: the global a:hover accent rule would paint lime-on-lime */
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(180, 255, 60, 0.3);
}

.outbridge-cta__secondary {
  color: var(--accent);
  border: 2px solid rgba(180, 255, 60, 0.35);
}

.outbridge-cta__secondary:hover,
.outbridge-cta__secondary:focus {
  transform: translateY(-2px);
}

.site-footer {
  padding: 60px 5vw 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 14, 26, 0.92);
}

.site-footer > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-links a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(21, 26, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: #E5E7EB;
}

.contact-links a:hover,
.contact-links a:focus {
  color: var(--accent);
}

.contact-links i {
  font-size: 18px;
  color: var(--accent);
}

.footer-meta {
  color: rgba(229, 231, 235, 0.68);
  font-size: 14px;
  margin: 6px auto;
  text-align: center;
}

.cta-floating {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #0F172A;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(180, 255, 60, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}

.cta-floating i {
  font-size: 18px;
}

body.is-docs .cta-floating {
  display: none;
}

.cta-floating:hover,
.cta-floating:focus {
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(180, 255, 60, 0.38);
}

.scroll-to-top {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(21, 26, 46, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 1024px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .navbar__toggle {
    display: flex;
  }

  .outbridge-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 20, 36, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .outbridge-nav.is-open {
    right: 0;
  }

  .outbridge-nav__list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .outbridge-nav__list a {
    font-size: 17px;
  }

  .outbridge-nav__cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .outbridge-hero {
    padding: 110px 7vw 80px;
  }

  .outbridge-hero__cta-primary,
  .outbridge-hero__cta-secondary,
  .outbridge-cta__primary,
  .outbridge-cta__secondary {
    width: 100%;
    justify-content: center;
  }

  .outbridge-cta__actions {
    flex-direction: column;
  }

  .outbridge-cta__inner {
    padding: 32px 28px;
  }

  .outbridge-resources::before {
    inset: 12px;
  }

  .cta-floating {
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .scroll-to-top {
    left: 16px;
    bottom: 80px;
  }
}

/* Documentation layout — Linear-inspired dark theme */
.is-docs .navbar {
  padding-left: 16px;
  max-width: none;
}

.docs-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width, 240px) 1fr 200px;
  min-height: calc(100vh - 64px);
  background: #1a1a1f;
}

.docs-sidebar {
  background: #111113;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: visible;
}

.docs-sidebar__inner {
  padding: 8px 16px 20px;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.docs-sidebar__resize {
  position: absolute;
  top: 0;
  right: -3px;
  width: 6px;
  height: 100%;
  cursor: col-resize;
  z-index: 10;
  background: transparent;
  transition: background 0.15s;
}

.docs-sidebar__resize:hover,
.docs-sidebar__resize.is-dragging {
  background: rgba(94, 106, 210, 0.5);
}

.docs-layout.is-resizing {
  user-select: none;
  cursor: col-resize;
}

.docs-sidebar__heading {
  display: none;
}

.docs-version-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-version-selector label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6b76;
  white-space: nowrap;
}

.docs-version-selector select {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #1a1a1f;
  color: #e4e4e7;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.docs-version-selector select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.docs-version-selector select:focus {
  outline: none;
  border-color: #5e6ad2;
}

.docs-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.docs-nav ul ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  display: none;
}

.docs-nav li.is-open > ul {
  display: block;
}

.docs-nav a {
  display: block;
  padding: 7px 12px;
  border-radius: 6px;
  color: #9b9ba4;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.15s, background 0.15s;
  border-left: 2px solid transparent;
  box-shadow: none;
  transform: none;
}

.docs-nav a:hover,
.docs-nav a:focus {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.04);
  transform: none;
  box-shadow: none;
}

.docs-nav li.is-active > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #5e6ad2;
  box-shadow: none;
}

.docs-nav__item {
  display: flex;
  align-items: center;
  gap: 0;
}

.docs-nav__item a {
  flex: 1;
  min-width: 0;
}

.docs-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: #6b6b76;
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s, transform 0.15s;
}

.docs-nav__toggle:hover {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.06);
}

.docs-nav__toggle svg {
  transition: transform 0.15s;
}

.docs-nav li.is-open > .docs-nav__item > .docs-nav__toggle svg {
  transform: rotate(90deg);
}

.docs-nav__title {
  font-weight: 500;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-nav__description {
  display: none;
}

.docs-content {
  padding: 48px 64px 80px;
  max-width: 820px;
  width: 100%;
}

.docs-breadcrumb {
  font-size: 13px;
  color: #6b6b76;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.docs-breadcrumb span {
  color: #9b9ba4;
}

.docs-content__header h1 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.docs-content__header p {
  margin-bottom: 32px;
  font-size: 16px;
  color: #9b9ba4;
  line-height: 1.6;
}

.docs-content__body h1,
.docs-content__body h2,
.docs-content__body h3,
.docs-content__body h4,
.docs-content__body h5,
.docs-content__body h6 {
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.docs-content__body h1 { font-size: 32px; }
.docs-content__body h2 { font-size: 24px; }
.docs-content__body h3 { font-size: 20px; }

.docs-content__body p {
  font-size: 15px;
  line-height: 1.7;
  color: #b4b4bb;
  margin-bottom: 16px;
}

.docs-content__body a {
  color: #8b8ff5;
  text-decoration: none;
}

.docs-content__body a:hover {
  text-decoration: underline;
}

.docs-content__body ul,
.docs-content__body ol {
  padding-left: 20px;
  margin-bottom: 16px;
  color: #b4b4bb;
}

.docs-content__body li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.7;
}

.docs-content__body strong {
  color: #e4e4e7;
  font-weight: 600;
}

.docs-content__body blockquote {
  border-left: 3px solid #5e6ad2;
  background: rgba(94, 106, 210, 0.08);
  margin: 16px 0;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

.docs-content__body blockquote p {
  color: #c4c4cc;
  margin-bottom: 0;
}

.docs-content__body pre {
  background: #111113;
  color: #e4e4e7;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.docs-content__body code {
  background: rgba(255, 255, 255, 0.06);
  color: #e4e4e7;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.docs-content__body pre code {
  background: transparent;
  padding: 0;
  border: none;
}

.docs-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.docs-content__body th,
.docs-content__body td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-content__body th {
  background: #111113;
  color: #e4e4e7;
  font-weight: 600;
}

.docs-content__body td {
  color: #b4b4bb;
}

.docs-content__body tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.docs-content__body hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 32px 0;
}

.docs-content__body img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Heading anchor links */
.docs-anchor {
  color: #5e6ad2;
  font-weight: 400;
  text-decoration: none;
  opacity: 0;
  margin-left: 6px;
  transition: opacity 0.15s;
}

.docs-content__body h1:hover .docs-anchor,
.docs-content__body h2:hover .docs-anchor,
.docs-content__body h3:hover .docs-anchor,
.docs-content__body h4:hover .docs-anchor {
  opacity: 1;
}

.docs-anchor:hover {
  opacity: 1;
  text-decoration: none;
}

/* Right-side Table of Contents */
.docs-toc {
  position: sticky;
  top: 80px;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 20px 16px 20px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.docs-toc__heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6b76;
  margin: 0 0 12px;
}

.docs-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-toc__list li {
  margin: 0;
}

.docs-toc__list a {
  display: block;
  padding: 4px 12px;
  font-size: 13px;
  color: #6b6b76;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.4;
}

.docs-toc__list a:hover {
  color: #e4e4e7;
}

.docs-toc__list a.is-active {
  color: #e4e4e7;
  border-left-color: #5e6ad2;
}

.docs-toc__sub a {
  padding-left: 24px;
  font-size: 12px;
}

/* Code block wrapper with copy button + language label */
.docs-code-block {
  position: relative;
  margin-bottom: 16px;
}

.docs-code-block pre {
  margin-bottom: 0;
  border-radius: 0 0 8px 8px;
}

.docs-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  font-size: 12px;
}

.docs-code-lang {
  color: #6b6b76;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.docs-copy-btn {
  padding: 2px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #9b9ba4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.docs-copy-btn:hover {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.1);
}

.docs-copy-btn.is-copied {
  color: #B4FF3C;
}

/* Callout / admonition boxes */
.docs-callout {
  border-left: 3px solid #5e6ad2;
  background: rgba(94, 106, 210, 0.08);
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
}

.docs-callout__label {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.docs-callout p:last-child {
  margin-bottom: 0;
}

.docs-callout--note {
  border-left-color: #5e6ad2;
  background: rgba(94, 106, 210, 0.08);
}

.docs-callout--note .docs-callout__label {
  color: #8b8ff5;
}

.docs-callout--tip {
  border-left-color: #B4FF3C;
  background: rgba(180, 255, 60, 0.06);
}

.docs-callout--tip .docs-callout__label {
  color: #B4FF3C;
}

.docs-callout--warning {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.06);
}

.docs-callout--warning .docs-callout__label {
  color: #f59e0b;
}

.docs-callout--important {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
}

.docs-callout--important .docs-callout__label {
  color: #ef4444;
}

/* Previous / Next page navigation */
.docs-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-pager__prev,
.docs-pager__next {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.docs-pager__prev:hover,
.docs-pager__next:hover {
  border-color: rgba(94, 106, 210, 0.4);
  background: rgba(94, 106, 210, 0.04);
  color: #fff;
}

.docs-pager__next {
  text-align: right;
  align-items: flex-end;
}

.docs-pager__label {
  font-size: 12px;
  color: #6b6b76;
  display: flex;
  align-items: center;
  gap: 4px;
}

.docs-pager__title {
  font-size: 15px;
  font-weight: 600;
  color: #e4e4e7;
}

/* Search trigger button */
.docs-search-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #6b6b76;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.docs-search-trigger:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #9b9ba4;
}

.docs-search-trigger kbd {
  margin-left: auto;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6b6b76;
  font-family: inherit;
}

.docs-search-trigger i {
  font-size: 16px;
}

/* Search modal */
.docs-search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.docs-search-modal[hidden] {
  display: none;
}

.docs-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.docs-search-modal__content {
  position: relative;
  width: 560px;
  max-width: 90vw;
  max-height: 60vh;
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.docs-search-modal__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-search-modal__header i {
  font-size: 18px;
  color: #6b6b76;
}

.docs-search-modal__header kbd {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6b6b76;
  font-family: inherit;
}

.docs-search-modal__input {
  flex: 1;
  border: none;
  background: transparent;
  color: #e4e4e7;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.docs-search-modal__input::placeholder {
  color: #6b6b76;
}

.docs-search-modal__results {
  list-style: none;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  max-height: calc(60vh - 52px);
}

.docs-search-result {
  border-radius: 8px;
  transition: background 0.1s;
}

.docs-search-result.is-active,
.docs-search-result:hover {
  background: rgba(255, 255, 255, 0.06);
}

.docs-search-result a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
}

.docs-search-result strong {
  color: #e4e4e7;
  font-size: 14px;
}

.docs-search-result span {
  color: #6b6b76;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Floating search button for mobile docs */
.docs-search-fab {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #5e6ad2;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(94, 106, 210, 0.4);
  z-index: 998;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.docs-search-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(94, 106, 210, 0.5);
}

@media (max-width: 1080px) {
  .docs-search-fab {
    display: flex;
  }
}

/* Breadcrumb enhancements */
.docs-breadcrumb a {
  color: #6b6b76;
  text-decoration: none;
  transition: color 0.15s;
}

.docs-breadcrumb a:hover {
  color: #e4e4e7;
}

.docs-breadcrumb__sep {
  color: #4a4a52;
}

@media (max-width: 1280px) {
  .docs-toc {
    display: none;
  }

  .docs-layout {
    grid-template-columns: var(--sidebar-width, 240px) 1fr;
  }
}

@media (max-width: 1080px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .docs-content {
    padding: 32px 24px 60px;
  }
}

@media (max-width: 640px) {
  .docs-content {
    padding: 24px 16px 48px;
  }

  .docs-content__header h1 {
    font-size: 26px;
  }
}

/* ============================================================
   Blog
   ============================================================ */

/* Reading progress bar */
.blog-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 1100;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Blog hero */
.blog-hero {
  padding: 100px 5vw 60px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(180, 255, 60, 0.1) 0%, transparent 60%),
    var(--panel);
}

.blog-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.blog-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 12px;
}

.blog-hero__description {
  color: rgba(229, 231, 235, 0.72);
  font-size: 18px;
  margin: 0;
}

/* Blog archive grid */
.blog-archive {
  padding: 60px 5vw 80px;
}

.blog-archive__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-archive__empty {
  text-align: center;
  color: rgba(229, 231, 235, 0.72);
  font-size: 18px;
  padding: 60px 0;
}

/* Blog card */
.blog-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.blog-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card__link:hover,
.blog-card__link:focus {
  color: inherit;
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 8px;
}

.blog-card__excerpt {
  font-size: 14px;
  color: rgba(229, 231, 235, 0.72);
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(229, 231, 235, 0.5);
}

.blog-card__dot {
  font-size: 10px;
}

/* Single blog post */
.blog-single {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 5vw 40px;
}

.blog-single__header {
  margin-bottom: 40px;
}

.blog-single__category {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-single__category:hover {
  color: var(--accent);
  opacity: 0.8;
}

.blog-single__title {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.2;
  margin: 0 0 16px;
}

.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.6);
}

.blog-single__author {
  font-weight: 600;
  color: #fff;
}

.blog-single__dot {
  font-size: 10px;
}

/* Featured image */
.blog-single__featured {
  margin: 0 0 40px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-single__featured img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog content typography */
.blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(229, 231, 235, 0.88);
}

.blog-content h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  color: #fff;
}

.blog-content h3 {
  font-size: 22px;
  margin: 36px 0 12px;
  color: #fff;
}

.blog-content h4 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: #fff;
}

.blog-content p {
  margin: 0 0 20px;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(180, 255, 60, 0.04);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(229, 231, 235, 0.8);
}

.blog-content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-content pre {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
}

.blog-content code {
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.blog-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:hover {
  opacity: 0.8;
}

/* Blog footer */
.blog-single__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Share buttons */
.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.blog-share__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(229, 231, 235, 0.6);
}

.blog-share__buttons {
  display: flex;
  gap: 8px;
}

.blog-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-share__btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}

/* Author box */
.blog-author {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-author__name {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.blog-author__bio {
  font-size: 14px;
  color: rgba(229, 231, 235, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Related posts */
.blog-related {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5vw 40px;
}

.blog-related__title {
  font-size: 24px;
  margin: 0 0 24px;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* CTA banner */
.blog-cta {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5vw 80px;
}

.blog-cta__inner {
  text-align: center;
  padding: 48px 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(180, 255, 60, 0.12) 0%, transparent 60%),
    var(--card);
  border-radius: 16px;
  border: 1px solid rgba(180, 255, 60, 0.15);
}

.blog-cta__title {
  font-size: 24px;
  margin: 0 0 12px;
}

.blog-cta__text {
  color: rgba(229, 231, 235, 0.72);
  font-size: 16px;
  margin: 0 0 24px;
}

.blog-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  background: var(--accent);
  color: #0F172A;
  box-shadow: 0 12px 32px rgba(180, 255, 60, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta__button:hover,
.blog-cta__button:focus {
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(180, 255, 60, 0.3);
}

/* Pagination */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}

.nav-links .current {
  background: var(--accent);
  color: #0F172A;
  border-color: var(--accent);
}

/* Hide floating CTA on blog pages */
body.is-blog .cta-floating {
  display: none;
}

/* Blog responsive */
@media (max-width: 720px) {
  .blog-hero {
    padding: 80px 5vw 40px;
  }

  .blog-archive__grid {
    grid-template-columns: 1fr;
  }

  .blog-single {
    padding: 60px 5vw 32px;
  }

  .blog-single__title {
    font-size: 28px;
  }

  .blog-content h2 {
    font-size: 22px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
  }

  .blog-cta__inner {
    padding: 32px 20px;
  }
}

/* ============================================================
 * Outbridge pricing page
 * ============================================================ */

.outbridge-hero--compact {
  padding: 100px 5vw 80px;
}

.outbridge-hero__inner--single {
  grid-template-columns: 1fr;
  max-width: 880px;
  text-align: center;
}

.outbridge-hero__inner--single .outbridge-hero__cta {
  justify-content: center;
}

.outbridge-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.outbridge-pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(21, 26, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.outbridge-pricing-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 255, 60, 0.3);
}

.outbridge-pricing-tier--featured {
  border-color: rgba(180, 255, 60, 0.5);
  box-shadow: 0 20px 50px rgba(180, 255, 60, 0.12);
}

.outbridge-pricing-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0F172A;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.outbridge-pricing-tier__header {
  margin-bottom: 24px;
}

.outbridge-pricing-tier__name {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.outbridge-pricing-tier__price {
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.outbridge-pricing-tier__amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.outbridge-pricing-tier__period {
  font-size: 16px;
  color: #d1d5db;
}

.outbridge-pricing-tier__tagline {
  margin: 0;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.5;
}

.outbridge-pricing-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}

.outbridge-pricing-tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #e5e7eb;
  line-height: 1.5;
}

.outbridge-pricing-tier__features i {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.outbridge-pricing-tier__fit {
  margin: 0 0 24px;
  padding: 16px;
  background: rgba(15, 20, 36, 0.6);
  border-radius: 12px;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
  font-style: italic;
}

.outbridge-pricing-tier__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  background: var(--accent);
  color: #0F172A;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.outbridge-pricing-tier__cta:hover,
.outbridge-pricing-tier__cta:focus {
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(180, 255, 60, 0.25);
}

.outbridge-pricing-packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.outbridge-pricing-pack {
  background: rgba(21, 26, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.outbridge-pricing-pack:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 255, 60, 0.3);
}

.outbridge-pricing-pack h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #fff;
}

.outbridge-pricing-pack__price {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.outbridge-pricing-pack p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.5;
}

.outbridge-pricing-terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.outbridge-pricing-terms__item {
  background: rgba(21, 26, 46, 0.7);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.outbridge-pricing-terms__item h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--accent);
}

.outbridge-pricing-terms__item ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.outbridge-pricing-terms__item li {
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.5;
}

.outbridge-pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* 2026-Q3 model: shared "what each size includes" table */
.outbridge-pricing-includes {
  overflow-x: auto;
  margin: 24px auto 0;
  max-width: var(--container-max);
}

.outbridge-pricing-includes table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.outbridge-pricing-includes th,
.outbridge-pricing-includes td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  vertical-align: top;
}

.outbridge-pricing-includes thead th {
  color: var(--accent);
  font-weight: 700;
}

.outbridge-pricing-includes td:first-child {
  color: rgba(229, 231, 235, 0.65);
}

.outbridge-pricing-fineprint {
  text-align: center;
  padding: 48px 5vw 80px;
}

.outbridge-pricing-fineprint p {
  margin: 0;
  color: rgba(229, 231, 235, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .outbridge-pricing-tier {
    padding: 28px 22px;
  }

  .outbridge-pricing-tier__amount {
    font-size: 36px;
  }
}

/* ============================================================
   Outbridge landing rewrite — Phase A3 components
   Source: outbridge-marketing/03_Landing_Page/landing_page_ready_to_publish.md
   ============================================================ */

/* Single-column hero (text on top, screenshot below) — used when there is
   no side card. Matches the page-wide container-max so visual rhythm is
   consistent with sections below. */
.outbridge-hero__inner--single {
  display: block;
  max-width: var(--container-max);
  text-align: center;
}

.outbridge-hero__inner--single .outbridge-hero__cta {
  justify-content: center;
}

.outbridge-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.outbridge-hero__trust span {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.outbridge-hero__visual {
  margin: 48px auto 0;
  max-width: 1100px;
}

.outbridge-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.outbridge-hero__visual figcaption {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  color: #A8B0C8;
  line-height: 1.55;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.outbridge-hero__visual figcaption strong {
  color: #e4e4e7;
  font-weight: 600;
}

/* Closing note under sections — same role as the homepage footnote */
.outbridge-section__footnote {
  margin: 36px auto 0;
  color: #A8B0C8;
  font-size: 15px;
  text-align: center;
  max-width: 820px;
  line-height: 1.65;
  font-style: italic;
}

/* Muted variant — small disclosure note (e.g. legacy screenshot label) */
.outbridge-section__footnote--muted {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.62;
}

/* Scenarios — 4 cards */
.outbridge-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.outbridge-scenario {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.outbridge-scenario:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.outbridge-scenario__icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.outbridge-scenario h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #fff;
}

.outbridge-scenario p {
  margin: 0;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.6;
}

.outbridge-scenario p.outbridge-scenario__pain {
  margin: 0 0 12px;
  color: #eef1f6;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

/* Frames — 5 screenshots stacked with captions */
.outbridge-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.outbridge-step {
  background: rgba(21, 26, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.outbridge-step__num {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.outbridge-step__title {
  font-size: 17px;
  color: #fff;
}

.outbridge-step p {
  margin: 0;
  font-size: 14px;
  color: #A8B0C8;
  line-height: 1.55;
}

.outbridge-plain-page__content {
  max-width: 760px;
  margin: 0 auto;
}

.outbridge-plain-page__content h2 {
  margin: 28px 0 12px;
  font-size: 22px;
  color: #fff;
}

.outbridge-plain-page__content h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  color: #fff;
}

.outbridge-plain-page__content p,
.outbridge-plain-page__content li {
  color: #A8B0C8;
  font-size: 16px;
  line-height: 1.65;
}

.outbridge-plain-page__content p {
  margin: 0 0 14px;
}

.outbridge-plain-page__content a {
  color: var(--accent);
  font-weight: 600;
}

.outbridge-plain-page__content a:hover,
.outbridge-plain-page__content a:focus {
  text-decoration: underline;
}

.outbridge-caps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.outbridge-cap {
  background: rgba(21, 26, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.outbridge-cap__title {
  font-size: 17px;
  color: #fff;
}

.outbridge-cap p {
  margin: 0;
  font-size: 14px;
  color: #A8B0C8;
  line-height: 1.55;
  flex-grow: 1;
}

.outbridge-cap__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.outbridge-cap__link i {
  font-size: 18px;
}

.outbridge-frames {
  display: grid;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.outbridge-frame {
  margin: 0;
  display: grid;
  gap: 18px;
}

.outbridge-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.outbridge-frame figcaption {
  display: grid;
  gap: 6px;
  text-align: center;
}

.outbridge-frame__num {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.outbridge-frame figcaption strong {
  font-size: 17px;
  color: #fff;
}

.outbridge-frame figcaption span {
  font-size: 14px;
  color: #A8B0C8;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
}

/* Before / After compare — operating model */
.outbridge-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.outbridge-compare__col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
}

.outbridge-compare__col--before {
  border-left: 3px solid rgba(229, 113, 113, 0.5);
}

.outbridge-compare__col--after {
  border-left: 3px solid var(--accent);
}

.outbridge-compare__label {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #e4e4e7;
}

.outbridge-compare__col--before .outbridge-compare__label {
  color: rgba(229, 113, 113, 0.85);
}

.outbridge-compare__col--after .outbridge-compare__label {
  color: var(--accent);
}

.outbridge-compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outbridge-compare__col li {
  position: relative;
  padding-left: 22px;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.55;
}

.outbridge-compare__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

/* When NOT to use — 3 numbered items */
.outbridge-notfit {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.outbridge-notfit li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 24px;
}

.outbridge-notfit__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229, 113, 113, 0.1);
  border: 1px solid rgba(229, 113, 113, 0.4);
  color: rgba(229, 113, 113, 0.9);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.outbridge-notfit h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
}

.outbridge-notfit p {
  margin: 0;
  color: #A8B0C8;
  font-size: 14px;
  line-height: 1.55;
}

/* CTA list (what the review covers) */
.outbridge-cta__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.outbridge-cta__list li {
  position: relative;
  padding-left: 26px;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.55;
}

.outbridge-cta__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.outbridge-cta__note {
  margin: 26px 0 0;
  color: #A8B0C8;
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

/* Round 4 Codex (Architect persona) — Failure and Replay Semantics */
.outbridge-failure-semantics {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outbridge-failure-semantics li {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  display: grid;
  gap: 6px;
}

.outbridge-failure-semantics strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.outbridge-failure-semantics span {
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.55;
}
