:root {
  --bc-orange: #fa5000;
  --bc-orange-dark: #c73f00;
  --bc-ink: #0b1b33;
  --bc-muted: #5f6572;
  --bc-cream: #fff8f2;
  --bc-card: rgba(255, 255, 255, 0.88);
  --bc-border: rgba(11, 27, 51, 0.1);
  --bc-green: #2f7d4a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(250, 80, 0, 0.12), transparent 34rem),
    radial-gradient(circle at 0% 18%, rgba(47, 125, 74, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 42%, #fff8f2 100%);
  color: var(--bc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.back-link {
  color: var(--bc-muted);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 48px;
}

.hero-card {
  border: 1px solid rgba(250, 80, 0, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 90px rgba(11, 27, 51, 0.09);
  overflow: hidden;
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(250, 80, 0, 0.1);
  color: var(--bc-orange-dark);
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(2.45rem, 7vw, 5.2rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--bc-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.section {
  padding: 54px 0;
}

.section.soft {
  background: rgba(255, 255, 255, 0.56);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  border: 1px solid var(--bc-border);
  border-radius: 28px;
  background: var(--bc-card);
  padding: 26px;
  box-shadow: 0 18px 54px rgba(11, 27, 51, 0.06);
}

.card.featured {
  background:
    radial-gradient(circle at 90% 0%, rgba(250, 80, 0, 0.12), transparent 18rem),
    #ffffff;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.article-card p,
.card p {
  color: var(--bc-muted);
}

.meta {
  color: var(--bc-orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  border: 1px solid rgba(250, 80, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--bc-ink);
  padding: 8px 13px;
  font-weight: 750;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 17px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 900;
}

.btn.primary {
  background: var(--bc-orange);
  color: #fff;
  box-shadow: 0 16px 32px rgba(250, 80, 0, 0.24);
}

.btn.secondary {
  border: 1px solid rgba(250, 80, 0, 0.24);
  background: #fff;
  color: var(--bc-orange-dark);
}

.content {
  width: min(790px, 100%);
}

.content p {
  color: #303849;
  font-size: 1.06rem;
}

.content ul,
.content ol {
  color: #303849;
  padding-left: 1.3rem;
}

.content li {
  margin: 10px 0;
}

.answer-box {
  border-left: 5px solid var(--bc-orange);
  border-radius: 24px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: 0 18px 54px rgba(11, 27, 51, 0.06);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.mini-card {
  border: 1px solid rgba(11, 27, 51, 0.08);
  border-radius: 24px;
  background: #fff;
  padding: 20px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--bc-muted);
  font-size: 0.95rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--bc-orange-dark);
  font-weight: 800;
}

.site-footer {
  margin-top: 50px;
  border-top: 1px solid rgba(11, 27, 51, 0.08);
  padding: 30px 0 44px;
  color: var(--bc-muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.site-footer a {
  color: var(--bc-muted);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, 680px);
  }

  .topbar {
    padding: 18px 0;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    display: block;
    padding: 34px 0 32px;
  }

  .hero-card {
    margin-top: 26px;
    border-radius: 28px;
  }

  .grid.two,
  .grid.three,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 38px 0;
  }

  .card {
    border-radius: 24px;
    padding: 22px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
