/* Wallalphacoder — Construx polish layer (black / white / orange accents)
   Safe overlay: does not change calculator logic or layout grids. */

:root {
  --page-bg: #ffffff;
  --header-bg: #ffffff;
  --ink: #111111;
  --muted: #4a4a4a;
  --line: #e2e2e2;
  --accent: #ff6b1a;
  --accent-dark: #e85a0c;
  --accent-soft: rgba(255, 94, 20, 0.12);
  --link: #1a1a1a;
  --link-hover: #0842a0;
  --green: #ff6b1a;
  --green-dark: #e85a0c;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Segoe UI Semibold", "Segoe UI", system-ui, sans-serif;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 28px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #ffffff !important;
}

h1, h2, h3, h4,
.home-title,
.article-body h1 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

/* —— Header: Construx bar —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}
.site-header::before {
  display: none !important;
  content: none !important;
  height: 0 !important;
}
.header-inner {
  min-height: 58px;
  padding: 0.65rem 16px;
}
/* Logo: native in header — no card plate */
.brand.brand-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 0 !important;
  line-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.brand-logo-img {
  display: block !important;
  height: 40px !important;
  width: auto !important;
  max-width: min(220px, 48vw);
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.brand-logo .brand-mark,
.brand-logo .brand-text,
.brand-logo .brand-wall,
.brand-logo .brand-coder {
  display: none !important;
}
.brand-mark { display: none !important; }
.brand-text::before { display: none !important; content: none !important; }
@media (max-width: 640px) {
  .brand-logo-img { height: 32px !important; max-width: min(160px, 44vw); }
}
.site-nav a {
  position: relative;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  font-size: 14px;
  padding: 6px 4px !important;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.site-nav a:hover {
  color: #111 !important;
  text-decoration: none !important;
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}
.site-nav a.is-active {
  color: #111 !important;
}
.header-search input {
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 7px 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.header-search button {
  background: #ff6b1a !important;
  color: #fff !important;
  border-radius: 6px;
  padding: 6px 10px !important;
  transition: background 0.2s ease, transform 0.15s ease;
}
.header-search button:hover {
  background: #e85a0c !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* —— Hero band removed (user preference) —— */
.wac-page-band {
  display: none !important;
}
.wac-page-band--off {
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 0 0 8px;
  border-bottom: 3px solid var(--accent);
}
.wac-page-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 94, 20, 0.18) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 13px
    );
  pointer-events: none;
}
.wac-page-band-inner {
  position: relative;
  max-width: var(--max, 1000px);
  margin: 0 auto;
  padding: 28px 16px 30px;
  width: min(100% - 32px, var(--max, 1000px));
}
.wac-page-band .wac-band-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.wac-page-band h1,
.wac-page-band .wac-band-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff !important;
  margin: 0 0 10px;
  max-width: 18ch;
}
.wac-page-band .wac-band-title .accent {
  color: var(--accent);
}
.wac-page-band p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}
h1.wac-h1-mirrored,
.wac-lead-mirrored {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/* —— Cards / sections: depth + motion —— */
.cat-block,
.home-card,
.wac-section,
.viz-card,
.panel,
.tool-box,
.side-box,
.blog-card,
.feature-tile,
.faq-item,
.search-hit,
.article-body {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.25s ease;
}
.cat-block,
.home-card,
.wac-section,
.viz-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.cat-block::before,
.home-card::before,
.wac-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cat-block:hover,
.home-card:hover,
.wac-section:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}
.cat-block:hover::before,
.home-card:hover::before,
.wac-section:hover::before {
  opacity: 1;
}
.cat-block h2,
.home-card h2,
.wac-section > h2:first-child {
  font-family: var(--display);
  position: relative;
  padding-bottom: 10px !important;
}
.cat-block h2::after,
.home-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.cat-list a,
.side-box a,
.tool-aside a {
  transition: color 0.15s ease, padding-left 0.2s var(--ease);
}
.cat-list a:hover {
  color: #111 !important;
  padding-left: 4px;
}

/* Blog cards */
.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
}
.blog-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #111);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.14);
  text-decoration: none !important;
}
.blog-card:hover::before {
  transform: scaleX(1);
}
.blog-card:hover .blog-card-body h3 {
  color: #111 !important;
}
.blog-card-body {
  padding: 16px 18px 18px;
}
.blog-card-cat {
  color: var(--accent) !important;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.feature-tile {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 0, 0, 0.08);
}
.feature-tile:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-md) !important;
  background: #fff !important;
  border-color: rgba(255, 94, 20, 0.35) !important;
}
.feature-tile:hover h3 {
  color: #111 !important;
}

