:root {
  --bfed-bg-deep: #0d1b2a;
  --bfed-bg-mid: #112336;
  --bfed-bg-surface: #f0f4f7;
  --bfed-bg-canvas: #ffffff;
  --bfed-bg-light-alt: #e4ecf2;
  --bfed-text-dark-1: #e2ecf5;
  --bfed-text-dark-2: #94aec2;
  --bfed-text-light-1: #0d1b2a;
  --bfed-text-light-2: #4a6278;
  --bfed-accent: #10c5a8;
  --bfed-accent-text: #0a7060;
  --bfed-solar: #f59e0b;
  --bfed-border-dim: #1e3347;
  --bfed-border-bright: #2d4f6a;
  --bfed-section-pad: clamp(40px, 7vw, 80px);
  --bfed-container: 1200px;
  --bfed-radius: 8px;
  --bfed-ease: cubic-bezier(0.25, 0, 0, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bfed-text-light-1);
  background: var(--bfed-bg-canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

.bfed-container {
  width: 100%;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-section { padding-block: var(--bfed-section-pad); }

.bfed-section--dark {
  background: var(--bfed-bg-deep);
  color: var(--bfed-text-dark-1);
}

.bfed-section--dark-alt {
  background: var(--bfed-bg-mid);
  color: var(--bfed-text-dark-1);
}

.bfed-section--light {
  background: var(--bfed-bg-surface);
  color: var(--bfed-text-light-1);
}

.bfed-section--light-alt {
  background: var(--bfed-bg-light-alt);
  color: var(--bfed-text-light-1);
}

.bfed-section--white {
  background: var(--bfed-bg-canvas);
  color: var(--bfed-text-light-1);
}

.bfed-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bfed-section--dark .bfed-eyebrow,
.bfed-section--dark-alt .bfed-eyebrow {
  color: var(--bfed-accent);
}

.bfed-section--light .bfed-eyebrow,
.bfed-section--light-alt .bfed-eyebrow,
.bfed-section--white .bfed-eyebrow {
  color: var(--bfed-accent-text);
}

.bfed-section-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bfed-section--dark .bfed-section-heading,
.bfed-section--dark-alt .bfed-section-heading {
  color: var(--bfed-text-dark-1);
}

.bfed-section--light .bfed-section-heading,
.bfed-section--light-alt .bfed-section-heading,
.bfed-section--white .bfed-section-heading {
  color: var(--bfed-text-light-1);
}

.bfed-section-subhead {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 680px;
  margin-top: 16px;
}

.bfed-section--dark .bfed-section-subhead,
.bfed-section--dark-alt .bfed-section-subhead {
  color: var(--bfed-text-dark-2);
}

.bfed-section--light .bfed-section-subhead,
.bfed-section--light-alt .bfed-section-subhead,
.bfed-section--white .bfed-section-subhead {
  color: var(--bfed-text-light-2);
}

.bfed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--bfed-radius);
  transition: background 200ms var(--bfed-ease), color 200ms var(--bfed-ease), border-color 200ms var(--bfed-ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.bfed-btn--primary {
  background: var(--bfed-accent);
  color: var(--bfed-bg-deep);
  border: 2px solid var(--bfed-accent);
}

.bfed-btn--primary:hover {
  background: #0dac92;
  border-color: #0dac92;
  color: var(--bfed-bg-deep);
}

.bfed-btn--outline-light {
  background: transparent;
  color: var(--bfed-accent);
  border: 2px solid var(--bfed-accent);
}

.bfed-btn--outline-light:hover {
  background: rgba(16,197,168,0.1);
  color: var(--bfed-accent);
}

.bfed-btn--outline-dark {
  background: transparent;
  color: var(--bfed-text-light-1);
  border: 2px solid var(--bfed-text-light-1);
}

.bfed-btn--outline-dark:hover {
  background: rgba(13,27,42,0.08);
}

.bfed-btn--ghost-on-dark {
  background: transparent;
  color: var(--bfed-text-dark-1);
  border: 2px solid transparent;
}

.bfed-btn--ghost-on-dark:hover {
  color: var(--bfed-accent);
}

.bfed-btn--ghost-on-light {
  background: transparent;
  color: var(--bfed-text-light-1);
  border: 2px solid transparent;
}

.bfed-btn--ghost-on-light:hover {
  color: var(--bfed-accent-text);
}

.bfed-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.bfed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 250ms var(--bfed-ease), box-shadow 250ms var(--bfed-ease);
}

.bfed-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.bfed-nav__logo img {
  height: 36px;
  width: auto;
}

.bfed-logo--light { display: block; }
.bfed-logo--dark { display: none; }

.bfed-page--light-top .bfed-logo--light { display: none; }
.bfed-page--light-top .bfed-logo--dark { display: block; }

.bfed-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bfed-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 200ms var(--bfed-ease), background 200ms var(--bfed-ease);
  text-decoration: none;
}

.bfed-page--dark-top .bfed-nav .bfed-nav__link {
  color: var(--bfed-text-dark-2);
}

.bfed-page--dark-top .bfed-nav .bfed-nav__link:hover {
  color: var(--bfed-text-dark-1);
  background: rgba(255,255,255,0.06);
}

.bfed-page--light-top .bfed-nav .bfed-nav__link {
  color: var(--bfed-text-light-2);
}

.bfed-page--light-top .bfed-nav .bfed-nav__link:hover {
  color: var(--bfed-text-light-1);
  background: rgba(13,27,42,0.05);
}

.bfed-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bfed-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 200ms var(--bfed-ease);
  border: 2px solid transparent;
}

