:root {
  /* Palette pivoted 2026-05-06 (evening) — see makeitworkright-marketing
     decision_log.md and 00_brand/LOGO_GUIDE.md. Was: gold #DBB85A + true-black
     #040404 (2026-04-30 decision). Now: warm gold + deep navy. Pending designer
     pixel-validation against the reference mockup. */
  --accent: #C8A86A;
  --accent-soft: rgba(200, 168, 106, 0.18);
  --bg: #0E1A3A;
  --panel: #152346;
  --card: #1B2C5C;
  --light-bg: #F4F5F7;
  --container-max: 1200px;
  --section-padding: 64px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 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(4, 4, 4, 0.94);
  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 is now an <a> (home link). Neutralize the UA link color so the
     wordmark keeps inheriting the light header text, and drop the underline. */
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.branding:hover,
.branding:focus-visible {
  opacity: 0.82;
}

.branding img {
  height: 42px;
  width: auto;
}

.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(255, 255, 255, 0.72);
}

.databridge-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.databridge-nav__list {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.databridge-nav__list a {
  font-size: 15px;
  font-weight: 600;
  color: #F3F4F6;
}

.databridge-nav__list a:hover,
.databridge-nav__list a:focus,
.databridge-nav__list a.is-active {
  color: var(--accent);
}

.databridge-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: #0E1A3A;
  box-shadow: 0 12px 32px rgba(219, 184, 90, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.databridge-nav__cta:hover,
.databridge-nav__cta:focus {
  color: #0E1A3A;
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(219, 184, 90, 0.32);
}

.site-main {
  display: block;
}

/* DataBridge landing page */
.databridge-page {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.databridge-hero {
  position: relative;
  padding: 140px 5vw 120px;
  background:
    /* Warm gold accent glow top-left */
    radial-gradient(ellipse 60% 40% at 15% 25%, rgba(200, 168, 106, 0.32) 0%, rgba(14, 26, 58, 0) 65%),
    /* Subtle warm gold accent bottom-right */
    radial-gradient(ellipse 70% 50% at 90% 90%, rgba(200, 168, 106, 0.22) 0%, rgba(14, 26, 58, 0) 55%),
    /* Base navy gradient */
    linear-gradient(135deg, #0E1A3A 0%, #152346 50%, #0E1A3A 100%);
  overflow: hidden;
}

/* Restored "digital neuron" background image — DIMMED per user feedback.
   Warm filter is gentler now; opacity reduced; pulse range tighter so the
   image is present but doesn't compete with foreground content. */
.databridge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../background.webp') center/cover no-repeat;
  /* Gentler warm tint: less hue-rotate (12 vs 20), less saturate (1.15 vs 1.4),
     less brightness (0.85 vs 0.95). Keeps the warm direction but dimmer. */
  filter: brightness(0.85) saturate(1.15) hue-rotate(12deg) contrast(1.05);
  /* Screen blend retained — image's bright pixels still add light, just dimmer */
  mix-blend-mode: screen;
  opacity: 0.4;
  animation: heroNeuronPulse 14s ease-in-out infinite;
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}

/* Animated shimmer — overlaid via the hero element itself's bg-position keyframes
   on the layered radial gradients (works because background-size is set per-layer
   to allow position movement). Subtle "breathing" warmth on top of the static
   navy + image stack. */
@keyframes heroShimmer {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-3%, -2%);
  }
}

/* Decorative — only the main mark (галка) per user feedback. Diagonal-line
   data-flow patterns dropped; just the MIWR mark on the right with subtle
   gold glow + drift animation. */
.databridge-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8%;
  width: 50%;
  height: 120%;
  transform: translateY(-50%);
  background: url('../miwr-mark.svg') center right / contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 60px rgba(200, 168, 106, 0.25));
  animation: heroMarkFloat 14s ease-in-out infinite;
}

/* "Synapse pulse" — gentler tone-down per user feedback. Smaller opacity and
   filter range so the image stays in the background mood layer. */
