/* ==========================================================
   Dojo NodachiLab — Home Beta
   Código leve, sem frameworks, responsivo e pronto para evoluir.
   Edite cores principais em :root.
   ========================================================== */

:root {
  --bg: #080706;
  --bg-2: #0f0d0b;
  --surface: rgba(23, 21, 18, 0.86);
  --surface-2: rgba(34, 30, 26, 0.92);
  --line: rgba(255, 168, 48, 0.16);
  --line-strong: rgba(255, 168, 48, 0.34);
  --text: #f6efe5;
  --muted: #b8afa1;
  --muted-2: #81776a;
  --brand: #ff9f1a;
  --brand-2: #e03122;
  --gold: #ffd166;
  --purple: #7a3cff;
  --green: #19d982;
  --blue: #48b8ff;
  --danger: #ff4d5a;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 112, 18, 0.12), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(112, 57, 255, 0.10), transparent 35rem),
    linear-gradient(180deg, #090806 0%, #0d0b09 48%, #080706 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: 76px 0;
}

.skip-link {
  position: absolute;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #120d08;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Header */

.dojo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 159, 26, .32), rgba(224, 49, 34, .26)),
    #15110d;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  box-shadow: 0 0 28px rgba(255, 159, 26, .18);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--brand);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-pill {
  color: var(--gold) !important;
  border: 1px solid var(--line);
  background: rgba(255, 159, 26, 0.08);
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.lang-switch button {
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .82rem;
  font-weight: 900;
}

.lang-switch button.active {
  color: #140b02;
  background: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

/* Hero */

.hero {
  padding-top: 94px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr);
  align-items: center;
  gap: 34px;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "◆";
  font-size: .72rem;
  color: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  max-width: 820px;
  margin-top: 14px;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  letter-spacing: -.065em;
  text-shadow: 0 0 50px rgba(255, 159, 26, .15);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #150d03;
  background: linear-gradient(135deg, var(--brand), #ffcf6a);
  box-shadow: 0 14px 28px rgba(255, 159, 26, .22);
}

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

.btn-full {
  width: 100%;
  color: #fff6df;
  background: linear-gradient(135deg, #8a1e18, #6023b7);
  border: 1px solid rgba(255,255,255,.10);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats dt {
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 1000;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(122, 60, 255, .28), transparent 14rem),
    radial-gradient(circle at 14% 8%, rgba(255, 159, 26, .22), transparent 12rem),
    linear-gradient(160deg, rgba(28, 22, 18, .92), rgba(15, 13, 12, .94));
  box-shadow: var(--shadow);
}

.panel-glow {
  position: absolute;
  inset: auto -50px -70px auto;
  width: 180px;
  height: 180px;
  background: rgba(255, 159, 26, .18);
  filter: blur(40px);
  border-radius: 50%;
}

.hero-panel h2 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  letter-spacing: -.04em;
}

.hero-panel p {
  color: var(--muted);
  margin: 16px 0 24px;
}

.tool-badge,
.card-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tool-badge.ready,
.card-status.ready {
  color: #04150d;
  background: rgba(25, 217, 130, .95);
}

.tool-badge.beta,
.card-status.beta {
  color: #170f02;
  background: #ffd166;
}

.tool-badge.dev,
.card-status.dev {
  color: #ffe4c2;
  background: rgba(255, 159, 26, .14);
  border: 1px solid rgba(255, 159, 26, .24);
}

.tool-badge.future,
.card-status.future {
  color: #d9ccff;
  background: rgba(122, 60, 255, .18);
  border: 1px solid rgba(122, 60, 255, .28);
}

/* Tools */

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  letter-spacing: -.052em;
}

.section-head p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  margin-bottom: 18px;
}

.search-box,
.select-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.search-box input,
.select-box select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
  padding: 0 14px;
}

.search-box input:focus,
.select-box select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 159, 26, .12);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--surface);
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 84% 14%, var(--card-glow, rgba(255,159,26,.15)), transparent 12rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.03)),
    var(--surface);
}

.tool-card a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  font-size: 1.55rem;
}

.tool-card h3 {
  margin: 22px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.card-category {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.card-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 159, 26, .12);
  color: var(--brand);
}

.no-results {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

/* Sidebar */

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}