.bfed-page--dark-top .bfed-nav .bfed-nav__signin {
  color: var(--bfed-text-dark-2);
}

.bfed-page--dark-top .bfed-nav .bfed-nav__signin:hover {
  color: var(--bfed-text-dark-1);
}

.bfed-page--light-top .bfed-nav .bfed-nav__signin {
  color: var(--bfed-text-light-2);
}

.bfed-page--light-top .bfed-nav .bfed-nav__signin:hover {
  color: var(--bfed-text-light-1);
}

.bfed-page--dark-top .bfed-nav { background: transparent; }
.bfed-page--light-top .bfed-nav { background: var(--bfed-bg-canvas); border-bottom: 1px solid #e8edf2; }

.bfed-page--dark-top .bfed-nav--scrolled {
  background: var(--bfed-bg-deep);
  box-shadow: 0 1px 0 var(--bfed-border-dim);
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-nav__link {
  color: var(--bfed-text-dark-2);
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-nav__link:hover {
  color: var(--bfed-text-dark-1);
  background: rgba(255,255,255,0.06);
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-nav__signin {
  color: var(--bfed-text-dark-2);
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-nav__signin:hover {
  color: var(--bfed-text-dark-1);
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-logo--light {
  display: block !important;
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-logo--dark {
  display: none !important;
}

.bfed-nav__mobile-menu {
  display: none;
}

.bfed-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.bfed-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: background 200ms var(--bfed-ease);
}

.bfed-page--dark-top .bfed-nav .bfed-nav__hamburger span {
  background: var(--bfed-text-dark-1);
}

.bfed-page--dark-top .bfed-nav--scrolled .bfed-nav__hamburger span {
  background: var(--bfed-text-dark-1);
}

.bfed-page--light-top .bfed-nav .bfed-nav__hamburger span {
  background: var(--bfed-text-light-1);
}

.bfed-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bfed-bg-deep);
}

.bfed-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bfed-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.bfed-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.45) 60%, rgba(13,27,42,0.65) 100%);
  z-index: 1;
}

.bfed-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  padding-block: 120px 80px;
}

.bfed-hero__content {
  max-width: 600px;
}

.bfed-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bfed-accent);
  margin-bottom: 20px;
}

.bfed-hero__tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bfed-accent);
}

.bfed-hero__h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bfed-text-dark-1);
  margin-bottom: 20px;
}

.bfed-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--bfed-text-dark-2);
  max-width: 520px;
}

.bfed-hero__mock {
  background: rgba(13,27,42,0.9);
  border: 1px solid var(--bfed-border-bright);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.bfed-hero__mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bfed-border-dim);
}

.bfed-hero__mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bfed-border-bright);
}

.bfed-hero__mock-title {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--bfed-text-dark-2);
  margin-left: 4px;
}

.bfed-subhero {
  padding-block: clamp(60px, 10vw, 100px);
  padding-top: 120px;
}

.bfed-subhero--dark {
  background: var(--bfed-bg-deep);
  color: var(--bfed-text-dark-1);
}

.bfed-subhero--light {
  background: var(--bfed-bg-surface);
  color: var(--bfed-text-light-1);
}

.bfed-subhero--light-alt {
  background: var(--bfed-bg-light-alt);
  color: var(--bfed-text-light-1);
}

.bfed-subhero__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bfed-subhero__inner--full {
  display: block;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-subhero__h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.bfed-subhero--dark .bfed-subhero__h1 { color: var(--bfed-text-dark-1); }
.bfed-subhero--light .bfed-subhero__h1 { color: var(--bfed-text-light-1); }
.bfed-subhero--light-alt .bfed-subhero__h1 { color: var(--bfed-text-light-1); }

.bfed-subhero__sub {
  margin-top: 16px;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 560px;
}

.bfed-subhero--dark .bfed-subhero__sub { color: var(--bfed-text-dark-2); }
.bfed-subhero--light .bfed-subhero__sub { color: var(--bfed-text-light-2); }
.bfed-subhero--light-alt .bfed-subhero__sub { color: var(--bfed-text-light-2); }

.bfed-subhero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bfed-grid-problem {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-mid);
}