@keyframes heroNeuronPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    filter: brightness(0.85) saturate(1.15) hue-rotate(12deg) contrast(1.05);
  }
  50% {
    transform: scale(1.03);
    opacity: 0.5;
    filter: brightness(0.92) saturate(1.25) hue-rotate(15deg) contrast(1.1);
  }
}

@keyframes heroMarkFloat {
  0%, 100% {
    transform: translate(0, -50%) rotate(0deg);
    opacity: 0.55;
  }
  50% {
    transform: translate(-12px, -52%) rotate(0.5deg);
    opacity: 0.65;
  }
}

/* Mobile: turn off the heavy decorative mark to keep page light + readable */
@media (max-width: 768px) {
  .databridge-hero::after {
    display: none;
  }
}

/* Respect reduced-motion preference — kill animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  .databridge-hero::before,
  .databridge-hero::after {
    animation: none;
  }
}

.databridge-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;
}

/* Single-column hero — used when there is no side card (the homepage rewrite
   moves capabilities below the fold per homepage.md). Uses the same
   container-max as other sections so the visual rhythm stays consistent —
   hero copy width matches Offers / Proof / Approach / Capabilities widths.
   Content centered so hero reads as a balanced focal block instead of a
   left-aligned wall of text floating in the middle of an ultra-wide viewport. */
.databridge-hero__inner--single {
  display: block;
  max-width: var(--container-max);
  text-align: center;
}

/* Center the CTA + trust strip flex containers too so the whole hero
   reads as a centered block under the --single modifier. */
.databridge-hero__inner--single .databridge-hero__cta,
.databridge-hero__inner--single .databridge-hero__trust {
  justify-content: center;
}

.databridge-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.databridge-hero__title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.databridge-hero__description {
  color: #e5e7eb;
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 28px;
}

.databridge-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.databridge-hero__cta-primary,
.databridge-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;
}