.side-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(122, 60, 255, .16), transparent 11rem),
    var(--surface);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.side-card h3 {
  margin: 10px 0 8px;
  font-size: 1.55rem;
}

.side-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.side-card a {
  color: var(--gold);
  font-weight: 900;
}

.side-card.subtle {
  background: rgba(255,255,255,.035);
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.status-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.ready { background: var(--green); }
.dot.beta { background: var(--gold); }
.dot.dev { background: var(--brand); }

/* Guides */

.guides-section {
  background: linear-gradient(180deg, transparent, rgba(255, 159, 26, .035), transparent);
}

.guides-list {
  max-width: 920px;
  margin: 30px auto 0;
  display: grid;
  gap: 11px;
}

.guide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.guide-link:hover {
  transform: translateX(5px);
  border-color: var(--line-strong);
  background: rgba(255, 159, 26, .06);
}

.guide-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-emoji {
  font-size: 1.18rem;
}

.guide-title {
  color: var(--brand);
  font-weight: 1000;
}

.guide-arrow {
  color: var(--muted);
}

/* Roadmap */

.roadmap-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 159, 26, .13), transparent 18rem),
    radial-gradient(circle at 90% 20%, rgba(122, 60, 255, .14), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.roadmap-card h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.052em;
}

.roadmap-card p {
  color: var(--muted);
}

.roadmap-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: roadmap;
}

.roadmap-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.15);
}

.roadmap-list li::before {
  counter-increment: roadmap;
  content: counter(roadmap);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #120d08;
  font-weight: 1000;
  background: var(--brand);
}

.roadmap-list strong {
  display: block;
}

.roadmap-list span {
  color: var(--muted);
  font-size: .92rem;
}

/* Footer */

.dojo-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 26px;
  background: rgba(0, 0, 0, .26);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(150px, .45fr));
  gap: 28px;
}

.footer-brand {
  color: var(--gold);
  font-size: 1.1rem;
}

.dojo-footer p,
.dojo-footer small {
  color: var(--muted);
}

.dojo-footer h3 {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dojo-footer nav {
  display: grid;
  gap: 8px;
}

.dojo-footer a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Responsive */

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 10, 8, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 14px;
  }

  .hero-grid,
  .page-layout,
  .roadmap-card {
    grid-template-columns: 1fr;
  }

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

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .section-pad {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .lang-switch button {
    padding: 6px 8px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-stats,
  .toolbar,
  .sidebar,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.1rem);
  }
}

/* ==========================================================
   Dojo NodachiLab — Sidebar Promos
   Instagram / Discord / Guilda BNC
   ========================================================== */

.dojo-sidebar-promos {
  display: grid;
  gap: 14px;
}

.dojo-promo-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 159, 26, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(23, 21, 18, 0.94), rgba(10, 9, 8, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.dojo-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 154, 45, 0.18) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.11;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.dojo-promo-card > * {
  position: relative;
  z-index: 2;
}

.promo-icon {
  position: absolute;
  right: 15px;
  top: 12px;
  z-index: 1;
  font-size: 54px;
  opacity: 0.10;
  transform: rotate(-10deg);
  pointer-events: none;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  margin-bottom: 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 1;
  background: rgba(255, 159, 26, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(255, 159, 26, 0.85);
}

.dojo-promo-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.38rem;
  font-weight: 1000;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.dojo-promo-card p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.promo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 42px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #fff6df !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 1000;
  text-align: center;
  border: 1px solid rgba(255, 159, 26, 0.26);
  background: linear-gradient(90deg, rgba(255, 159, 26, 0.82), rgba(122, 60, 255, 0.72));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 14px 28px rgba(255, 159, 26, 0.18);
}

.promo-btn strong {
  display: inline-flex;
  transition: transform 0.18s ease;
}

.promo-btn:hover strong {
  transform: translateX(3px);
}

/* Instagram */