.bfed-grid-problem__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-stat-panel {
  background: rgba(13,27,42,0.6);
  border: 1px solid var(--bfed-border-bright);
  border-radius: var(--bfed-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bfed-stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--bfed-border-dim);
}

.bfed-stat:last-child { border-bottom: none; }

.bfed-stat__value {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bfed-accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.bfed-stat__label {
  font-size: 13px;
  color: var(--bfed-text-dark-2);
  line-height: 1.4;
}

.bfed-problem-prose {
  color: var(--bfed-text-dark-1);
}

.bfed-problem-prose .bfed-section-heading {
  color: var(--bfed-text-dark-1);
}

.bfed-problem-prose p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--bfed-text-dark-2);
  margin-top: 16px;
}

.bfed-how {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-surface);
}

.bfed-how__head {
  text-align: center;
  margin-bottom: 56px;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-how__steps {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  position: relative;
}

.bfed-how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(clamp(16px, 4vw, 40px) + 40px);
  right: calc(clamp(16px, 4vw, 40px) + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--bfed-accent) 0%, var(--bfed-accent-text) 100%);
}

.bfed-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.bfed-step--center {
  padding-top: 0;
}

.bfed-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bfed-step:not(.bfed-step--center) .bfed-step__num {
  background: var(--bfed-bg-surface);
  border: 2px solid var(--bfed-accent);
  color: var(--bfed-accent-text);
}

.bfed-step--center .bfed-step__num {
  width: 72px;
  height: 72px;
  background: var(--bfed-accent);
  border: none;
  color: var(--bfed-bg-deep);
  font-size: 1.25rem;
}

.bfed-step__label {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-bottom: 10px;
}

.bfed-step--center .bfed-step__label {
  color: var(--bfed-accent-text);
}

.bfed-step__detail {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--bfed-text-light-2);
}

.bfed-proof {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-light-alt);
}

.bfed-proof__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-proof__head {
  margin-bottom: 40px;
}

.bfed-signals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bfed-signal {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bfed-bg-canvas);
  border-radius: var(--bfed-radius);
  border-left: 3px solid var(--bfed-accent-text);
}

.bfed-signal__icon {
  flex-shrink: 0;
  width: 20px;
  margin-top: 2px;
}

.bfed-signal__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bfed-text-light-2);
}

.bfed-data-sources {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-deep);
}

.bfed-data-sources__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-data-sources__head {
  margin-bottom: 48px;
}

.bfed-data-sources__head .bfed-section-heading {
  color: var(--bfed-text-dark-1);
}

.bfed-data-sources__head .bfed-section-subhead {
  color: var(--bfed-text-dark-2);
}

.bfed-data-flow-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.bfed-testimonial {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-canvas);
}

.bfed-testimonial__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bfed-quote {
  padding: 32px;
  border: 1px solid #dce6ef;
  border-radius: var(--bfed-radius);
  background: var(--bfed-bg-surface);
  position: relative;
}

.bfed-quote::before {
  content: '\201C';
  font-family: 'Sora', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--bfed-accent-text);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 24px;
}

.bfed-quote__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bfed-text-light-2);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 32px;
}

.bfed-quote__attr {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bfed-accent-text);
}

.bfed-cta-section {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-deep);
}

.bfed-cta-section__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  text-align: center;
}

.bfed-cta-section__h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bfed-text-dark-1);
  margin-bottom: 16px;
}

.bfed-cta-section__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--bfed-text-dark-2);
  margin-bottom: 36px;
}

.bfed-cta-section .bfed-btn-row {
  justify-content: center;
  margin-top: 0;
}

.bfed-footer {
  background: var(--bfed-bg-deep);
  border-top: 1px solid var(--bfed-border-dim);
  padding-top: 56px;
  padding-bottom: 32px;
}

.bfed-footer__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bfed-border-dim);
}

.bfed-footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.bfed-footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--bfed-text-dark-2);
  max-width: 240px;
}

.bfed-footer__col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bfed-text-dark-2);
  margin-bottom: 16px;
}

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

.bfed-footer__link {
  font-size: 0.9375rem;
  color: var(--bfed-text-dark-2);
  text-decoration: none;
  transition: color 200ms var(--bfed-ease);
}

