:root {
  --bd-midnight: #101a36;
  --bd-steel: #496283;
  --bd-cobalt: #326fc8;
  --bd-electric: #4e9df5;
  --bd-ink: #0b1226;
  --bd-surface: #f8faff;
  --bd-background: #ffffff;
  --bd-foreground: #101829;
  --bd-primary: #1d2e50;
  --bd-primary-foreground: #f8faff;
  --bd-secondary: #f1f4f9;
  --bd-muted: #657186;
  --bd-accent: #e7eef9;
  --bd-border: #dce2eb;
  --bd-danger: #b42318;
  --bd-radius: 10px;
  --bd-shadow: 0 22px 65px rgba(7, 16, 36, 0.14);
  --bd-font: "Glacial Indifference", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bd-background);
  color: var(--bd-foreground);
  font-family: var(--bd-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.bd-growth-theme {
  max-width: 100%;
  overflow-x: hidden;
}

body.bd-growth-theme a {
  color: inherit;
  text-decoration: none;
}

.bd-site-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  overflow: clip;
}

body.bd-menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--bd-font);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

p,
ul,
ol {
  margin-top: 0;
}

::selection {
  background: rgba(78, 157, 245, 0.25);
}

:focus-visible {
  outline: 2px solid var(--bd-electric);
  outline-offset: 3px;
  border-radius: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bd-skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 10000;
  border-radius: 6px;
  background: var(--bd-primary);
  color: #fff;
  padding: 10px 16px;
}

.bd-skip-link:focus {
  top: 12px;
}

.bd-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.bd-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.bd-icon--small {
  width: 16px;
  height: 16px;
}

.bd-icon--tiny {
  width: 12px;
  height: 12px;
}