.promo-instagram {
  background:
    radial-gradient(circle at top right, rgba(255, 46, 137, 0.24), transparent 44%),
    radial-gradient(circle at bottom left, rgba(120, 44, 255, 0.22), transparent 48%),
    linear-gradient(180deg, #18111d 0%, #0d0d10 100%);
}

.promo-instagram .promo-badge {
  background: linear-gradient(90deg, #7b1fa2, #e91e63);
}

.promo-instagram .promo-badge::before {
  background: #ff7ac4;
  box-shadow: 0 0 12px rgba(255, 122, 196, 0.9);
}

.promo-instagram .promo-btn {
  background: linear-gradient(90deg, #e91e63, #5b1fc4);
}

/* Discord */

.promo-discord {
  background:
    radial-gradient(circle at top right, rgba(88, 101, 242, 0.28), transparent 44%),
    radial-gradient(circle at bottom left, rgba(255, 140, 0, 0.14), transparent 48%),
    linear-gradient(180deg, #121626 0%, #0d0d10 100%);
}

.promo-discord .promo-badge {
  background: linear-gradient(90deg, #5865f2, #7b2cff);
}

.promo-discord .promo-badge::before {
  background: #9ea7ff;
  box-shadow: 0 0 12px rgba(158, 167, 255, 0.95);
}

.promo-discord .promo-btn {
  background: linear-gradient(90deg, #5865f2, #411c8f);
}

/* Guilda BNC */

.promo-bnc {
  padding: 2px;
  border: 0;
  background: linear-gradient(135deg, #ff8a00 0%, #ffb347 28%, #6f3200 55%, #ff8a00 100%);
  isolation: isolate;
}

.promo-bnc::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -2;
  background: conic-gradient(
    from 20deg,
    transparent,
    rgba(255, 144, 0, 0.34),
    transparent 22%,
    transparent 60%,
    rgba(255, 185, 85, 0.20),
    transparent 82%
  );
  animation: dojoBncRotate 12s linear infinite;
}

.promo-bnc::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 134, 0, 0.22), transparent 42%),
    radial-gradient(circle at 100% 70%, rgba(255, 94, 0, 0.10), transparent 45%),
    linear-gradient(160deg, #17110d 0%, #0c0b0a 48%, #160d07 100%);
}

.promo-bnc > * {
  padding-left: 18px;
  padding-right: 18px;
}

.bnc-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  margin-bottom: 14px;
}

.bnc-emblem {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 175, 70, 0.70);
  border-radius: 17px;
  color: #ffad45;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -1px;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 164, 43, 0.32), transparent 60%),
    linear-gradient(145deg, #2a1608, #0f0d0b);
  box-shadow:
    inset 0 0 18px rgba(255, 126, 0, 0.14),
    0 0 20px rgba(255, 116, 0, 0.16);
  text-shadow: 0 0 12px rgba(255, 132, 0, 0.65);
}

.promo-bnc h3 {
  font-size: 1.24rem;
}

.promo-bnc h3 span {
  color: #ff9d26;
  white-space: nowrap;
}

.promo-bnc p {
  padding-left: 18px;
  padding-right: 18px;
}

.bnc-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 18px;
  list-style: none;
}

.bnc-list li {
  min-height: 36px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 153, 35, 0.16);
  border-radius: 10px;
  color: #e8ddd3;
  background: linear-gradient(90deg, rgba(255, 126, 0, 0.10), rgba(255, 255, 255, 0.015));
  font-size: 0.82rem;
  font-weight: 800;
}

.bnc-btn {
  width: calc(100% - 36px);
  margin: 0 18px;
  min-height: 52px;
  border: 2px solid #ffba48;
  color: #16100a !important;
  background: linear-gradient(180deg, #ffad25 0%, #f18a0f 48%, #d76600 100%);
  box-shadow:
    0 10px 22px rgba(255, 114, 0, 0.35),
    0 0 20px rgba(255, 142, 0, 0.22),
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(128, 45, 0, 0.25);
}

.bnc-btn span,
.bnc-btn strong {
  color: #16100a !important;
  text-shadow: 0 1px 0 rgba(255, 235, 180, 0.9);
}

.bnc-footer {
  padding: 13px 18px 18px;
  color: #9d826b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes dojoBncRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .dojo-sidebar-promos {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .dojo-promo-card {
    padding: 17px;
  }

  .promo-bnc {
    padding: 2px;
  }

  .bnc-head {
    padding-top: 18px;
  }

  .bnc-emblem {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bnc::before {
    animation: none;
  }

  .promo-btn,
  .promo-btn strong {
    transition: none;
  }
}