.bfed-footer__link:hover {
  color: var(--bfed-text-dark-1);
}

.bfed-footer__contact {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: flex-start;
}

.bfed-footer__contact-item {
  font-size: 0.875rem;
  color: var(--bfed-text-dark-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bfed-footer__contact-item a {
  color: var(--bfed-text-dark-2);
  text-decoration: none;
}

.bfed-footer__contact-item a:hover {
  color: var(--bfed-accent);
}

.bfed-footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bfed-footer__copy {
  font-size: 0.8125rem;
  color: var(--bfed-text-dark-2);
}

.bfed-footer__cookie-link {
  font-size: 0.8125rem;
  color: var(--bfed-text-dark-2);
  text-decoration: none;
  transition: color 200ms var(--bfed-ease);
}

.bfed-footer__cookie-link:hover {
  color: var(--bfed-accent);
}

.bfed-pricing-hero {
  padding-block: clamp(60px, 8vw, 96px);
  padding-top: 120px;
  background: var(--bfed-bg-surface);
  text-align: center;
}

.bfed-pricing-hero__inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-pricing-hero__h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--bfed-text-light-1);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.bfed-pricing-hero__sub {
  font-size: 1.0625rem;
  color: var(--bfed-text-light-2);
  line-height: 1.65;
}

.bfed-tiers {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-canvas);
}

.bfed-tiers__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  align-items: start;
}

.bfed-tier {
  border: 1px solid #dce6ef;
  border-radius: 10px;
  padding: 32px;
  background: var(--bfed-bg-canvas);
  display: flex;
  flex-direction: column;
}

.bfed-tier--featured {
  border-color: var(--bfed-accent);
  box-shadow: 0 0 0 1px var(--bfed-accent), 0 8px 32px rgba(16,197,168,0.1);
  position: relative;
}

.bfed-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bfed-accent);
  color: var(--bfed-bg-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.bfed-tier__name {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bfed-text-light-2);
  margin-bottom: 12px;
}

.bfed-tier__price {
  margin-bottom: 6px;
}

.bfed-tier__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  line-height: 1;
}

.bfed-tier__currency {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  color: var(--bfed-text-light-2);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.bfed-tier__period {
  font-size: 0.875rem;
  color: var(--bfed-text-light-2);
  margin-left: 4px;
}

.bfed-tier__custom {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
}

.bfed-tier__billing {
  font-size: 0.8125rem;
  color: var(--bfed-text-light-2);
  margin-bottom: 8px;
}

.bfed-tier__caps {
  font-size: 0.875rem;
  color: var(--bfed-accent-text);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dce6ef;
}

.bfed-tier__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.bfed-tier__feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--bfed-text-light-2);
}

.bfed-tier__feature-icon {
  flex-shrink: 0;
  color: var(--bfed-accent-text);
  margin-top: 1px;
}

.bfed-tier__positioning {
  font-size: 0.8125rem;
  color: var(--bfed-text-light-2);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.bfed-faq {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-surface);
}

.bfed-faq__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-faq__head {
  margin-bottom: 40px;
}

.bfed-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #dce6ef;
}

.bfed-faq__item {
  border-bottom: 1px solid #dce6ef;
}

.bfed-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bfed-text-light-1);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

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

.bfed-faq__chevron {
  flex-shrink: 0;
  color: var(--bfed-accent-text);
  transition: transform 250ms var(--bfed-ease);
}

.bfed-faq__item.is-open .bfed-faq__chevron {
  transform: rotate(180deg);
}

.bfed-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--bfed-ease);
}

.bfed-faq__item.is-open .bfed-faq__answer {
  max-height: 400px;
}

.bfed-faq__answer-inner {
  padding-bottom: 18px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--bfed-text-light-2);
}

.bfed-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-team-card {
  text-align: center;
}

.bfed-team-card__img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--bfed-bg-light-alt);
}

.bfed-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.bfed-team-card__name {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-bottom: 4px;
}

.bfed-team-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bfed-accent-text);
  margin-bottom: 12px;
}

.bfed-team-card__bio {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--bfed-text-light-2);
}

.bfed-contact-form-wrap {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

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

.bfed-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bfed-field__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bfed-text-light-1);
}

.bfed-field__input,
.bfed-field__select,
.bfed-field__textarea {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--bfed-text-light-1);
  background: var(--bfed-bg-canvas);
  border: 1px solid #c8d6e2;
  border-radius: 6px;
  padding: 10px 14px;
  transition: border-color 200ms var(--bfed-ease), box-shadow 200ms var(--bfed-ease);
  width: 100%;
}