/* Sidebar */
.side-box,
.tool-aside .side-box,
.toc {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 0, 0, 0.1);
}
.side-box h3,
.tool-aside .side-box h3,
.toc h3 {
  background: #f4f4f4 !important;
  color: #1a1a1a !important;
  position: relative;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--accent) !important;
}
.side-box h3::after,
.toc h3::after {
  display: none !important;
}
.toc a,
.side-box a {
  color: #222 !important;
}
.toc a:hover,
.side-box a:hover {
  color: #111 !important;
  background: #f7f7f7;
}

/* Buttons */
.btn,
.btn-primary,
.btn-ember {
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary,
.btn-ember {
  box-shadow: 0 4px 14px rgba(255, 94, 20, 0.35);
}
.btn-primary:hover,
.btn-ember:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.45);
}
.btn-secondary:hover {
  transform: translateY(-1px);
}

/* Forms */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.panel input:focus,
.panel select:focus,
.panel textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
}

/* FAQ */
.faq-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item summary {
  transition: background 0.2s ease;
  padding-left: 14px;
  border-left: 3px solid transparent;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 94, 20, 0.25);
}
.faq-item[open] summary {
  background: #fff8f4;
  border-left-color: var(--accent);
}

/* Blog article */
body.blog-page .article-body,
body.blog-article .article-body {
  box-shadow: var(--shadow-md);
  border-radius: 10px;
  border-color: rgba(0, 0, 0, 0.08);
}
.pull-quote {
  background: #f6f6f6 !important;
  border-left: 4px solid var(--accent) !important;
  border-radius: 0 8px 8px 0;
}
.article-eyebrow {
  color: var(--accent);
}

/* Contact */
.contact-grid .panel,
.contact-grid .wac-section,
body.static-page .contact-grid > * {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

/* Footer — one flat bar only (kill nested .footer-bottom card) */
.site-footer,
#site-footer {
  margin-top: 40px;
  background: #111 !important;
  border-top: 3px solid var(--accent) !important;
  padding: 22px 16px 20px !important;
}
.site-footer .footer-bottom,
#site-footer .footer-bottom,
.footer-bottom {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.75);
  position: static !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.site-footer .footer-bottom::before,
#site-footer .footer-bottom::before,
.footer-bottom::before,
.footer-bottom::after {
  content: none !important;
  display: none !important;
  height: 0 !important;
  background: none !important;
}
.rt-footer-nav a,
.rt-footer-copy a {
  transition: color 0.2s ease;
}
.rt-footer-nav a:hover,
.rt-footer-copy a:hover {
  color: var(--accent) !important;
  text-decoration: none !important;
}

/* Scroll buttons */
.scroll-btn {
  border-radius: 8px !important;
  background: #111 !important;
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.25s ease;
}
.scroll-btn:hover {
  background: var(--accent) !important;
  transform: translateY(-2px);
}

/* Breadcrumbs — dark ink, accent only on hover */
.breadcrumb a {
  color: #555 !important;
  transition: color 0.15s ease;
}
.breadcrumb a:hover {
  color: var(--accent) !important;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0 !important;
  transform: translateY(18px) !important;
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease) !important;
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-delay-1 { transition-delay: 0.06s !important; }
.reveal-delay-2 { transition-delay: 0.12s !important; }
.reveal-delay-3 { transition-delay: 0.18s !important; }
.reveal-delay-4 { transition-delay: 0.24s !important; }

@keyframes wacFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wacBandIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.wac-page-band-inner > * {
  animation: wacBandIn 0.6s var(--ease) both;
}
.wac-page-band-inner > *:nth-child(2) { animation-delay: 0.08s; }
.wac-page-band-inner > *:nth-child(3) { animation-delay: 0.16s; }

/* Blog category headings */
.blog-cat-block h2 {
  font-family: var(--display);
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd !important;
}
.blog-cat-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 3px;
  background: var(--accent);
}