.databridge-hero__cta-primary {
  background: linear-gradient(135deg, #D4B07A 0%, #C8A86A 50%, #B89858 100%);
  color: #0E1A3A;
  box-shadow:
    0 12px 32px rgba(200, 168, 106, 0.35),
    0 0 24px rgba(200, 168, 106, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.databridge-hero__cta-primary:hover,
.databridge-hero__cta-primary:focus {
  color: #0E1A3A;
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(200, 168, 106, 0.45),
    0 0 32px rgba(200, 168, 106, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.databridge-hero__cta-secondary {
  color: var(--accent);
  border: 2px solid rgba(219, 184, 90, 0.4);
  padding: 16px 28px;
}

.databridge-hero__cta-secondary:hover,
.databridge-hero__cta-secondary:focus {
  transform: translateY(-2px);
}

.databridge-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 168, 106, 0.18);
}

.databridge-hero__trust span {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(200, 168, 106, 0.85);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(200, 168, 106, 0.25);
  border-radius: 999px;
  background: rgba(200, 168, 106, 0.05);
}

.databridge-hero__card {
  position: relative;
  background: rgba(21, 35, 70, 0.78);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(200, 168, 106, 0.25);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(200, 168, 106, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

/* Subtle gold accent line at top of card */
.databridge-hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 106, 0.6), transparent);
}

.databridge-hero__card h2 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 12px;
}

.databridge-hero__card ul {
  list-style: none;
  display: grid;
  /* 2x2 grid of gold-tile squares per user feedback ('квадратики золотом') */
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
}

.databridge-hero__card li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Gold-tinted card with gold border — the 'gold square' look */
  background: linear-gradient(135deg, rgba(200, 168, 106, 0.16) 0%, rgba(200, 168, 106, 0.08) 100%);
  border: 1px solid rgba(200, 168, 106, 0.45);
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.databridge-hero__card li:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 168, 106, 0.7);
  background: linear-gradient(135deg, rgba(200, 168, 106, 0.22) 0%, rgba(200, 168, 106, 0.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 20px rgba(200, 168, 106, 0.25);
}

.databridge-hero__card i {
  color: var(--accent);
  font-size: 26px;
  margin: 0;
  /* Subtle glow on the icon for the premium gold-square feel */
  filter: drop-shadow(0 0 8px rgba(200, 168, 106, 0.45));
}

/* Single column on narrow viewports — 2-col grid is cramped under ~480px */
@media (max-width: 480px) {
  .databridge-hero__card ul {
    grid-template-columns: 1fr;
  }
}

.databridge-section {
  /* Cap horizontal padding so 5vw doesn't run away on ultra-wide viewports
     (e.g. 5120px → 5vw = 256px each side, which crushed --narrow FAQ
     inner area to 448px and made the H2 wrap at every word). Capped at
     96px keeps the 5vw rhythm on laptop / 1440-1920px screens. */
  padding: var(--section-padding) clamp(20px, 5vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.databridge-section > * {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.databridge-section--alt {
  background: rgba(11, 11, 12, 0.65);
}

.databridge-section--narrow {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.databridge-section__heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  text-align: center;
}

.databridge-section__title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 auto 18px;
  text-align: center;
  max-width: 1100px;
}

.databridge-section__lead {
  color: #9CA3B5;
  font-size: 18px;
  max-width: 1100px;
  margin: 0 auto 56px;
  line-height: 1.6;
  text-align: center;
}

.databridge-section__footnote {
  margin: 32px auto 0;
  color: #A8B0C8;
  font-size: 15px;
  text-align: center;
  max-width: 720px;
  line-height: 1.6;
}

.databridge-section__footnote a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 168, 106, 0.4);
}

.databridge-section__footnote a:hover,
.databridge-section__footnote a:focus {
  border-bottom-color: var(--accent);
}

/* Offers — 3 productized engagement cards */
.databridge-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.databridge-offer {
  display: flex;
  flex-direction: column;
  background: rgba(21, 35, 70, 0.7);
  border: 1px solid rgba(200, 168, 106, 0.25);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.databridge-offer:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 106, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(200, 168, 106, 0.12);
}

.databridge-offer__header {
  border-bottom: 1px solid rgba(200, 168, 106, 0.2);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.databridge-offer__header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.databridge-offer__price {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.databridge-offer__meta {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.databridge-offer__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.databridge-offer__meta dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.databridge-offer__meta dd {
  margin: 0;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.5;
}

.databridge-offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 168, 106, 0.15);
  transition: gap 0.2s ease, color 0.2s ease;
}

.databridge-offer__cta:hover,
.databridge-offer__cta:focus {
  color: #fff;
  gap: 14px;
}

/* Proof — anonymized engagement tiles */
.databridge-proof {
  /* 2 tiles per row (Olek 2026-06-07) — was auto-fit (up to 4-up). */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 640px) {
  .databridge-proof { grid-template-columns: 1fr; }
}

/* Icon + badge as one top row (Olek 2026-06-07: lift the label up to the icon). */
.databridge-proof__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.databridge-proof__tile {
  background: rgba(21, 35, 70, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.databridge-proof__tile:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 168, 106, 0.35);
  border-left-color: var(--accent);
}

.databridge-proof__icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 0;
  filter: drop-shadow(0 0 12px rgba(200, 168, 106, 0.3));
  display: block;
}

.databridge-proof__tile h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.4;
  color: #fff;
}

.databridge-proof__tile p {
  margin: 0 0 14px;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.55;
}