.bfed-field__input:focus,
.bfed-field__select:focus,
.bfed-field__textarea:focus {
  outline: none;
  border-color: var(--bfed-accent-text);
  box-shadow: 0 0 0 3px rgba(10,112,96,0.12);
}

.bfed-field__input::placeholder,
.bfed-field__textarea::placeholder {
  color: #9ab0c4;
}

.bfed-field__textarea {
  resize: vertical;
  min-height: 120px;
}

.bfed-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bfed-blog-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-blog-featured-wrap {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  padding-block: var(--bfed-section-pad);
}

.bfed-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--bfed-bg-canvas);
  border: 1px solid #dce6ef;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 250ms var(--bfed-ease);
}

.bfed-blog-featured:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
}

.bfed-blog-featured__cover {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.bfed-blog-featured__body {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bfed-blog-featured__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bfed-accent-text);
  margin-bottom: 12px;
}

.bfed-blog-featured__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--bfed-text-light-1);
  line-height: 1.3;
  margin-bottom: 12px;
}

.bfed-blog-featured__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--bfed-text-light-2);
  margin-bottom: 20px;
  flex: 1;
}

.bfed-blog-featured__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--bfed-text-light-2);
}

.bfed-blog-card {
  display: block;
  border: 1px solid #dce6ef;
  border-radius: var(--bfed-radius);
  background: var(--bfed-bg-canvas);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 250ms var(--bfed-ease);
}

.bfed-blog-card:hover {
  box-shadow: 0 4px 20px rgba(13,27,42,0.08);
}

.bfed-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.bfed-blog-card__body {
  padding: 20px 22px 22px;
}

.bfed-blog-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bfed-accent-text);
  margin-bottom: 8px;
}

.bfed-blog-card__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  line-height: 1.4;
  margin-bottom: 8px;
}

.bfed-blog-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--bfed-text-light-2);
  margin-bottom: 14px;
}

.bfed-blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--bfed-text-light-2);
}

.bfed-article-hero {
  padding-block: clamp(60px, 8vw, 100px);
  padding-top: 120px;
  background: var(--bfed-bg-surface);
}

.bfed-article-hero__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-article-hero__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bfed-accent-text);
  margin-bottom: 16px;
}

.bfed-article-hero__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bfed-text-light-1);
  margin-bottom: 20px;
}

.bfed-article-hero__meta {
  display: flex;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--bfed-text-light-2);
}

.bfed-article-body-wrap {
  background: var(--bfed-bg-canvas);
  padding-block: clamp(40px, 6vw, 72px);
}

.bfed-article-cover {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 40px;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--bfed-radius);
}

.bfed-article-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bfed-text-light-2);
}

.bfed-article-content h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-top: 2.25em;
  margin-bottom: 0.75em;
  letter-spacing: -0.015em;
}

.bfed-article-content h3 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-top: 1.75em;
  margin-bottom: 0.6em;
}

.bfed-article-content p {
  margin-bottom: 1.25em;
}

.bfed-article-content ul {
  padding-left: 1.5em;
  list-style: disc;
  margin-bottom: 1.25em;
}

.bfed-article-content ol {
  padding-left: 1.5em;
  list-style: decimal;
  margin-bottom: 1.25em;
}

.bfed-article-content li {
  margin-bottom: 0.5em;
}

.bfed-article-content blockquote {
  border-left: 3px solid var(--bfed-accent-text);
  padding-left: 1.25em;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--bfed-text-light-2);
}

.bfed-article-content pre {
  background: var(--bfed-bg-deep);
  color: var(--bfed-text-dark-1);
  padding: 20px 24px;
  border-radius: var(--bfed-radius);
  overflow-x: auto;
  margin: 1.5em 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

.bfed-article-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875em;
  background: var(--bfed-bg-light-alt);
  color: var(--bfed-accent-text);
  padding: 2px 6px;
  border-radius: 4px;
}

.bfed-article-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
}

.bfed-article-related {
  background: var(--bfed-bg-surface);
  padding-block: var(--bfed-section-pad);
}

.bfed-article-related__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-article-related__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-bottom: 24px;
}

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

.bfed-docs-hero {
  padding-block: clamp(60px, 8vw, 96px);
  padding-top: 120px;
  background: var(--bfed-bg-deep);
  color: var(--bfed-text-dark-1);
}

.bfed-docs-hero__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bfed-docs-hero__h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--bfed-text-dark-1);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.bfed-docs-hero__sub {
  font-size: 1.0625rem;
  color: var(--bfed-text-dark-2);
  line-height: 1.65;
}

.bfed-docs-quickstart {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-surface);
}

.bfed-docs-quickstart__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-quicksteps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.bfed-quickstep {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bfed-quickstep__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bfed-accent-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
}

