:root {
  --bd-ink: #f2eef2;
  --bd-ink-soft: rgba(237, 231, 240, 0.82);
  --bd-ink-muted: rgba(221, 214, 228, 0.64);
  --bd-accent: #f3a164;
  --sp-ink: #f2eef2;
  --sp-ink-soft: rgba(237, 231, 240, 0.82);
  --sp-accent: #f3a164;
  --bd-bg: #100d21;
  --bd-panel: #18132b;
  --bd-panel-soft: #201a36;
  --bd-border: rgba(255, 255, 255, 0.12);
}

@font-face {
  font-family: "The Seasons Bold";
  src: url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.eot");
  src:
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/f7d34c9e4c3102c89048d775c27a78f3.svg#The Seasons Bold")
      format("svg");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--bd-ink);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 174, 112, 0.14),
      transparent 40%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(73, 116, 255, 0.12),
      transparent 42%
    ),
    var(--bd-bg);
}

.bd-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 34px;
}

.bd-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--bd-border);
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(23, 19, 40, 0.72);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 12px;
  z-index: 20;
}

.bd-brand {
  color: var(--bd-ink);
  text-decoration: none;
  font-family: "The Seasons Bold", serif;
  font-size: 28px;
  letter-spacing: -0.01em;
}

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

.bd-nav a {
  color: var(--bd-ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.bd-nav a:hover {
  color: var(--bd-ink);
}

.bd-top-cta,
.bd-primary-btn {
  border: 1px solid rgba(255, 186, 129, 0.55);
  color: #fff9f3;
  text-decoration: none;
  background:
    radial-gradient(
      120% 120% at 10% 5%,
      rgba(255, 171, 108, 0.38),
      rgba(38, 31, 63, 0.7)
    ),
    rgba(22, 20, 39, 0.75);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "The Seasons Bold", serif;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bd-top-cta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 15px;
}

.bd-primary-btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 17px;
}

.bd-top-cta:hover,
.bd-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 167, 99, 0.22);
}

.bd-kicker {
  margin: 0;
  color: rgba(247, 167, 94, 0.95);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
}

.bd-hero {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.bd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 186, 131, 0.12), transparent 42%),
    linear-gradient(320deg, rgba(98, 149, 255, 0.14), transparent 44%);
  pointer-events: none;
}

.bd-hero h1 {
  margin: 16px 0 0;
  max-width: 12ch;
  font-family: "The Seasons Bold", serif;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.018em;
  position: relative;
}

.bd-hero-sub {
  margin: 22px 0 0;
  max-width: 60ch;
  color: var(--bd-ink-soft);
  line-height: 1.6;
  font-size: 18px;
  position: relative;
}

.bd-hero .bd-primary-btn {
  margin-top: 28px;
  position: relative;
}

.bd-intro {
  padding: 42px 38px;
}

.bd-intro h2 {
  margin: 0;
  font-family: "The Seasons Bold", serif;
  font-size: 42px;
  line-height: 0.98;
  max-width: 14ch;
}

.bd-intro-lead {
  margin: 14px 0 0;
  color: rgba(247, 167, 94, 0.95);
  font-size: 30px;
  font-family: "The Seasons Bold", serif;
}

.bd-questions {
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(255, 172, 109, 0.1), rgba(25, 20, 41, 0.92)),
    rgba(19, 16, 33, 0.88);
}

.bd-questions h2 {
  margin: 0;
  font-family: "The Seasons Bold", serif;
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.bd-questions ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bd-questions li {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(25, 20, 42, 0.82);
  color: var(--bd-ink-soft);
}

.bd-define-grid {
  margin-top: 22px;
}

.bd-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: var(--bd-panel);
  padding: 20px;
}

.bd-card h3 {
  margin: 0;
  font-family: "The Seasons Bold", serif;
  font-size: 26px;
  line-height: 1;
}

.bd-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--bd-ink-soft);
  line-height: 1.55;
}

.bd-card li + li {
  margin-top: 7px;
}

.bd-signs-list {
  margin: 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bd-panel-soft);
  list-style: none;
  display: grid;
  gap: 11px;
}

.bd-signs-list li {
  color: var(--bd-ink-soft);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
}

.bd-signs-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: rgba(247, 167, 94, 0.95);
  box-shadow: 0 0 16px rgba(247, 167, 94, 0.5);
}

.bd-process-grid {
  margin-top: 22px;
}

.bd-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: var(--bd-panel);
  padding: 20px;
}

.bd-step-num {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(247, 167, 94, 0.95);
}

.bd-step h3 {
  margin: 10px 0 0;
  font-family: "The Seasons Bold", serif;
  font-size: 28px;
  line-height: 1;
}

.bd-step p {
  margin: 12px 0 0;
  color: var(--bd-ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

.bd-deliverables-grid {
  margin-top: 18px;
}

.bd-deliverables-grid p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bd-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--bd-ink-soft);
}

.bd-final-cta {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 52px;
  background:
    linear-gradient(150deg, rgba(245, 164, 101, 0.12), rgba(22, 19, 39, 0.92)),
    rgba(18, 15, 32, 0.88);
}

.bd-final-cta p {
  margin: 18px auto 0;
  max-width: 56ch;
  color: var(--bd-ink-soft);
  line-height: 1.6;
}

.bd-final-cta .bd-primary-btn {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .bd-hero,
  .bd-intro,
  .bd-questions,
  .bd-define,
  .bd-process,
  .bd-deliverables,
  .bd-why,
  .bd-final-cta,
  .bd-signs {
    padding: 26px 20px;
  }

  .bd-intro h2,
  .bd-questions h2,
  .bd-define h2,
  .bd-process h2,
  .bd-deliverables h2,
  .bd-why h2,
  .bd-final-cta h2,
  .bd-signs h2 {
    font-size: 33px;
  }

  .bd-define-grid,
  .bd-questions ul,
  .bd-deliverables-grid,
  .bd-process-grid {
    grid-template-columns: 1fr;
  }
}