.databridge-proof__meta {
  /* margin-top: auto pins the meta footer to the card bottom so it aligns
     across all cards (equal-height grid) — no dangling empty bottoms. */
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #A8B0C8;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

/* Principles — numbered approach list */
.databridge-principles {
  list-style: none;
  padding: 0;
  /* margin: 0 auto preserves the auto-centering from .databridge-section > *;
     plain margin: 0 wipes the auto and the grid drifts to the section's
     left padding edge. */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.databridge-principles li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(21, 35, 70, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
}

.databridge-principles__badge {
  /* Unified 2026-06-07 (Olek): was gradient + gold ring (stuck out). Now a flat
     subtle-fill circle, no border — matches the How-it-works numbers. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 168, 106, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.databridge-principles li h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: #fff;
}

.databridge-principles li p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.6;
  font-size: 15px;
}

/* Capabilities — grouped by domain */
.databridge-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.databridge-capability {
  background: rgba(21, 35, 70, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 26px;
}

.databridge-capability h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 168, 106, 0.2);
}

.databridge-capability ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.databridge-capability li {
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.databridge-capability li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.databridge-capability__note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #A8B0C8;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.databridge-capability__note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 168, 106, 0.3);
}

.databridge-capability__note a:hover,
.databridge-capability__note a:focus {
  border-bottom-color: var(--accent);
}

.databridge-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.databridge-feature-card {
  background: rgba(26, 26, 31, 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;
}

.databridge-feature-card:hover,
.databridge-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(219, 184, 90, 0.4);
}

.databridge-feature-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.databridge-feature-card p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.6;
}

.databridge-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.databridge-stat {
  background: rgba(26, 26, 31, 0.75);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.databridge-stat strong {
  display: block;
  font-size: 32px;
  color: var(--accent);
}

.databridge-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.databridge-pipeline__visual {
  display: grid;
  gap: 18px;
}

.databridge-pipeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: rgba(11, 11, 12, 0.75);
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.databridge-pipeline__badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #0E1A3A;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 4px;
}

.databridge-pipeline__step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.databridge-pipeline__step p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.6;
}

.databridge-highlight-list {
  display: grid;
  gap: 20px;
}

.databridge-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(11, 11, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.databridge-highlight h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.databridge-highlight p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.5;
}

.databridge-highlight i {
  font-size: 28px;
  color: var(--accent);
}

.databridge-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.databridge-solutions__item {
  background: rgba(11, 11, 12, 0.8);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.databridge-solutions__item h3 {
  margin: 0;
  font-size: 20px;
}

.databridge-solutions__item p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.6;
}

.databridge-solutions__item ul {
  margin: 0;
  padding-left: 20px;
  color: #A8B0C8;
  display: grid;
  gap: 6px;
}

.databridge-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.databridge-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(11, 11, 12, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #E5E7EB;
  font-weight: 600;
}

.databridge-testimonial {
  background: rgba(11, 11, 12, 0.8);
  border-radius: 16px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  color: #E5E7EB;
  display: grid;
  gap: 18px;
}

.databridge-testimonial p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
}

.databridge-testimonial cite {
  font-size: 16px;
  color: rgba(229, 231, 235, 0.82);
}

.databridge-faq {
  display: grid;
  gap: 18px;
  /* Cap FAQ item width for comfortable reading line length, even when the
     parent section now uses the full 1200px container-max instead of the
     --narrow modifier. Section header (eyebrow / H2 / lead) still spans
     the full section so the visual rhythm matches Offers / Proof / etc. */
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.databridge-faq__item {
  background: rgba(11, 11, 12, 0.75);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.databridge-faq__item h3 {
  margin: 0;
  font-size: 18px;
}

.databridge-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;
}

.databridge-faq__trigger i {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.databridge-faq__item.is-open .databridge-faq__trigger i {
  transform: rotate(180deg);
}

.databridge-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.databridge-faq__item.is-open .databridge-faq__answer {
  max-height: 500px;
}

.databridge-faq__answer p {
  margin: 10px 0 0;
  color: #9CA3B5;
  line-height: 1.6;
}

.databridge-resources {
  position: relative;
}

.databridge-resources::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  pointer-events: none;
}

.databridge-resource-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.databridge-resource {
  background: rgba(11, 11, 12, 0.82);
  border-radius: 16px;
  padding: 26px 24px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.databridge-resource i {
  font-size: 26px;
  color: var(--accent);
}

.databridge-resource h3 {
  margin: 0;
  font-size: 20px;
}

.databridge-resource p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.6;
}

.databridge-resource__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
}

.databridge-resource__link i {
  font-size: 18px;
}

.databridge-cta {
  padding-bottom: 100px;
}