.bfed-quickstep__body {
  flex: 1;
}

.bfed-quickstep__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-bottom: 6px;
}

.bfed-quickstep__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--bfed-text-light-2);
}

.bfed-docs-api {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-light-alt);
}

.bfed-docs-api__inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-endpoints {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bfed-endpoint {
  background: var(--bfed-bg-canvas);
  border: 1px solid #dce6ef;
  border-radius: var(--bfed-radius);
  overflow: hidden;
}

.bfed-endpoint__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #dce6ef;
}

.bfed-endpoint__method {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.bfed-endpoint__method--get {
  background: rgba(10,112,96,0.12);
  color: var(--bfed-accent-text);
}

.bfed-endpoint__method--post {
  background: rgba(245,158,11,0.12);
  color: #92580a;
}

.bfed-endpoint__path {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--bfed-text-light-1);
}

.bfed-endpoint__body {
  padding: 16px 20px;
  font-size: 0.9375rem;
  color: var(--bfed-text-light-2);
  line-height: 1.6;
}

.bfed-code-block {
  background: var(--bfed-bg-deep);
  border-radius: var(--bfed-radius);
  overflow: hidden;
  margin-top: 24px;
}

.bfed-code-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bfed-border-dim);
}

.bfed-code-block__lang {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bfed-text-dark-2);
}

.bfed-code-block pre {
  margin: 0;
  padding: 20px 24px;
  overflow-x: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  background: none;
  color: var(--bfed-text-dark-1);
}

.bfed-code-block .syn-key { color: var(--bfed-accent); }
.bfed-code-block .syn-val { color: var(--bfed-solar); }
.bfed-code-block .syn-str { color: #a8e6cf; }
.bfed-code-block .syn-num { color: var(--bfed-solar); }
.bfed-code-block .syn-comment { color: var(--bfed-text-dark-2); }

.bfed-auth-wrap {
  min-height: 100vh;
  background: var(--bfed-bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(16px, 4vw, 40px);
}

.bfed-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bfed-bg-mid);
  border: 1px solid var(--bfed-border-bright);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 48px);
}

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

.bfed-auth-logo img {
  height: 36px;
  width: auto;
}

.bfed-auth-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bfed-text-dark-1);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bfed-auth-sub {
  font-size: 0.9375rem;
  color: var(--bfed-text-dark-2);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.bfed-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bfed-auth-field__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bfed-text-dark-1);
}

.bfed-auth-field__input {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--bfed-text-dark-1);
  background: rgba(13,27,42,0.6);
  border: 1px solid var(--bfed-border-bright);
  border-radius: 6px;
  padding: 11px 14px;
  transition: border-color 200ms var(--bfed-ease), box-shadow 200ms var(--bfed-ease);
  width: 100%;
}

.bfed-auth-field__input::placeholder {
  color: var(--bfed-text-dark-2);
  opacity: 0.6;
}

.bfed-auth-field__input:focus {
  outline: none;
  border-color: var(--bfed-accent);
  box-shadow: 0 0 0 3px rgba(16,197,168,0.15);
}

.bfed-auth-submit {
  width: 100%;
  padding: 13px;
  background: var(--bfed-accent);
  color: var(--bfed-bg-deep);
  border: none;
  border-radius: 6px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms var(--bfed-ease);
  margin-top: 8px;
}

.bfed-auth-submit:hover {
  background: #0dac92;
}

.bfed-auth-links {
  margin-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--bfed-text-dark-2);
  line-height: 1.6;
}

.bfed-auth-links a {
  color: var(--bfed-accent);
  text-decoration: none;
  font-weight: 500;
}

.bfed-auth-links a:hover {
  text-decoration: underline;
}

.bfed-auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
  color: var(--bfed-text-dark-2);
  font-size: 0.875rem;
}

.bfed-auth-divider::before,
.bfed-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bfed-border-dim);
}

.bfed-auth-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--bfed-border-dim);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--bfed-text-dark-2);
  line-height: 1.6;
}

.bfed-auth-footer a {
  color: var(--bfed-text-dark-2);
  text-decoration: underline;
  text-decoration-color: var(--bfed-border-bright);
}

.bfed-auth-footer a:hover {
  color: var(--bfed-text-dark-1);
}

.bfed-legal-page {
  background: var(--bfed-bg-canvas);
}

.bfed-legal-hero {
  padding-block: clamp(48px, 7vw, 80px);
  padding-top: 100px;
  background: var(--bfed-bg-surface);
}

.bfed-legal-hero__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-legal-hero__h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--bfed-text-light-1);
  letter-spacing: -0.02em;
}