/* Tool pages: keep calculator usable, add light polish */
.rt-main > h1,
.main-tool-shell h1 {
  font-family: var(--display);
}
.tool-box,
.workspace .panel {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

/* Soften orange text elsewhere — accent for chrome only */
.dir-item:hover {
  color: #111 !important;
  background: #fff8f4;
}
.related-tabs a {
  color: #333 !important;
}
.related-tabs a.active {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

@media (max-width: 640px) {
  .wac-page-band-inner { padding: 22px 16px 24px; }
  .wac-page-band h1,
  .wac-page-band .wac-band-title { max-width: none; }
  .cat-block:hover,
  .home-card:hover,
  .wac-section:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible,
  .wac-page-band-inner > *,
  .cat-block,
  .home-card,
  .wac-section,
  .blog-card,
  .feature-tile,
  .btn-primary {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ========== V2: Eye-catching desk look (no dark hero) ========== */
body {
  background:
    radial-gradient(ellipse 90% 40% at 10% 0%, rgba(255, 94, 20, 0.07), transparent 50%),
    radial-gradient(ellipse 70% 35% at 95% 5%, rgba(0, 0, 0, 0.03), transparent 45%),
    #fafafa !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Home intro — light, bold, Construx-like numbers (not a black hero) */
.home-intro {
  position: relative;
  margin: 8px 0 28px;
  padding: 22px 24px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.home-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #ff6b1a, #111);
}
.home-intro::after {
  content: "01";
  position: absolute;
  right: 16px;
  top: 8px;
  font-family: var(--display), system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.home-intro .home-title {
  margin: 0 0 10px !important;
  font-size: clamp(28px, 4vw, 38px) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 16ch;
  position: relative;
  z-index: 1;
}
.home-intro .home-title .accent {
  color: #ff6b1a;
}
.home-intro-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff6b1a;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.home-intro-lead {
  margin: 0;
  max-width: 48ch;
  color: #555;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* Category cards — numbered, lift, tile grid */
.home-wrap .cat-block,
.home-wrap .home-card {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px !important;
  padding: 20px 20px 18px !important;
  margin-bottom: 22px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
  background: #fff !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease !important;
}
.home-wrap .cat-block:hover,
.home-wrap .home-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(255, 94, 20, 0.25) !important;
}
.home-wrap .cat-block h2,
.home-wrap .home-card h2 {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 20px !important;
  font-weight: 800 !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 0 16px !important;
}
.home-wrap .cat-block h2::after,
.home-wrap .home-card h2::after {
  display: none !important;
}
.cat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-family: var(--display), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Tool links as interactive tiles */
ul.cat-list.cat-tiles {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
ul.cat-list.cat-tiles li {
  margin: 0 !important;
  padding: 0 !important;
}
ul.cat-list.cat-tiles a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #f7f7f7;
  color: #1a1a1a !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
ul.cat-list.cat-tiles a::after {
  content: "→";
  color: #ff6b1a;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
ul.cat-list.cat-tiles a:hover {
  background: #fff8f4;
  border-color: rgba(255, 94, 20, 0.35);
  color: #111 !important;
  transform: translateX(2px);
  text-decoration: none !important;
}
ul.cat-list.cat-tiles a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Sidebar — softer, accent stripe */
.side-box,
.tool-aside .side-box,
.toc {
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
}
.side-box h3,
.tool-aside .side-box h3,
.toc h3 {
  background: linear-gradient(180deg, #ffffff, #f6f6f6) !important;
  color: #111 !important;
  border-bottom: 2px solid #ff6b1a !important;
  padding: 12px 14px !important;
}

/* Blog cards richer */
.blog-card {
  border-radius: 12px !important;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-5px) !important;
}

/* FAQ / contact / sections */
.wac-section,
.faq-item,
.home-card,
.viz-card {
  border-radius: 12px !important;
}
.faq-item[open] summary {
  background: #fff8f4 !important;
}

/* Page titles sitewide */
#main > .container > h1,
.rt-main > h1,
.static-center > h1,
.home-title {
  font-weight: 800;
}

@media (max-width: 700px) {
  ul.cat-list.cat-tiles {
    grid-template-columns: 1fr !important;
  }
  .home-intro {
    padding: 18px 16px 20px;
  }
  .home-intro::after {
    font-size: 64px;
    right: 8px;
  }
}

/* Aliases / harden V2 */
.home-intro-lead { margin: 0; max-width: 48ch; color: #555; font-size: 15px; line-height: 1.55; position: relative; z-index: 1; }
.cat-num {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: #111 !important;
  color: #fff !important;
  font-family: var(--display), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
body.home-page,
body:has(.home-wrap) {
  background:
    radial-gradient(ellipse 90% 40% at 10% 0%, rgba(255, 94, 20, 0.08), transparent 50%),
    radial-gradient(ellipse 70% 35% at 95% 5%, rgba(0, 0, 0, 0.035), transparent 45%),
    #fafafa !important;
}
.page-shell {
  padding-top: 12px;
}
.dir-item {
  border-radius: 10px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.dir-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08) !important;
  border-color: rgba(255,94,20,0.35) !important;
}

/* Native brand override — no PNG card */
.brand.brand-native,
.brand.brand-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 10px !important;
}
.brand-logo-img { display: none !important; }
.brand-ico {
  display: block !important;
  width: 42px !important;
  height: 36px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.brand-word {
  display: inline-flex !important;
  font-family: "Segoe UI", "Arial Black", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
}
.brand-word .bw-a { color: #141414 !important; }
.brand-word .bw-b { color: #ff6b1a !important; }