.databridge-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(219, 184, 90, 0.14), rgba(11, 11, 12, 0.9));
  border-radius: 20px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.databridge-cta__inner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
}

.databridge-cta__inner p {
  margin: 0;
  color: #9CA3B5;
  line-height: 1.6;
}

.databridge-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.databridge-cta__primary,
.databridge-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;
}

.databridge-cta__primary {
  background: var(--accent);
  color: #0E1A3A;
  box-shadow: 0 12px 32px rgba(219, 184, 90, 0.25);
}

.databridge-cta__primary:hover,
.databridge-cta__primary:focus {
  color: #0E1A3A;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(219, 184, 90, 0.3);
}

.databridge-cta__secondary {
  color: var(--accent);
  border: 2px solid rgba(219, 184, 90, 0.35);
}

.databridge-cta__secondary:hover,
.databridge-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(26, 26, 31, 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;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #0E1A3A;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(219, 184, 90, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}

body.is-docs .cta-floating {
  display: none;
}

.cta-floating:hover,
.cta-floating:focus {
  color: #0E1A3A;
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(219, 184, 90, 0.38);
}

.scroll-to-top {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 26, 31, 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;
  }

  .databridge-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 11, 12, 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);
  }

  .databridge-nav.is-open {
    right: 0;
  }

  .databridge-nav__list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .databridge-nav__list a {
    font-size: 17px;
  }

  .databridge-nav__cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .databridge-hero {
    padding: 110px 7vw 80px;
  }

  .databridge-hero__cta-primary,
  .databridge-hero__cta-secondary,
  .databridge-cta__primary,
  .databridge-cta__secondary {
    width: 100%;
    justify-content: center;
  }

  .databridge-cta__actions {
    flex-direction: column;
  }

  .databridge-cta__inner {
    padding: 32px 28px;
  }

  .databridge-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: #1B2C5C;
}