.bfed-legal-hero__date {
  font-size: 0.875rem;
  color: var(--bfed-text-light-2);
  margin-top: 10px;
}

.bfed-legal-content {
  background: var(--bfed-bg-canvas);
  padding-block: clamp(40px, 6vw, 72px);
}

.bfed-legal-body {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--bfed-text-light-2);
}

.bfed-legal-body h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bfed-text-light-1);
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.bfed-legal-body p {
  margin-bottom: 1em;
}

.bfed-legal-body ul {
  padding-left: 1.5em;
  list-style: disc;
  margin-bottom: 1em;
}

.bfed-legal-body li {
  margin-bottom: 0.4em;
}

.bfed-legal-footer {
  padding-block: var(--bfed-section-pad);
  background: var(--bfed-bg-surface);
}

.bfed-platform-detail {
  padding-block: var(--bfed-section-pad);
}

.bfed-platform-detail__inner {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bfed-platform-detail--reverse .bfed-platform-detail__inner {
  direction: rtl;
}

.bfed-platform-detail--reverse .bfed-platform-detail__inner > * {
  direction: ltr;
}

.bfed-platform-detail__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bfed-section--light .bfed-platform-detail__heading,
.bfed-section--light-alt .bfed-platform-detail__heading,
.bfed-section--white .bfed-platform-detail__heading {
  color: var(--bfed-text-light-1);
}

.bfed-section--dark .bfed-platform-detail__heading,
.bfed-section--dark-alt .bfed-platform-detail__heading {
  color: var(--bfed-text-dark-1);
}

.bfed-platform-detail__body {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.bfed-section--light .bfed-platform-detail__body,
.bfed-section--light-alt .bfed-platform-detail__body,
.bfed-section--white .bfed-platform-detail__body {
  color: var(--bfed-text-light-2);
}

.bfed-section--dark .bfed-platform-detail__body,
.bfed-section--dark-alt .bfed-platform-detail__body {
  color: var(--bfed-text-dark-2);
}

.bfed-dispatch-mock {
  background: var(--bfed-bg-deep);
  border: 1px solid var(--bfed-border-bright);
  border-radius: 10px;
  overflow: hidden;
  padding: 24px;
}

.bfed-dispatch-mock__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bfed-text-dark-2);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.bfed-integrations-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.bfed-integration-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bfed-bg-canvas);
  border: 1px solid #dce6ef;
  border-radius: var(--bfed-radius);
}

.bfed-integration-item--dark {
  background: rgba(13,27,42,0.4);
  border: 1px solid var(--bfed-border-dim);
}

.bfed-integration-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bfed-integration-item__icon--teal {
  background: rgba(16,197,168,0.12);
  color: var(--bfed-accent);
}

.bfed-integration-item__icon--solar {
  background: rgba(245,158,11,0.12);
  color: var(--bfed-solar);
}

.bfed-integration-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bfed-text-light-1);
  margin-bottom: 4px;
}

.bfed-integration-item--dark .bfed-integration-item__title {
  color: var(--bfed-text-dark-1);
}

.bfed-integration-item__detail {
  font-size: 0.875rem;
  color: var(--bfed-text-light-2);
  line-height: 1.5;
}

.bfed-integration-item--dark .bfed-integration-item__detail {
  color: var(--bfed-text-dark-2);
}

.bfed-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  align-items: start;
}

.bfed-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bfed-contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bfed-contact-detail__icon {
  flex-shrink: 0;
  color: var(--bfed-accent-text);
  margin-top: 2px;
}

.bfed-contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bfed-text-light-2);
  margin-bottom: 4px;
}

.bfed-contact-detail__value {
  font-size: 0.9375rem;
  color: var(--bfed-text-light-1);
  line-height: 1.5;
}

.bfed-contact-detail__value a {
  color: var(--bfed-accent-text);
  text-decoration: none;
}

.bfed-contact-detail__value a:hover {
  text-decoration: underline;
}

.bfed-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms var(--bfed-ease), transform 400ms var(--bfed-ease);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bfed-bg-mid);
  border-top: 1px solid var(--bfed-border-bright);
  padding: 16px 24px;
}

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

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--bfed-text-dark-2);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--bfed-accent);
  text-decoration: underline;
}

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

.cookie-banner__btn {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 200ms var(--bfed-ease), color 200ms var(--bfed-ease);
}

.cookie-banner__btn--primary {
  background: var(--bfed-accent);
  color: var(--bfed-bg-deep);
  border: 2px solid var(--bfed-accent);
}

.cookie-banner__btn--primary:hover {
  background: #0dac92;
  border-color: #0dac92;
  color: var(--bfed-bg-deep);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--bfed-text-dark-1);
  border: 2px solid var(--bfed-border-bright);
}