.bd-midnight-gradient {
  background:
    radial-gradient(1200px 620px at 82% -10%, rgba(78, 157, 245, 0.27), transparent 62%),
    radial-gradient(900px 520px at -10% 30%, rgba(50, 111, 200, 0.32), transparent 60%),
    linear-gradient(180deg, #111c39 0%, var(--bd-ink) 100%);
}

.bd-grid-bg,
.bd-hero-card__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(137, 164, 199, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(137, 164, 199, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.bd-button:hover {
  transform: translateY(-1px);
}

.bd-button--primary {
  background: var(--bd-primary);
  color: var(--bd-primary-foreground);
  box-shadow: 0 8px 20px rgba(16, 30, 58, 0.13);
}

.bd-button--primary:hover {
  background: #263b65;
}

.bd-button--light {
  background: #fff;
  color: var(--bd-primary);
}

.bd-button--light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.bd-button--glass {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.bd-button--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.bd-button--outline {
  border-color: var(--bd-border);
  background: #fff;
  color: var(--bd-primary);
}

/* Header */
.bd-site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.admin-bar .bd-site-header {
  top: 32px;
}

.bd-site-header.is-scrolled,
.bd-site-header.is-menu-open {
  border-bottom-color: rgba(130, 148, 175, 0.24);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 4px 22px rgba(13, 25, 49, 0.04);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.bd-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.bd-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.bd-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Montserrat, var(--bd-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.bd-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.bd-site-header.is-scrolled .bd-logo,
.bd-site-header.is-menu-open .bd-logo {
  color: var(--bd-foreground);
}

.bd-desktop-nav {
  margin-left: auto;
}

.bd-nav-list,
.bd-nav-list ul,
.bd-mobile-nav-list,
.bd-mobile-nav-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bd-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.bd-nav-list > li {
  position: relative;
}

.bd-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.bd-site-header.is-scrolled .bd-nav-list > li > a,
.bd-site-header.is-menu-open .bd-nav-list > li > a {
  color: rgba(16, 24, 41, 0.8);
}

body.error404 .bd-site-header:not(.is-scrolled),
body.search .bd-site-header:not(.is-scrolled),
body.archive .bd-site-header:not(.is-scrolled),
body.bd-full-width-template .bd-site-header:not(.is-scrolled) {
  border-bottom-color: var(--bd-border);
  background: rgba(255, 255, 255, 0.94);
}

body.error404 .bd-site-header:not(.is-scrolled) .bd-logo,
body.search .bd-site-header:not(.is-scrolled) .bd-logo,
body.archive .bd-site-header:not(.is-scrolled) .bd-logo,
body.bd-full-width-template .bd-site-header:not(.is-scrolled) .bd-logo,
body.error404 .bd-site-header:not(.is-scrolled) .bd-nav-list > li > a,
body.search .bd-site-header:not(.is-scrolled) .bd-nav-list > li > a,
body.archive .bd-site-header:not(.is-scrolled) .bd-nav-list > li > a,
body.bd-full-width-template .bd-site-header:not(.is-scrolled) .bd-nav-list > li > a {
  color: var(--bd-foreground);
}

.bd-nav-list > li > a:hover,
.bd-nav-list > li.current-menu-item > a,
.bd-nav-list > li.current-menu-ancestor > a {
  background: rgba(78, 157, 245, 0.1);
  color: var(--bd-electric);
}

.bd-nav-list .menu-item-has-children > a::after {
  width: 7px;
  height: 7px;
  margin: -3px 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.bd-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 352px;
  padding: 8px;
  border: 1px solid var(--bd-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--bd-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.bd-nav-list li:hover > .sub-menu,
.bd-nav-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bd-nav-list .sub-menu a {
  display: block;
  border-radius: 9px;
  padding: 10px 12px;
  color: rgba(16, 24, 41, 0.8);
  font-size: 14px;
}

.bd-nav-list .sub-menu a:hover {
  background: var(--bd-accent);
  color: var(--bd-foreground);
}

.bd-header-cta {
  flex: 0 0 auto;
}

body.bd-home .bd-site-header:not(.is-scrolled):not(.is-menu-open) .bd-header-cta {
  background: #fff;
  color: var(--bd-primary);
}

body.page:not(.bd-full-width-template) .bd-site-header:not(.is-scrolled):not(.is-menu-open) .bd-header-cta,
body.single .bd-site-header:not(.is-scrolled):not(.is-menu-open) .bd-header-cta {
  background: #fff;
  color: var(--bd-primary);
}

.bd-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bd-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--bd-primary);
}

.bd-menu-toggle__close {
  display: none;
}

.bd-site-header.is-menu-open .bd-menu-toggle__open {
  display: none;
}

.bd-site-header.is-menu-open .bd-menu-toggle__close {
  display: block;
}

.bd-mobile-menu {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  border-top: 1px solid var(--bd-border);
  background: #fff;
  box-shadow: 0 20px 40px rgba(8, 18, 38, 0.08);
}

.bd-mobile-menu .bd-container {
  padding-block: 20px 28px;
}

.bd-mobile-nav-list > li > a {
  display: block;
  border-radius: 7px;
  padding: 10px 12px;
  font-weight: 700;
}

.bd-mobile-nav-list > li > a:hover {
  background: var(--bd-accent);
}

.bd-mobile-nav-list .sub-menu {
  margin: 2px 0 6px 16px;
  padding-left: 12px;
  border-left: 1px solid var(--bd-border);
}

.bd-mobile-nav-list .sub-menu a {
  display: block;
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--bd-muted);
  font-size: 14px;
}

.bd-mobile-cta {
  width: 100%;
  margin-top: 18px;
}

/* Homepage hero */
.bd-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 880px;
  color: #fff;
}

.bd-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.25;
  pointer-events: none;
}

.bd-orb--one {
  top: -160px;
  right: -160px;
  background: var(--bd-electric);
  animation: bd-orb-one 12s ease-in-out infinite;
}

.bd-orb--two {
  bottom: -160px;
  left: -160px;
  background: var(--bd-cobalt);
  animation: bd-orb-two 14s ease-in-out infinite;
}

.bd-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 128px;
}

.bd-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 80px;
}

.bd-hero__grid > *,
.bd-editor-columns > *,
.bd-card-grid > *,
.bd-contact-layout > *,
.bd-footer-grid > * {
  min-width: 0;
}

.bd-eyebrow,
.bd-section-label {
  margin: 0 0 18px;
  color: var(--bd-electric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bd-hero__title {
  max-width: 690px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.05;
}

.bd-hero__title > span {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, var(--bd-electric) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bd-hero__title > span i {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bd-electric), var(--bd-cobalt));
  transform-origin: left;
  animation: bd-underline 0.9s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bd-hero__intro {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.bd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.bd-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.bd-slide-indicators button {
  position: relative;
  width: 20px;
  height: 6px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  transition: width 240ms ease;
}

.bd-slide-indicators button[aria-selected="true"] {
  width: 44px;
}

.bd-slide-indicators button span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bd-electric), var(--bd-cobalt));
  transition: width 240ms ease;
}

.bd-slide-indicators button[aria-selected="true"] span,
.bd-slide-indicators button:hover span {
  width: 100%;
}

.bd-hero-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  perspective: 1400px;
}