.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: #1B2C5C;
  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 h2 {
  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(219, 184, 90, 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: #1B2C5C;
  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 h2 {
    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(219, 184, 90, 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(219, 184, 90, 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(219, 184, 90, 0.12) 0%, transparent 60%),
    var(--card);
  border-radius: 16px;
  border: 1px solid rgba(219, 184, 90, 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: #0E1A3A;
  box-shadow: 0 12px 32px rgba(219, 184, 90, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta__button:hover,
.blog-cta__button:focus {
  color: #0E1A3A;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(219, 184, 90, 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: #0E1A3A;
  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;
  }
}

/* ============================================================
   Offer pages (/offers/<slug>/)
   ============================================================ */

.offer-hero {
  position: relative;
  padding: clamp(96px, 12vw, 160px) clamp(20px, 5vw, 96px) 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
  border-bottom: 1px solid rgba(200, 168, 106, 0.18);
}

/* 2026-06-03 (Olek "всё выровнять на 960"): a single 960px content measure
   across every offer-page section. Overrides the global `.databridge-section
   > *` (var(--container-max) = 1200) and the per-element widths (lead 820,
   title 1100) — but only on .offer-page, so the homepage keeps its wider
   measures. Higher specificity (.offer-page .databridge-section > *) wins. */
.offer-page .databridge-section > * {
  max-width: 960px;
}

.offer-hero__inner {
  /* 2026-06-03 (Olek "всё выровнять на 960"): one 960px content measure across
     the whole offer page — hero capped here, body sections via the .offer-page
     rule below. Offer-only class, so no extra scoping needed. */
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.offer-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin: 0 0 18px;
}

.offer-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
  /* Long titles ("AX 2012 to D365 Upgrade Assessment") wrap inside the 960
     column — balance the lines instead of orphaning the last word. */
  text-wrap: balance;
}

.offer-hero__pitch {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: #d4d8e2;
  margin: 0 auto 28px;
  /* 2026-06-03: fill the 960 hero inner (see .offer-hero__inner). */
  max-width: none;
}

.offer-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 10px 22px;
  border: 1px solid rgba(200, 168, 106, 0.4);
  border-radius: 999px;
  background: rgba(200, 168, 106, 0.06);
}

.offer-hero__price {
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}

.offer-hero__sep {
  color: rgba(200, 168, 106, 0.5);
}

.offer-hero__duration {
  color: #d4d8e2;
  font-size: 15px;
}

.offer-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.offer-section__lead {
  font-size: 18px;
  line-height: 1.7;
  color: #d4d8e2;
  max-width: 820px;
  margin: 0 auto;
}

.offer-section__note {
  color: #A8B0C8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 820px;
  margin: 28px auto 0;
  font-style: italic;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  color: #d4d8e2;
  font-size: 16px;
  line-height: 1.55;
}

.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(200, 168, 106, 0.4);
}

.offer-list--negative li::before {
  background: transparent;
  border: 1px solid rgba(200, 168, 106, 0.5);
  box-shadow: none;
}

.offer-quotes {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-quotes li {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(21, 35, 70, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  color: #d4d8e2;
  font-size: 16px;
  line-height: 1.55;
}

.offer-quotes i {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.offer-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-timeline li {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(21, 35, 70, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.offer-timeline__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* Unified 2026-06-07 (Olek): flat subtle-fill circle, no ring — matches the
     homepage number badges (principles / plan). */
  background: rgba(200, 168, 106, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.offer-timeline__body {
  flex: 1;
}

.offer-timeline__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

.offer-timeline__time {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.offer-timeline__body p {
  margin: 0;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.55;
}

/* Round 1 Codex improvement (priority 1) — scope baseline under price chip */
.offer-hero__baseline {
  color: #A8B0C8;
  font-size: 14px;
  line-height: 1.55;
  /* 2026-06-03: fill the 960 hero inner. */
  max-width: none;
  margin: 0 auto 28px;
  font-style: italic;
}

/* AX-style EOL hook in the offer hero — lifecycle fact + Microsoft Lifecycle link. */
.offer-hero__eol {
  color: #A8B0C8;
  font-size: 14px;
  line-height: 1.55;
  max-width: none;
  margin: 0 auto 24px;
}
.offer-hero__eol a {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================================
   Methodology page (/methodology/outbridge-evaluation/)
   ============================================================ */

.methodology-criteria {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.methodology-criterion {
  background: rgba(21, 35, 70, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 22px 26px;
}

.methodology-criterion header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.methodology-criterion__id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border-radius: 6px;
  background: rgba(200, 168, 106, 0.15);
  border: 1px solid rgba(200, 168, 106, 0.4);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.methodology-criterion header h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

.methodology-criterion dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.methodology-criterion dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3px;
}

.methodology-criterion dd {
  margin: 0;
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.55;
}

/* Alternatives table */
.methodology-alternatives {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}

.methodology-alternatives table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: rgba(21, 35, 70, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.methodology-alternatives th {
  background: rgba(200, 168, 106, 0.1);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(200, 168, 106, 0.2);
}

.methodology-alternatives td {
  color: #d4d8e2;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.5;
  vertical-align: top;
}

.methodology-alternatives td:first-child {
  font-weight: 600;
  color: #fff;
}

.methodology-alternatives tr:last-child td {
  border-bottom: none;
}

/* Round 2 Codex priority 3 — commercial scope blocks on offer pages */
.offer-addons {
  max-width: 820px;
  margin: 36px auto 0;
}

.offer-addons__title {
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 700;
}

.offer-addons__table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(21, 35, 70, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.offer-addons__table td {
  padding: 12px 16px;
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-addons__table tr:last-child td {
  border-bottom: none;
}

.offer-addons__price {
  text-align: right;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

/* Round 4 Codex (CTO persona) — "What we inspect" technical proof block */
.databridge-inspect-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.databridge-inspect-list li {
  padding: 20px 24px;
  background: rgba(21, 35, 70, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  display: grid;
  gap: 6px;
}

.databridge-inspect-list strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.databridge-inspect-list span {
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================================
   Partner-front-door pivot (2026-05-27) — bench / shapes / partners / direct
   See: 02_site_copy/homepage.md + 01_strategy/partner_front_door_positioning_2026-05-27.md
   ========================================================================= */

/* Bench composition — 3 pod cards */
.databridge-bench {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.databridge-bench__pod {
  display: flex;
  flex-direction: column;
  background: rgba(21, 35, 70, 0.7);
  border: 1px solid rgba(200, 168, 106, 0.25);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.databridge-bench__pod:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 106, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(200, 168, 106, 0.12);
}

/* Differentiator pod — slightly elevated visual treatment */
.databridge-bench__pod--cross-world {
  border-color: rgba(200, 168, 106, 0.5);
  background: linear-gradient(160deg, rgba(27, 44, 92, 0.85) 0%, rgba(21, 35, 70, 0.7) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 24px rgba(200, 168, 106, 0.08);
}

.databridge-bench__header {
  border-bottom: 1px solid rgba(200, 168, 106, 0.2);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.databridge-bench__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.databridge-bench__header h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

.databridge-bench__composition {
  margin: 0 0 16px;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
}

.databridge-bench__covers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.databridge-bench__covers li {
  position: relative;
  padding-left: 22px;
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.5;
}

.databridge-bench__covers li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* The seam — dedicated differentiator band under the 3 bench pods.
   The differentiator is the relationship BETWEEN F&O and Power Platform,
   not a pod — so it gets its own highlighted band, not an elevated card. */
.databridge-seam {
  margin: 28px auto 0;
  padding: 26px 32px;
  border-radius: 16px;
  border: 1px solid rgba(200, 168, 106, 0.55);
  background: linear-gradient(135deg, rgba(27, 44, 92, 0.9) 0%, rgba(21, 35, 70, 0.72) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(200, 168, 106, 0.12);
  text-align: center;
}

.databridge-seam__label {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent);
}

.databridge-seam__body {
  margin: 0 auto;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.6;
  color: #e6e9f2;
}

@media (max-width: 720px) {
  .databridge-seam {
    padding: 22px 20px;
  }
  .databridge-seam__body {
    font-size: 15px;
  }
}

/* How it works — 3-step plan (StoryBrand light-injection, 2026-06) */
.databridge-plan {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: plan;
}

.databridge-plan > li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.databridge-plan__num {
  /* Unified 2026-06-07 (Olek): dropped the gold ring to match the Approach
     numbers — flat subtle-fill circle. */
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  color: var(--accent);
  background: rgba(200, 168, 106, 0.12);
}

.databridge-plan h3 {
  margin: 4px 0 6px;
  font-size: 17px;
  color: #fff;
}

.databridge-plan p {
  margin: 0;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.55;
}

/* Problem strip — "Which of these is your project right now?" self-select
   router under the hero (2026-06-02). STATIC, not a carousel: all five
   entry-problems are visible at once so partners whose pain isn't the
   capacity gap still self-identify. Each row deep-links to the matching
   offer / section. (Auto-rotating carousels bury slides 2+ — rationale in
   02_site_copy/homepage.md.) */
.databridge-situations__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.databridge-situations__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.databridge-situations__row:hover,
.databridge-situations__row:focus-visible {
  border-color: rgba(200, 168, 106, 0.5);
  background: rgba(200, 168, 106, 0.06);
  transform: translateX(4px);
}

.databridge-situations__problem {
  font-size: 17px;
  line-height: 1.5;
  color: #e6e9f2;
  font-weight: 500;
}

.databridge-situations__route {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
}

.databridge-situations__route i {
  font-size: 18px;
  transition: transform 0.18s ease;
}

.databridge-situations__row:hover .databridge-situations__route i,
.databridge-situations__row:focus-visible .databridge-situations__route i {
  transform: translateX(3px);
}

/* Seam row — gold-accented to spotlight the differentiator entry-point. */
.databridge-situations__row--seam {
  border-color: rgba(200, 168, 106, 0.45);
  background: rgba(200, 168, 106, 0.05);
}

@media (max-width: 640px) {
  .databridge-situations__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .databridge-situations__problem {
    font-size: 16px;
  }
}

/* Engagement shapes — 4 cards (Embedded Pod + 3 productized) */
.databridge-shapes {
  /* 2026-06-03: flex-wrap + centre instead of an auto-fit grid so an odd card
     count (now 5) lays out 3+2 with the last row centred, not a 4+1 orphan. */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.databridge-shape {
  display: flex;
  flex-direction: column;
  /* Flex item: 340px basis, no grow (consistent width across rows), min 280px
     so it wraps to fewer-up on tablet/mobile instead of over-shrinking. */
  flex: 0 1 340px;
  min-width: 280px;
  background: rgba(21, 35, 70, 0.7);
  border: 1px solid rgba(200, 168, 106, 0.25);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.databridge-shape:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 106, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(200, 168, 106, 0.12);
}

/* First card — Embedded Engineering Pod (partner-channel primary) */
.databridge-shape--capacity {
  border-color: rgba(200, 168, 106, 0.55);
  background: linear-gradient(160deg, rgba(27, 44, 92, 0.85) 0%, rgba(21, 35, 70, 0.7) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 24px rgba(200, 168, 106, 0.1);
}

.databridge-shape__header {
  border-bottom: 1px solid rgba(200, 168, 106, 0.2);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.databridge-shape__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.databridge-shape__header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.databridge-shape__price {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.databridge-shape__meta {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.databridge-shape__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.databridge-shape__meta dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.databridge-shape__meta dd {
  margin: 0;
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.5;
}

.databridge-shape__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 168, 106, 0.15);
  transition: gap 0.2s ease, color 0.2s ease;
}

.databridge-shape__cta:hover,
.databridge-shape__cta:focus {
  color: #fff;
  gap: 14px;
}

/* Working with partners — operational checklist */
.databridge-partners-list {
  list-style: none;
  padding: 0;
  /* margin: 0 auto — NOT margin:0. Plain margin:0 overrides the auto-centering
     from `.databridge-section > *`, leaving the grid pinned to the section's
     left edge with a dead gutter on the right (same trap as .databridge-principles). */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.databridge-partners-list li {
  padding: 20px 24px;
  background: rgba(21, 35, 70, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  display: grid;
  gap: 6px;
}

.databridge-partners-list strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.databridge-partners-list span {
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.55;
}

.databridge-partners-list a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 168, 106, 0.4);
}

.databridge-partners-list a:hover,
.databridge-partners-list a:focus {
  border-bottom-color: var(--accent);
}

/* Proof tile cross-world badge */
.databridge-proof__badge {
  /* Deframed 2026-06-07 (Olek): the pill border/fill broke from the site's
     plain uppercase-gold label style (section eyebrows). Now a flat label. */
  display: inline-block;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Direct-customer side door — smaller, more compact cards */
.databridge-section--side-door {
  background: rgba(14, 26, 58, 0.55);
}

.databridge-direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.databridge-direct__card {
  display: block;
  position: relative;
  padding: 22px 56px 22px 22px;
  background: rgba(21, 35, 70, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.databridge-direct__card:hover,
.databridge-direct__card:focus {
  transform: translateY(-2px);
  border-color: rgba(200, 168, 106, 0.4);
  background: rgba(27, 44, 92, 0.65);
}

.databridge-direct__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #fff;
  line-height: 1.3;
}

.databridge-direct__price {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.databridge-direct__card p:not(.databridge-direct__price) {
  margin: 0;
  color: #d4d8e2;
  font-size: 14px;
  line-height: 1.5;
}

.databridge-direct__arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  transition: right 0.2s ease;
}

.databridge-direct__card:hover .databridge-direct__arrow,
.databridge-direct__card:focus .databridge-direct__arrow {
  right: 16px;
}

/* Mobile — pods stack with reduced padding */
@media (max-width: 720px) {
  .databridge-bench__pod,
  .databridge-shape {
    padding: 22px;
  }

  .databridge-shape__header h3,
  .databridge-bench__header h3 {
    font-size: 20px;
  }
}