.cookie-banner__btn--secondary:hover {
  border-color: var(--bfed-text-dark-2);
  color: var(--bfed-text-dark-1);
}

.bfed-mission-block {
  max-width: 720px;
}

.bfed-mission-block__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--bfed-text-light-2);
}

.bfed-mission-block__text strong {
  color: var(--bfed-text-light-1);
  font-weight: 600;
}

.bfed-japan-context {
  max-width: var(--bfed-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.bfed-japan-context__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.bfed-japan-context__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--bfed-text-light-2);
}

.bfed-japan-context__text p {
  margin-bottom: 1em;
}

.bfed-japan-stat-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bfed-japan-stat {
  padding: 18px 22px;
  background: var(--bfed-bg-canvas);
  border-radius: var(--bfed-radius);
  border-left: 3px solid var(--bfed-accent-text);
}

.bfed-japan-stat__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--bfed-accent-text);
  margin-bottom: 4px;
}

.bfed-japan-stat__label {
  font-size: 0.875rem;
  color: var(--bfed-text-light-2);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .bfed-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bfed-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 100px 60px;
  }

  .bfed-hero__mock {
    max-width: 480px;
  }

  .bfed-tiers__inner {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .bfed-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bfed-nav__links,
  .bfed-nav__actions {
    display: none;
  }

  .bfed-nav__hamburger {
    display: flex;
  }

  .bfed-nav__mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bfed-bg-deep);
    border-bottom: 1px solid var(--bfed-border-dim);
    padding: 16px clamp(16px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 300ms var(--bfed-ease);
    z-index: 899;
  }

  .bfed-nav__mobile-menu.is-open {
    transform: translateY(0);
  }

  .bfed-nav__mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bfed-text-dark-1);
    padding: 12px 0;
    border-bottom: 1px solid var(--bfed-border-dim);
    text-decoration: none;
  }

  .bfed-nav__mobile-link:last-child {
    border-bottom: none;
  }

  .bfed-nav__mobile-actions {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .bfed-grid-problem__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bfed-how__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bfed-how__steps::before {
    display: none;
  }

  .bfed-step {
    align-items: flex-start;
    text-align: left;
    padding: 0;
    flex-direction: row;
    gap: 16px;
  }

  .bfed-step__num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .bfed-step__text {
    flex: 1;
  }

  .bfed-testimonial__inner {
    grid-template-columns: 1fr;
  }

  .bfed-subhero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bfed-platform-detail__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bfed-platform-detail--reverse .bfed-platform-detail__inner {
    direction: ltr;
  }

  .bfed-docs-hero__inner {
    grid-template-columns: 1fr;
  }

  .bfed-tiers__inner {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .bfed-team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .bfed-blog-cards {
    grid-template-columns: 1fr;
  }

  .bfed-blog-featured {
    grid-template-columns: 1fr;
  }

  .bfed-blog-featured__body {
    padding: 24px;
  }

  .bfed-form-row {
    grid-template-columns: 1fr;
  }

  .bfed-contact-grid {
    grid-template-columns: 1fr;
  }

  .bfed-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bfed-related-cards {
    grid-template-columns: 1fr;
  }

  .bfed-japan-context__body {
    grid-template-columns: 1fr;
  }

  .bfed-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .bfed-footer__grid {
    grid-template-columns: 1fr;
  }

  .bfed-hero__h1 {
    font-size: 2rem;
  }
}

.bfed-auth-page {
  background: var(--bfed-bg-deep);
  min-height: 100vh;
}

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

.bfed-auth-card__logo img {
  height: 36px;
  width: auto;
}

.bfed-auth-card__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bfed-text-dark-1);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bfed-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--bfed-text-dark-2);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.bfed-auth-card__switch {
  margin-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--bfed-text-dark-2);
  line-height: 1.6;
}

.bfed-auth-card__link {
  color: var(--bfed-accent);
  text-decoration: none;
  font-weight: 500;
}

.bfed-auth-card__link:hover {
  text-decoration: underline;
}

.bfed-auth-card__legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--bfed-border-dim);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--bfed-text-dark-2);
  line-height: 1.6;
}

.bfed-btn--full {
  width: 100%;
  text-align: center;
  display: block;
}

.bfed-eyebrow--light {
  color: var(--bfed-accent);
}

.bfed-code-inline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--bfed-accent);
  background: rgba(16,197,168,0.1);
  border-radius: 4px;
  padding: 2px 6px;
}

.bfed-auth-page .bfed-field__label {
  color: var(--bfed-text-dark-1);
}

.bfed-blog-featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bfed-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