.bd-card-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  will-change: transform;
}

.bd-hero-card {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.bd-hero-card--back {
  pointer-events: none;
}

.bd-hero-card--back-one {
  opacity: 0.25;
  transform: translateZ(-60px) translateY(22px) scale(0.94);
}

.bd-hero-card--back-two {
  opacity: 0.15;
  transform: translateZ(-120px) translateY(44px) scale(0.88);
}

.bd-hero-card--front {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  animation: bd-card-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bd-hero-card--front.is-changing {
  animation: bd-card-exit 0.28s ease-in forwards;
}

.bd-hero-card--front.is-entering {
  animation: bd-card-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bd-hero-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bd-electric), var(--bd-cobalt));
  box-shadow: 0 10px 28px rgba(49, 111, 200, 0.35);
  transform: translateZ(60px);
}

.bd-hero-card__tag {
  margin: 24px 0 0;
  color: var(--bd-electric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateZ(40px);
}

.bd-hero-card h2 {
  max-width: 390px;
  margin-top: 12px;
  font-size: clamp(25px, 2.3vw, 34px);
  transform: translateZ(50px);
}

.bd-hero-card__body {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  transform: translateZ(30px);
}

.bd-hero-card .bd-button {
  margin-top: 30px;
  transform: translateZ(70px);
}

.bd-hero-card__sparkle {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.42);
  transform: translateZ(80px);
  animation: bd-sparkle 4s ease-in-out infinite;
}

.bd-hero-card__grid {
  top: auto;
  left: auto;
  width: 128px;
  height: 128px;
  border-radius: 0 0 24px 0;
  opacity: 0.3;
}

.bd-hero-reflection {
  width: 75%;
  height: 64px;
  margin: 16px auto 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(24px);
}

.bd-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bd-hero-features div {
  display: grid;
  gap: 7px;
}

.bd-hero-features strong {
  font-size: 14px;
}

.bd-hero-features span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.55;
}

.bd-marquee {
  overflow: hidden;
  border-top: 1px solid var(--bd-border);
  border-bottom: 1px solid var(--bd-border);
  background: #fff;
  padding-block: 22px;
}

.bd-marquee__track {
  display: flex;
  width: max-content;
  animation: bd-marquee 32s linear infinite;
}

.bd-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
  color: rgba(16, 24, 41, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bd-marquee__track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bd-electric);
}

/* Page headers */
.bd-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.bd-page-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 152px;
  padding-bottom: 78px;
}

.bd-breadcrumbs {
  margin-bottom: 24px;
}

.bd-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.bd-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bd-breadcrumbs a:hover {
  color: #fff;
}

.bd-page-hero__title {
  max-width: 920px;
  font-size: clamp(40px, 5.2vw, 64px);
}

.bd-text-gradient {
  background: linear-gradient(120deg, #fff, var(--bd-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bd-page-hero__intro {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.bd-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Editable content */
.bd-page-content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 240px;
}

.bd-page-content--full-width {
  padding-top: 80px;
}

.bd-content-section {
  position: relative;
  clear: both;
  isolation: isolate;
  overflow: clip;
  margin: 0 !important;
  padding: 80px 0;
}

.bd-content-section > * {
  min-width: 0;
  width: min(100% - 40px, 1280px);
  margin-right: auto !important;
  margin-left: auto !important;
}

.bd-content-section--muted {
  background: rgba(241, 244, 249, 0.68);
}

.bd-content-section--dark {
  position: relative;
  overflow: hidden;
  background: var(--bd-primary);
  color: #fff;
}

.bd-content-section--dark::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.bd-content-section--dark > * {
  position: relative;
}

.bd-content-section--dark p:not(.bd-section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.bd-content-section--dark .bd-editor-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.bd-content-section--cta {
  padding-block: 0 80px;
}

.bd-content-section h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 48px);
}

.bd-content-section h3 {
  font-size: 19px;
}

.bd-content-section p {
  color: var(--bd-muted);
}

.bd-content-section > p,
.bd-content-section > .wp-block-paragraph {
  max-width: 760px;
}

.bd-editor-columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin: 0 !important;
}

.bd-editor-columns > .wp-block-column {
  min-width: 0;
  margin: 0 !important;
}

.bd-editor-card-grid,
.bd-process-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px !important;
}

