/* Burn One product zone */
:root {
  --bo-bg: #0a0a0b;
  --bo-card: #17171a;
  --bo-border: rgba(255, 255, 255, 0.08);
  --bo-text: #f5f2eb;
  --bo-muted: #9a9ea6;
  --bo-flame: #fa8548;
  --bo-laser: #f24059;
  --bo-teal: #6bc7b8;
  --bo-cream: #f5f2eb;
  --bo-display: "Orbitron", system-ui, sans-serif;
  --bo-body: "Nunito", system-ui, sans-serif;
}

body.burn-one {
  font-family: var(--bo-body);
  background: var(--bo-bg);
  color: var(--bo-text);
}

.bo-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(242, 64, 89, 0.18), transparent 55%),
    radial-gradient(700px 420px at 10% 110%, rgba(107, 199, 184, 0.14), transparent 50%),
    var(--bo-bg);
}

.bo-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bo-nav {
  width: min(100% - 2rem, 68rem);
  margin: 0.85rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--bo-border);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
}

.bo-nav a {
  color: var(--bo-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.bo-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--bo-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bo-text);
}

.bo-nav .brand-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 22.5%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.bo-nav .pill {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--bo-teal);
  color: #081512;
  font-weight: 750;
}

.bo-hero {
  width: min(100% - 2rem, 68rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 4.5rem) 0 2.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .bo-hero {
    grid-template-columns: 1.05fr 1fr;
  }
}

.bo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-family: var(--bo-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bo-teal);
}

.bo-kicker img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 22.5%;
}

.bo-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--bo-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.bo-hero .lede {
  margin: 0 0 1.5rem;
  color: var(--bo-muted);
  font-size: 1.08rem;
  max-width: 36rem;
}

.bo-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.95rem;
}

.bo-btn-flame {
  background: linear-gradient(135deg, var(--bo-flame), var(--bo-laser));
  color: #140804;
}

.bo-btn-ghost {
  border: 1px solid var(--bo-border);
  color: var(--bo-text);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 767px) {
  .bo-btn-row {
    flex-direction: column;
  }
  .bo-btn {
    width: 100%;
  }
}

/* App icon as the hero visual */
.bo-object {
  justify-self: center;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.bo-app-icon {
  width: min(100%, 20rem);
  height: auto;
  border-radius: 22.5%;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(250, 133, 72, 0.18);
  animation: bo-icon-float 6s var(--ease, ease-in-out) infinite;
}

@keyframes bo-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .bo-app-icon {
    animation: none;
  }
}

.bo-steps {
  width: min(100% - 2rem, 68rem);
  margin: 0 auto 4rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.1rem;
  background: var(--bo-cream);
  color: #1c1a18;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.bo-steps::before {
  content: "";
  position: absolute;
  left: 2.4rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(209, 77, 87, 0.35);
}

.bo-steps h2 {
  margin: 0 0 0.85rem;
  font-family: var(--bo-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6460;
}

.bo-steps ol {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: none;
  counter-reset: step;
}

.bo-steps li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  font-weight: 650;
  counter-increment: step;
}

.bo-steps li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  font-family: var(--bo-display);
  font-size: 0.85rem;
  color: var(--bo-laser);
}

.bo-footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid var(--bo-border);
  color: var(--bo-muted);
  font-size: 0.88rem;
}

.bo-footer .wrap {
  width: min(100% - 2rem, 68rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.bo-footer a:hover {
  color: var(--bo-teal);
}

.bo-legal {
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.bo-legal h1 {
  font-family: var(--bo-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.bo-legal .meta {
  color: var(--bo-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.bo-legal h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
}

.bo-legal p,
.bo-legal li {
  color: var(--bo-muted);
  font-size: 0.98rem;
}

.bo-contact .lede {
  color: var(--bo-text);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.bo-mailto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--bo-teal);
  color: #081512 !important;
  font-weight: 750;
  font-size: 1.05rem;
  word-break: break-all;
}

.bo-mailto:hover {
  filter: brightness(1.06);
}