.bd-editor-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bd-editor-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bd-editor-card {
  margin: 0 !important;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
}

.bd-editor-card p:last-child {
  margin-bottom: 0;
}

.bd-editor-card--dark {
  border-color: var(--bd-primary);
  background: var(--bd-primary);
  color: #fff;
}

.bd-editor-card--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.bd-editor-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  background: var(--bd-secondary);
  padding: 24px;
}

.bd-process-grid {
  grid-template-columns: 1fr;
}

.bd-process-grid .bd-editor-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: 28px;
  padding: 30px;
}

.bd-process-grid .bd-editor-card h3 {
  color: var(--bd-primary);
  font-size: 24px;
}

.bd-section-label {
  color: var(--bd-cobalt) !important;
}

.bd-section-label--light {
  color: var(--bd-electric) !important;
}

.bd-small-note,
.bd-coming-soon {
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bd-check-list,
.bd-dot-list,
.bd-deliverable-list,
.bd-number-list,
.bd-outcome-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.bd-check-list li,
.bd-dot-list li,
.bd-deliverable-list li,
.bd-outcome-list li {
  position: relative;
  border-radius: 12px;
  color: var(--bd-muted);
  font-size: 15px;
}

.bd-check-list li,
.bd-dot-list li {
  padding-left: 26px;
}

.bd-check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--bd-cobalt);
  border-bottom: 2px solid var(--bd-cobalt);
  content: "";
  transform: rotate(-45deg);
}

.bd-dot-list li::before {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bd-electric);
  content: "";
}

.bd-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.bd-deliverable-grid li,
.bd-deliverable-list li,
.bd-outcome-list li {
  border: 1px solid rgba(103, 126, 158, 0.18);
  background: #fff;
  padding: 15px 16px;
}

.bd-number-list {
  counter-reset: bd-number;
}

.bd-number-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  color: var(--bd-muted);
  counter-increment: bd-number;
}

.bd-number-list li::before {
  color: var(--bd-cobalt);
  font-weight: 700;
  content: counter(bd-number, decimal-leading-zero);
}

.bd-legal-content > * {
  max-width: 840px;
  margin-right: auto !important;
  margin-left: max(20px, calc((100vw - 1280px) / 2)) !important;
}

.bd-legal-content h2 {
  margin-top: 36px;
  font-size: 22px;
}

/* Dynamic cards */
.bd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  background: var(--bd-border);
}

.bd-card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bd-service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 265px;
  background: #fff;
  padding: 30px;
  transition: background 180ms ease, transform 180ms ease;
}

.bd-service-card:hover {
  background: var(--bd-accent);
}

.bd-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(29, 46, 80, 0.06);
  color: var(--bd-primary);
}

.bd-service-card__icon .bd-icon {
  width: 20px;
  height: 20px;
}

.bd-service-card h3,
.bd-industry-card h3,
.bd-related-card h3,
.bd-insight-card h3 {
  font-size: 19px;
}

.bd-service-card p,
.bd-industry-card p,
.bd-related-card p,
.bd-insight-card p {
  margin: 0;
  color: var(--bd-muted);
  font-size: 14px;
}

.bd-card-link,
.bd-related-card > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--bd-primary);
  font-size: 14px;
  font-weight: 700;
}

.bd-service-card .bd-card-link {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.bd-service-card:hover .bd-card-link {
  opacity: 1;
  transform: translateY(0);
}

.bd-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.bd-industry-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  min-height: 155px;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  background: #fff;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bd-industry-card:hover,
.bd-related-card:hover,
.bd-insight-card:hover {
  border-color: rgba(50, 111, 200, 0.35);
  box-shadow: 0 16px 35px rgba(29, 46, 80, 0.08);
  transform: translateY(-2px);
}

.bd-industry-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bd-accent);
  color: var(--bd-cobalt);
}

.bd-industry-card > span .bd-icon {
  width: 20px;
  height: 20px;
}

.bd-industry-card p {
  margin-top: 9px;
}

.bd-industry-card__arrow {
  margin-top: 3px;
  color: var(--bd-muted);
}

.bd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.bd-related-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bd-related-card p {
  margin-top: 10px;
}

.bd-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.bd-insight-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bd-insight-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--bd-muted);
  font-size: 12px;
}

.bd-insight-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bd-insight-card__meta span:first-child {
  border-radius: 999px;
  background: var(--bd-secondary);
  padding: 5px 9px;
  color: var(--bd-primary);
  font-weight: 700;
}

.bd-insight-card h3 {
  margin-bottom: 10px;
}

.bd-coming-soon {
  margin-top: auto;
  color: var(--bd-muted);
}

/* CTA */
.bd-cta {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 52px;
  color: #fff;
}

.bd-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 42px;
}

.bd-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
}

.bd-cta p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74) !important;
}

.bd-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Contact */
.bd-contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.bd-contact-form-card,
.bd-contact-card {
  border: 1px solid var(--bd-border);
  border-radius: 26px;
  background: #fff;
  padding: 38px;
}

.bd-contact-form-card h2 {
  font-size: 32px;
}

.bd-contact-form-card > p {
  margin: 8px 0 0;
  color: var(--bd-muted);
  font-size: 14px;
}

.bd-enquiry-form {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.bd-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bd-enquiry-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.bd-enquiry-form input,
.bd-enquiry-form select,
.bd-enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--bd-border);
  border-radius: 9px;
  background: #fff;
  color: var(--bd-foreground);
  padding: 11px 13px;
  font-weight: 400;
}

.bd-enquiry-form input:focus,
.bd-enquiry-form select:focus,
.bd-enquiry-form textarea:focus {
  border-color: var(--bd-cobalt);
  outline: 2px solid rgba(78, 157, 245, 0.18);
}

.bd-enquiry-form [aria-invalid="true"] {
  border-color: var(--bd-danger);
}

.bd-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--bd-muted);
  font-weight: 400 !important;
}

.bd-consent input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.bd-consent a {
  text-decoration: underline;
}

.bd-form-note {
  margin: 0;
  color: var(--bd-muted);
  font-size: 12px;
}

.bd-form-status {
  display: none;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 13px;
}

.bd-form-status.is-error {
  display: block;
  background: #fef3f2;
  color: var(--bd-danger);
}

.bd-form-status.is-success {
  display: block;
  background: #ecfdf3;
  color: #027a48;
}

.bd-contact-aside {
  display: grid;
  align-content: start;
  gap: 20px;
}

.bd-contact-card > .bd-logo {
  color: var(--bd-foreground);
}

.bd-contact-card ul {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.bd-contact-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bd-contact-card li > .bd-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--bd-primary);
}

.bd-contact-card li div {
  display: grid;
  gap: 2px;
}

.bd-contact-card small {
  color: var(--bd-muted);
}

.bd-contact-card a {
  font-weight: 700;
}

.bd-business-card {
  border-radius: 26px;
  background: var(--bd-primary);
  color: #fff;
  padding: 32px;
}

.bd-business-card p {
  color: rgba(255, 255, 255, 0.78);
}

/* Blog */
.bd-blog-index,
.bd-fallback-loop,
.bd-article-content,
.bd-not-found {
  padding-top: 72px;
  padding-bottom: 90px;
}

.bd-article-content {
  width: min(100% - 40px, 820px);
}

.bd-article-meta {
  color: var(--bd-muted);
  font-size: 13px;
}

.bd-featured-image {
  overflow: hidden;
  margin: 26px 0 36px;
  border-radius: 20px;
}

.bd-article-content h2 {
  margin-top: 42px;
  font-size: 32px;
}

.bd-article-content h3 {
  margin-top: 32px;
  font-size: 24px;
}

.bd-article-content p,
.bd-article-content li {
  color: #3f4b60;
}

.bd-not-found {
  min-height: 72vh;
  padding-top: 180px;
  text-align: center;
}

.bd-not-found h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.bd-not-found > div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

/* Footer */
.bd-site-footer {
  position: relative;
  margin-top: 0;
  padding: 64px 0 0;
  color: #fff;
}

.bd-footer-grid {
  display: grid;
  grid-template-columns: 5fr 2fr 2fr 3fr;
  gap: 52px;
}

.bd-footer-brand .bd-logo {
  font-size: 16px;
}

.bd-footer-brand .bd-logo img {
  width: 52px;
  height: 52px;
}

.bd-footer-brand > p {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.bd-social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.bd-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.bd-site-footer h2 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bd-site-footer ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-site-footer li,
.bd-site-footer li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.bd-site-footer a:hover {
  color: #fff;
}

.bd-footer-contact-title {
  margin-top: 30px;
}

.bd-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bd-footer-contact .bd-icon {
  margin-top: 3px;
}

.bd-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.bd-footer-bottom p {
  margin: 0;
}

.bd-footer-bottom div {
  display: flex;
  gap: 20px;
}

.bd-floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.bd-floating-action:hover {
  transform: scale(1.06);
}

.bd-floating-action--whatsapp {
  background: #25d366;
}

.bd-floating-action--call {
  display: none;
  background: var(--bd-primary);
}

/* Motion */
.bd-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: bd-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bd-delay-1 { animation-delay: 50ms; }
.bd-delay-2 { animation-delay: 150ms; }
.bd-delay-3 { animation-delay: 250ms; }
.bd-delay-4 { animation-delay: 400ms; }

@keyframes bd-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bd-underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes bd-orb-one {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 30px); }
}

@keyframes bd-orb-two {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

@keyframes bd-sparkle {
  0%, 100% { rotate: 0deg; scale: 1; }
  50% { rotate: 20deg; scale: 1.15; }
}

@keyframes bd-card-enter {
  from { opacity: 0; transform: rotateY(45deg) translateZ(-200px); }
  to { opacity: 1; transform: rotateY(0) translateZ(0); }
}

@keyframes bd-card-exit {
  from { opacity: 1; transform: rotateY(0) translateZ(0); }
  to { opacity: 0; transform: rotateY(-45deg) translateZ(-200px); }
}

@keyframes bd-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .bd-desktop-nav,
  .bd-header-cta {
    display: none;
  }

  .bd-menu-toggle {
    display: inline-flex;
  }

  .bd-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .bd-hero__copy {
    max-width: 760px;
  }

  .bd-hero-stage {
    max-width: 500px;
  }

  .bd-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .bd-footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .bd-editor-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .bd-site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .bd-container {
    width: min(100% - 32px, 1280px);
  }

  .bd-site-header__inner {
    height: 64px;
  }

  .bd-logo img {
    width: 36px;
    height: 36px;
  }

  .bd-logo {
    font-size: 12px;
  }

  .bd-mobile-menu {
    max-height: calc(100vh - 64px);
  }

  .bd-hero {
    min-height: auto;
  }

  .bd-hero__inner {
    padding-top: 120px;
    padding-bottom: 82px;
  }

  .bd-hero__grid {
    gap: 50px;
  }

  .bd-hero__title {
    font-size: 43px;
  }

  .bd-hero__intro,
  .bd-page-hero__intro {
    font-size: 16px;
  }

  .bd-hero-stage {
    width: min(100%, 500px);
    min-width: 0;
  }

  .bd-card-stack {
    width: 100%;
  }

  .bd-hero-card--front {
    padding: 26px;
  }

  .bd-hero-features {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .bd-page-hero__inner {
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .bd-page-hero__title {
    font-size: 42px;
  }

  .bd-content-section {
    padding-block: 60px;
  }

  .bd-content-section--cta {
    padding-block: 0 60px;
  }

  .bd-editor-columns,
  .bd-editor-card-grid,
  .bd-editor-card-grid--3,
  .bd-editor-card-grid--4,
  .bd-card-grid,
  .bd-card-grid--2,
  .bd-industry-grid,
  .bd-related-grid,
  .bd-insights-grid,
  .bd-contact-layout,
  .bd-cta__content,
  .bd-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .bd-editor-columns {
    gap: 36px;
  }

  .bd-deliverable-grid,
  .bd-form-row {
    grid-template-columns: 1fr;
  }

  .bd-process-grid .bd-editor-card {
    grid-template-columns: 1fr;
  }

  .bd-cta {
    padding: 30px;
  }

  .bd-cta__buttons {
    align-items: stretch;
  }

  .bd-contact-form-card,
  .bd-contact-card,
  .bd-business-card {
    padding: 26px;
  }

  .bd-footer-grid {
    gap: 38px;
  }

  .bd-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bd-floating-action--call {
    display: inline-flex;
  }

  .bd-legal-content > * {
    margin-inline: auto !important;
  }
}

@media (max-width: 480px) {
  .bd-logo > span:last-child {
    display: none;
  }

  .bd-hero__title {
    font-size: 37px;
  }

  .bd-hero-stage {
    max-width: 360px;
  }

  .bd-card-stack {
    min-height: 455px;
  }

  .bd-hero-card h2 {
    font-size: 25px;
  }

  .bd-hero-card__body {
    font-size: 14px;
  }

  .bd-page-hero__title {
    font-size: 36px;
  }

  .bd-hero__actions,
  .bd-page-hero__actions,
  .bd-not-found > div {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .bd-reveal {
    opacity: 1;
    transform: none;
  }
}
