/* =========================================================
   BulkMailTracker — temporary marketing landing page
   Isolated from /css/app.css; mirrors the BuzzWorks dark
   ember palette so the look stays consistent across brands.
========================================================= */

:root {
  --bmt-bg: #05060a;
  --bmt-bg-2: #0c0a10;
  --bmt-panel: rgba(12, 10, 14, 0.62);
  --bmt-panel-strong: rgba(14, 11, 16, 0.86);
  --bmt-border: rgba(255, 170, 60, 0.22);
  --bmt-border-strong: rgba(255, 170, 60, 0.4);
  --bmt-text: #f5e6cf;
  --bmt-muted: rgba(245, 230, 207, 0.7);
  --bmt-subtle: rgba(245, 230, 207, 0.45);
  --bmt-orange: #ff8a1f;
  --bmt-orange-2: #ffb34d;
  --bmt-orange-glow: rgba(255, 138, 31, 0.35);
  --bmt-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --bmt-radius: 18px;
  --bmt-radius-sm: 12px;
  --bmt-max: 1180px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body.bmt-home {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--bmt-text);
  background: var(--bmt-bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bmt-page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1100px 640px at 70% 12%, rgba(255, 150, 40, 0.22), rgba(0, 0, 0, 0) 62%),
    radial-gradient(900px 540px at 12% 36%, rgba(255, 120, 20, 0.16), rgba(0, 0, 0, 0) 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(255, 90, 20, 0.18), rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, #0a0710 0%, #05060a 60%, #04040a 100%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

.subtle { color: var(--bmt-muted); }

a { color: inherit; text-decoration: none; }
a:focus-visible {
  outline: 2px solid var(--bmt-orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================
   Top bar
========================= */
.bmt-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 170, 60, 0.14);
  background: linear-gradient(180deg, rgba(8, 6, 10, 0.88), rgba(8, 6, 10, 0.55));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bmt-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  flex-wrap: wrap;
}

.bmt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--bmt-text);
}

.bmt-logo__mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, #ffd28a, #ff8a1f 55%, #b04500 100%);
  box-shadow:
    0 0 14px rgba(255, 138, 31, 0.55),
    inset 0 0 6px rgba(255, 220, 180, 0.4);
}

.bmt-logo__wordmark {
  font-size: 1.02rem;
}

.bmt-topnav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.bmt-topnav__link {
  font-size: 0.92rem;
  color: var(--bmt-muted);
  transition: color 0.18s ease;
}

.bmt-topnav__link:hover { color: var(--bmt-text); }

.bmt-topnav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 0;
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--bmt-orange-2), var(--bmt-orange));
  color: #1b0b00;
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.32);
  transition: transform 0.15s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.bmt-topnav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.5);
  filter: brightness(1.04);
}

.bmt-topnav__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--bmt-border-strong);
  background: rgba(255, 138, 31, 0.08);
  color: var(--bmt-text);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.18s ease,
              background 0.18s ease, border-color 0.18s ease;
}

.bmt-topnav__login:hover {
  background: rgba(255, 138, 31, 0.18);
  border-color: var(--bmt-orange-2);
  box-shadow: 0 0 16px rgba(255, 138, 31, 0.28);
  transform: translateY(-1px);
}

.bmt-topnav__login:focus-visible {
  outline: 2px solid var(--bmt-orange);
  outline-offset: 3px;
}

.bmt-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 170, 60, 0.28);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--bmt-text);
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.bmt-nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

/* =========================
   Main + hero
========================= */
.bmt-main {
  flex: 1;
  width: 100%;
  max-width: var(--bmt-max);
  margin: 0 auto;
  padding: 56px 24px 48px;
}

.bmt-hero {
  position: relative;
  margin-bottom: 88px;
}

.bmt-hero__halo {
  position: absolute;
  inset: -80px -120px auto auto;
  width: 520px;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 138, 31, 0.28), rgba(255, 138, 31, 0) 72%);
  filter: blur(2px);
  z-index: 0;
}

.bmt-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.bmt-hero__copy { min-width: 0; }

.bmt-eyebrow {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--bmt-border);
  background: rgba(255, 138, 31, 0.06);
  color: var(--bmt-orange-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.bmt-hero__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bmt-accent {
  display: block;
  background: linear-gradient(180deg, var(--bmt-orange-2), var(--bmt-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255, 138, 31, 0.18);
}

.bmt-hero__sub {
  margin: 0 0 28px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--bmt-muted);
  max-width: 560px;
}

.bmt-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bmt-hero__note {
  margin: 0;
  font-size: 0.82rem;
}

/* =========================
   Buttons
========================= */
.bmt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bmt-btn--primary {
  color: #1b0b00;
  background: linear-gradient(180deg, var(--bmt-orange-2), var(--bmt-orange));
  box-shadow: 0 10px 28px rgba(255, 120, 20, 0.32), 0 0 18px var(--bmt-orange-glow);
}

.bmt-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 120, 20, 0.42), 0 0 26px rgba(255, 138, 31, 0.6);
  filter: brightness(1.04);
}

.bmt-btn--secondary {
  color: var(--bmt-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--bmt-border);
}

.bmt-btn--secondary:hover {
  background: rgba(255, 138, 31, 0.08);
  border-color: var(--bmt-border-strong);
  box-shadow: 0 0 18px rgba(255, 120, 20, 0.18);
}

.bmt-btn--lg {
  padding: 14px 26px;
  font-size: 1rem;
}

/* =========================
   Hero visual / dashboard screenshots
========================= */
.bmt-hero__visual {
  position: relative;
  min-width: 0;
}

.bmt-screenshot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  text-align: left;
  border-radius: var(--bmt-radius);
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--bmt-shadow),
    0 0 36px rgba(255, 120, 20, 0.12);
}

.bmt-screenshot:focus-visible {
  outline: 2px solid var(--bmt-orange);
  outline-offset: 3px;
}

.bmt-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: rgba(8, 6, 12, 0.95);
}

.bmt-screenshot__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bmt-text);
  background: rgba(12, 8, 16, 0.82);
  border: 1px solid var(--bmt-border-strong);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.bmt-screenshot__zoom-icon {
  color: var(--bmt-orange-2);
  font-size: 1rem;
  line-height: 1;
}

.bmt-screenshot--hero:hover img {
  border-color: var(--bmt-border-strong);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.2);
}

/* Screenshot feature strip */
.bmt-screenshots {
  margin-bottom: 88px;
  scroll-margin-top: 80px;
}

.bmt-screenshot-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.bmt-screenshot-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--bmt-border);
  border-radius: var(--bmt-radius-sm);
  background: linear-gradient(180deg, rgba(20, 14, 24, 0.78), rgba(10, 8, 14, 0.7));
  cursor: zoom-in;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.bmt-screenshot-tile:hover {
  border-color: var(--bmt-border-strong);
  box-shadow: 0 0 20px rgba(255, 138, 31, 0.16);
  transform: translateY(-2px);
}

.bmt-screenshot-tile:focus-visible {
  outline: 2px solid var(--bmt-orange);
  outline-offset: 2px;
}

.bmt-screenshot-tile__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 170, 60, 0.12);
  background: rgba(6, 4, 10, 0.9);
}

.bmt-screenshot-tile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bmt-screenshot-tile__label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--bmt-text);
  line-height: 1.25;
}

.bmt-screenshot-tile__hint {
  font-size: 0.75rem;
  line-height: 1.35;
}

.bmt-screenshot-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--bmt-orange-2);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 31, 0.45);
  text-underline-offset: 3px;
  cursor: zoom-in;
}

.bmt-screenshot-link:hover {
  color: var(--bmt-orange);
}

.bmt-screenshot-link::before {
  content: " ";
}

/* Fullscreen image lightbox */
.bmt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bmt-lightbox[hidden] {
  display: none;
}

body.bmt-lightbox-open {
  overflow: hidden;
}

.bmt-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 0, 6, 0.92);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.bmt-lightbox__frame {
  position: relative;
  z-index: 1;
  width: min(96vw, 1400px);
  max-height: 96vh;
  display: flex;
  flex-direction: column;
}

.bmt-lightbox__close {
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bmt-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.bmt-lightbox__close:hover {
  background: rgba(255, 138, 31, 0.2);
}

.bmt-lightbox__figure {
  margin: 36px 0 0;
  max-height: calc(96vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bmt-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(96vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid var(--bmt-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  background: #0a080e;
}

.bmt-lightbox__caption {
  margin: 12px 0 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--bmt-muted);
  line-height: 1.45;
}

.bmt-lightbox__caption[hidden] {
  display: none;
}

.bmt-mock-panel {
  position: relative;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(18, 12, 22, 0.92), rgba(10, 8, 14, 0.86));
  box-shadow:
    var(--bmt-shadow),
    0 0 36px rgba(255, 120, 20, 0.12);
  padding: 18px 18px 20px;
  overflow: hidden;
}

.bmt-mock-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 200px at 80% -10%, rgba(255, 138, 31, 0.22), rgba(0, 0, 0, 0) 70%),
    radial-gradient(360px 180px at 0% 110%, rgba(255, 90, 20, 0.18), rgba(0, 0, 0, 0) 70%);
}

.bmt-mock-panel__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bmt-mock-panel__title {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--bmt-text);
}

.bmt-mock-panel__badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.15);
  color: var(--bmt-orange-2);
  border: 1px solid var(--bmt-border-strong);
  box-shadow: 0 0 12px rgba(255, 138, 31, 0.22);
}

.bmt-mock-panel__map {
  position: relative;
  height: 240px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid rgba(255, 170, 60, 0.12);
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(255, 138, 31, 0.08), rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(8, 6, 12, 0.95), rgba(6, 4, 10, 0.95));
  overflow: hidden;
}

.bmt-mock-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 170, 60, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 170, 60, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 60%, transparent 100%);
}

.bmt-mock-route {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 138, 31, 0) 0%, rgba(255, 138, 31, 0.85) 50%, rgba(255, 138, 31, 0) 100%);
  box-shadow: 0 0 14px rgba(255, 138, 31, 0.55);
  opacity: 0.85;
}

.bmt-mock-route--a {
  top: 38%;
  left: 6%;
  width: 62%;
  transform: rotate(-12deg);
}

.bmt-mock-route--b {
  top: 64%;
  left: 22%;
  width: 70%;
  transform: rotate(8deg);
  opacity: 0.7;
}

.bmt-mock-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff5e1 0%, #ff8a1f 55%, rgba(255, 138, 31, 0) 80%);
  box-shadow: 0 0 16px rgba(255, 138, 31, 0.7);
  animation: bmt-pulse 2.4s ease-in-out infinite;
}

.bmt-mock-dot--1 { top: 22%; left: 16%; animation-delay: 0s; }
.bmt-mock-dot--2 { top: 32%; left: 44%; animation-delay: 0.4s; }
.bmt-mock-dot--3 { top: 28%; left: 72%; animation-delay: 0.8s; }
.bmt-mock-dot--4 { top: 58%; left: 28%; animation-delay: 1.1s; }
.bmt-mock-dot--5 { top: 70%; left: 56%; animation-delay: 1.5s; }
.bmt-mock-dot--6 { top: 62%; left: 84%; animation-delay: 1.9s; }

@keyframes bmt-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.45); opacity: 1; }
}

.bmt-mock-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.bmt-mock-stat {
  position: relative;
  padding: 10px 12px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid rgba(255, 170, 60, 0.14);
  background: rgba(255, 138, 31, 0.04);
}

.bmt-mock-stat__label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bmt-subtle);
  margin-bottom: 4px;
}

.bmt-mock-stat__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bmt-text);
  letter-spacing: 0.01em;
}

/* =========================
   Features
========================= */
.bmt-features {
  margin-bottom: 88px;
  scroll-margin-top: 80px;
}

.bmt-section-head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.bmt-section-title {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.005em;
}

.bmt-section-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.bmt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bmt-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(20, 14, 24, 0.78), rgba(10, 8, 14, 0.7));
  box-shadow: var(--bmt-shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.bmt-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(200px 80px at 30% 0%, rgba(255, 138, 31, 0.22), rgba(0, 0, 0, 0) 70%);
  opacity: 0.55;
  transition: opacity 0.18s ease;
}

.bmt-card:hover {
  transform: translateY(-2px);
  border-color: var(--bmt-border-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6), 0 0 26px rgba(255, 138, 31, 0.18);
}

.bmt-card:hover::after { opacity: 0.9; }

.bmt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 170, 60, 0.18), rgba(255, 120, 20, 0.08));
  border: 1px solid var(--bmt-border-strong);
  color: var(--bmt-orange-2);
  box-shadow: inset 0 0 12px rgba(255, 138, 31, 0.18);
}

.bmt-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bmt-text);
}

.bmt-card__copy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--bmt-muted);
}

/* =========================
   CTA band
========================= */
.bmt-cta-band {
  margin-bottom: 56px;
  padding: 32px 28px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border-strong);
  background:
    radial-gradient(700px 240px at 0% 0%, rgba(255, 138, 31, 0.22), rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(20, 14, 24, 0.92), rgba(10, 8, 14, 0.9));
  box-shadow: var(--bmt-shadow), 0 0 36px rgba(255, 138, 31, 0.18);
  scroll-margin-top: 80px;
}

.bmt-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.bmt-cta-band__title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
}

.bmt-cta-band__sub {
  margin: 0;
  max-width: 520px;
  line-height: 1.5;
}

/* =========================
   Footer
========================= */
.bmt-footer {
  border-top: 1px solid rgba(255, 170, 60, 0.14);
  padding: 22px 24px 18px;
  text-align: center;
  color: var(--bmt-subtle);
  font-size: 0.82rem;
}

.bmt-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.bmt-footer__nav a {
  color: var(--bmt-muted);
  font-weight: 600;
  transition: color 0.18s ease;
}

.bmt-footer__nav a:hover { color: var(--bmt-orange-2); }

.bmt-footer__sep { color: rgba(255, 170, 60, 0.35); }

.bmt-footer__nav--site {
  margin-bottom: 4px;
}

.bmt-footer__legal {
  padding-top: 14px;
  margin-top: 4px;
  margin-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bmt-inline-link {
  color: var(--bmt-orange-2);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 31, 0.45);
  text-underline-offset: 3px;
}

.bmt-inline-link:hover {
  color: var(--bmt-orange);
  text-decoration-color: var(--bmt-orange);
}

.bmt-inline-link--btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.bmt-hero__auth-note,
.bmt-offer__auth-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.bmt-guides {
  margin-bottom: 72px;
}

.bmt-guides .bmt-help-links {
  margin-top: 8px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .bmt-screenshot-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .bmt-main { padding: 36px 20px 36px; }
  .bmt-hero { margin-bottom: 64px; }
  .bmt-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bmt-hero__halo { inset: -60px -60px auto auto; width: 360px; height: 360px; }
  .bmt-feature-grid { grid-template-columns: 1fr; }
  .bmt-features { margin-bottom: 64px; }
  .bmt-cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .bmt-topbar__inner {
    padding: 12px 18px;
    align-items: flex-start;
  }

  .bmt-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .bmt-nav-panel {
    display: none;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 170, 60, 0.14);
  }

  .bmt-nav-panel.open {
    display: flex;
  }

  .bmt-topnav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .bmt-topnav__link,
  .bmt-topnav__login,
  .bmt-topnav__cta {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .bmt-screenshot-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bmt-lightbox { padding: 8px; }
  .bmt-lightbox__close { top: 4px; right: 4px; }
  .bmt-mock-panel__map { height: 200px; }
  .bmt-mock-panel__stats { grid-template-columns: 1fr 1fr; }
  .bmt-mock-stat:nth-child(3) { grid-column: span 2; }
  .bmt-cta-band { padding: 24px 20px; }
}

/* =========================
   Auth modal (loaded from /includes/auth-modal.html)
   Scoped versions of marketing.css modal styles so the
   BulkMailTracker landing stays asset-isolated and never
   pulls /css/marketing.css into the page.
========================= */
.bmt-home #authModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  z-index: 1000;
}

.bmt-home #authModal .modal-box {
  background: #0c0a0e;
  color: var(--bmt-text);
  border: 1px solid rgba(255, 170, 60, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 138, 31, 0.18);
  max-width: 440px;
  width: calc(100vw - 32px);
  margin: 8% auto;
  padding: 24px 22px;
  border-radius: 14px;
  position: relative;
}

.bmt-home #authModal h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bmt-text);
}

.bmt-home #authModal label {
  display: block;
  font-size: 0.78rem;
  color: var(--bmt-muted);
  margin: 8px 0 4px;
}

.bmt-home #authModal input,
.bmt-home #authModal textarea {
  width: 100%;
  padding: 10px 12px;
  margin: 6px 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 60, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--bmt-text);
  font: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bmt-home #authModal input:focus,
.bmt-home #authModal textarea:focus {
  border-color: var(--bmt-orange-2);
  box-shadow: 0 0 0 2px rgba(255, 138, 31, 0.18);
}

.bmt-home #authModal .password-wrap { position: relative; }
.bmt-home #authModal .password-wrap input { padding-right: 52px; }

.bmt-home #authModal .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 31, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.28);
  color: var(--bmt-orange-2);
  cursor: pointer;
}

.bmt-home #authModal .toggle-password:hover { background: rgba(255, 138, 31, 0.2); }
.bmt-home #authModal .toggle-password svg { width: 18px; height: 18px; fill: currentColor; }
.bmt-home #authModal .eye-closed { display: none; }

.bmt-home #authModal .btn,
.bmt-home #authModal .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  margin-top: 12px;
  transition: transform 0.15s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.bmt-home #authModal .btn-primary {
  color: #1b0b00;
  background: linear-gradient(180deg, var(--bmt-orange-2), var(--bmt-orange));
  box-shadow: 0 10px 28px rgba(255, 120, 20, 0.32);
  width: 100%;
}

.bmt-home #authModal .btn-primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 120, 20, 0.45);
}

.bmt-home #authModal .secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bmt-border);
  color: var(--bmt-text);
}

.bmt-home #authModal .modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.bmt-home #authModal .link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--bmt-orange-2);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.bmt-home #authModal .muted { color: var(--bmt-subtle); font-size: 0.86rem; }

.bmt-home #authModal .bmt-auth-modal-note strong {
  color: var(--bmt-text);
  font-weight: 700;
}
.bmt-home #authModal .error { color: #ff8e8e; margin: 6px 0 0; min-height: 1em; }
.bmt-home #authModal .success { color: #82d586; margin: 6px 0 0; min-height: 1em; }

.bmt-home #authModal .grid {
  display: grid;
  gap: 8px;
}

.bmt-home #authModal .grid-2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 520px) {
  .bmt-home #authModal .grid-2 { grid-template-columns: 1fr; }
  .bmt-home #authModal .modal-box { margin: 14% auto; padding: 20px 16px; }
}

/* =========================
   How page — hero compact, steps, pricing, offer, form
========================= */
.bmt-hero--compact { margin-bottom: 56px; }

.bmt-hero__inner--single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.bmt-hero__copy--center { text-align: center; margin: 0 auto; }

.bmt-hero__sub--center {
  margin-left: auto;
  margin-right: auto;
}

.bmt-hero__cta-row--center { justify-content: center; }

.bmt-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bmt-step-card .bmt-card__icon { font-size: 1.35rem; }

.bmt-offer {
  margin-bottom: 72px;
  scroll-margin-top: 80px;
}

.bmt-offer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.bmt-offer-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border-strong);
  background:
    radial-gradient(420px 200px at 50% 0%, rgba(255, 138, 31, 0.22), rgba(0, 0, 0, 0) 72%),
    linear-gradient(180deg, rgba(24, 16, 12, 0.96), rgba(10, 8, 14, 0.92));
  box-shadow: var(--bmt-shadow), 0 0 32px rgba(255, 138, 31, 0.18);
}

.bmt-offer-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.bmt-offer-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 31, 0.45);
  background: rgba(255, 138, 31, 0.12);
  font-size: 1.45rem;
}

.bmt-offer-card__eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bmt-orange-2);
}

.bmt-offer-card__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--bmt-text);
}

.bmt-offer-card__headline {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

.bmt-offer-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.bmt-offer-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bmt-offer-feature__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 31, 0.35);
  background: rgba(255, 138, 31, 0.08);
  font-size: 1.1rem;
}

.bmt-offer-feature__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bmt-offer-feature__title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--bmt-text);
}

.bmt-offer-feature__text {
  font-size: 0.88rem;
  line-height: 1.45;
}

.bmt-offer__inner {
  padding: 36px 32px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border-strong);
  background:
    radial-gradient(640px 280px at 100% 0%, rgba(255, 138, 31, 0.28), rgba(0, 0, 0, 0) 70%),
    linear-gradient(135deg, rgba(255, 120, 20, 0.14), rgba(12, 10, 14, 0.92));
  box-shadow: var(--bmt-shadow), 0 0 40px rgba(255, 138, 31, 0.22);
}

.bmt-offer__title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
}

.bmt-offer__list {
  margin: 0 0 24px;
  padding-left: 1.2rem;
  color: var(--bmt-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.bmt-offer__list li { margin-bottom: 4px; }

.bmt-offer__steps-title {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.bmt-offer__steps {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  line-height: 1.55;
  color: var(--bmt-muted);
}

.bmt-offer__steps li {
  margin-bottom: 6px;
}

.bmt-offer__help {
  margin: 0 0 10px;
}

.bmt-offer__disclaimer {
  margin: 0 0 18px;
  font-size: 0.82rem;
}

.bmt-offer__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bmt-btn--glow {
  box-shadow:
    0 12px 32px rgba(255, 120, 20, 0.45),
    0 0 32px rgba(255, 138, 31, 0.55);
}

.bmt-btn--block {
  width: 100%;
}

.bmt-pricing {
  margin-bottom: 72px;
  scroll-margin-top: 80px;
}

.bmt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
}

.bmt-pricing-grid--single {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.bmt-price-card {
  padding: 24px 22px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(20, 14, 24, 0.78), rgba(10, 8, 14, 0.7));
  text-align: center;
}

.bmt-price-card--featured {
  border-color: var(--bmt-border-strong);
  background:
    radial-gradient(320px 120px at 50% 0%, rgba(255, 138, 31, 0.2), rgba(0, 0, 0, 0) 70%),
    linear-gradient(180deg, rgba(28, 18, 12, 0.95), rgba(10, 8, 14, 0.88));
  box-shadow: 0 0 28px rgba(255, 138, 31, 0.2);
}

.bmt-price-card__label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bmt-orange-2);
}

.bmt-price-card__amount {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--bmt-text);
}

.bmt-price-card__detail {
  margin: 8px 0 0;
  font-size: 0.94rem;
  color: var(--bmt-muted);
}

.bmt-price-card__note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bmt-price-card__amount--compact {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.15;
}

.bmt-price-card__headline {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--bmt-text);
}

.bmt-price-card__rate {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--bmt-text);
}

.bmt-price-card__rate + .bmt-price-card__rate {
  margin-top: 6px;
}

.bmt-credits-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 22px 20px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid var(--bmt-border);
  background: rgba(255, 138, 31, 0.04);
}

.bmt-credits-block__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.bmt-credits-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.bmt-credits-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--bmt-border-strong);
  background: rgba(255, 138, 31, 0.14);
  color: var(--bmt-orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bmt-credits-block__note { margin: 0 0 14px; font-size: 0.9rem; }

.bmt-credits-grid { display: grid; gap: 8px; margin-bottom: 12px; }

.bmt-credit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 170, 60, 0.12);
  color: var(--bmt-muted);
  font-size: 0.95rem;
}

.bmt-credit-row:last-child { border-bottom: none; }

.bmt-credit-row strong { color: var(--bmt-text); font-weight: 800; }

.bmt-credits-block__example { margin: 0 0 24px; font-size: 0.88rem; line-height: 1.5; }

.bmt-sample-jobs {
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 20px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(18, 12, 22, 0.78), rgba(10, 8, 14, 0.72));
}

.bmt-sample-jobs__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.bmt-sample-jobs__lead {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.bmt-sample-table-wrap {
  overflow-x: auto;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.bmt-sample-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.bmt-sample-table th,
.bmt-sample-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 170, 60, 0.12);
}

.bmt-sample-table th {
  color: var(--bmt-orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bmt-sample-table td {
  color: var(--bmt-muted);
}

.bmt-sample-table td:first-child {
  color: var(--bmt-text);
  font-weight: 700;
}

.bmt-sample-table tbody tr:last-child td {
  border-bottom: none;
}

.bmt-sample-jobs__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.bmt-setup {
  margin-bottom: 56px;
  scroll-margin-top: 80px;
}

.bmt-setup-cta {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(18, 12, 22, 0.88), rgba(10, 8, 14, 0.82));
  box-shadow: var(--bmt-shadow);
}

.bmt-setup-cta__lead {
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.5;
}

.bmt-field__hint--emph {
  margin-top: 0.5rem;
  color: rgba(245, 200, 120, 0.92);
}

.bmt-setup-form [data-bmt-crid-mid-section][hidden],
.bmt-setup-form [data-bmt-permit-section][hidden] {
  display: none !important;
}

.bmt-form-grid--postal {
  margin: 0;
  width: 100%;
}

.bmt-modal__form .bmt-signup-full-width {
  grid-column: 1 / -1;
  width: 100%;
}

.bmt-modal__form .bmt-signup-postal-grid {
  margin-top: 0.25rem;
}

.bmt-modal__form .bmt-service-choice {
  width: 100%;
  margin: 0 0 0.75rem;
}

.bmt-modal__form .bmt-service-choice__body {
  flex: 1;
  min-width: 0;
}

.bmt-modal__form .bmt-service-choice__hint {
  display: block;
  line-height: 1.35;
}

.bmt-modal__form .bmt-form-disclaimer {
  width: 100%;
  max-width: none;
  margin: 0.65rem 0 0.75rem;
  line-height: 1.45;
  font-size: 0.82rem;
}

.bmt-modal__form .bmt-form-grid {
  gap: 12px 14px;
}

.bmt-modal__form textarea[name="notes"] {
  min-height: 64px;
}

.bmt-signup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 1.25rem;
}

.bmt-signup-progress__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--bmt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--bmt-muted);
  background: rgba(0, 0, 0, 0.35);
}

.bmt-signup-progress__dot.bmt-signup-progress--active,
.bmt-signup-progress__dot.bmt-signup-progress--done {
  border-color: var(--bmt-gold);
  color: var(--bmt-gold);
  box-shadow: 0 0 12px rgba(245, 180, 60, 0.25);
}

.bmt-signup-progress__line {
  width: 36px;
  height: 1px;
  background: var(--bmt-border);
}

.bmt-service-choice {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bmt-service-choice__option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid var(--bmt-border);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.bmt-service-choice__option input[type="radio"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.bmt-service-choice__title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.bmt-signup-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.bmt-signup-nav .bmt-btn--block {
  flex: 1 1 100%;
}

.bmt-setup-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(18, 12, 22, 0.88), rgba(10, 8, 14, 0.82));
  box-shadow: var(--bmt-shadow);
}

.bmt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}

.bmt-field { display: flex; flex-direction: column; gap: 6px; }

.bmt-field--full { grid-column: 1 / -1; }

.bmt-field__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bmt-muted);
}

.bmt-field__hint { font-size: 0.78rem; line-height: 1.4; }

.bmt-form-grid > .bmt-checklist {
  grid-column: 1 / -1;
}

.bmt-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.15rem 0 0.35rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 60, 0.18);
  background: rgba(0, 0, 0, 0.22);
}

.bmt-checklist__row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
}

.bmt-checklist__row input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  min-width: 1.05rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--bmt-orange, #ff8a1f);
  cursor: pointer;
}

.bmt-checklist__label {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
  color: rgba(245, 230, 207, 0.92);
}

.bmt-setup-form input[type="checkbox"],
.bmt-setup-form input[type="radio"] {
  width: auto;
  min-height: 0;
  padding: 0;
  box-shadow: none;
}

.bmt-field__estimate {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--bmt-muted);
  min-height: 1.2em;
}

.bmt-field__estimate:empty {
  display: none;
}

.bmt-field__estimate strong {
  color: var(--bmt-orange-2);
  font-weight: 700;
}

.bmt-setup-form input,
.bmt-setup-form textarea,
.bmt-setup-form select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 60, 0.2);
  background-color: rgba(12, 10, 14, 0.92);
  color: var(--bmt-text);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bmt-setup-form input:focus,
.bmt-setup-form textarea:focus,
.bmt-setup-form select:focus {
  border-color: var(--bmt-orange-2);
  box-shadow: 0 0 0 2px rgba(255, 138, 31, 0.18);
}

.bmt-setup-form select {
  cursor: pointer;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffb34d' d='M1.4 1.4 6 6l4.6-4.6L12 3l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}

.bmt-setup-form select option,
.bmt-setup-form select optgroup {
  background-color: #0c0a10;
  color: var(--bmt-text);
}

.bmt-setup-form select option:checked,
.bmt-setup-form select option:hover {
  background-color: rgba(255, 138, 31, 0.35);
  color: var(--bmt-text);
}

.bmt-setup-form select option:disabled {
  color: var(--bmt-subtle);
}

.bmt-setup-form textarea { resize: vertical; min-height: 88px; }

.bmt-form-disclaimer {
  margin: 16px 0 12px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.bmt-form-message {
  margin: 0 0 12px;
  min-height: 1.25em;
  font-size: 0.92rem;
}

.bmt-form-message--error { color: #ff9a9a; }
.bmt-form-message--success { color: #82d586; line-height: 1.5; }

.bmt-field__error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #ff9a9a;
  min-height: 1.1em;
}

.bmt-form-success-title {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #9ee6a2;
}

.bmt-btn--block { width: 100%; }

.bmt-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.bmt-setup--demo {
  margin-bottom: 56px;
}

/* =========================
   Help / education pages
========================= */
.bmt-help-main {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.bmt-help-article { padding: 8px 0 24px; }

.bmt-help-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bmt-orange-2);
}

.bmt-help-title {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.bmt-help-lead {
  margin: 0 0 14px;
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--bmt-muted);
}

.bmt-help-intro { margin: 0 0 28px; line-height: 1.55; }

.bmt-help-section { margin-bottom: 40px; }

.bmt-help-section__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.bmt-help-section__sub { margin: 0 0 16px; }

.bmt-help-prose p,
.bmt-help-prose ul {
  margin: 0 0 12px;
  line-height: 1.6;
}

.bmt-help-prose ul { padding-left: 1.2rem; }

.bmt-help-prose a {
  color: var(--bmt-orange-2);
  text-decoration: underline;
}

.bmt-help-checklist {
  display: grid;
  gap: 10px;
}

.bmt-help-checklist__item {
  padding: 12px 14px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid var(--bmt-border);
  background: rgba(255, 138, 31, 0.04);
  color: var(--bmt-muted);
  font-size: 0.95rem;
}

.bmt-help-steps {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.65;
}

.bmt-help-steps a { color: var(--bmt-orange-2); }

.bmt-help-prose code {
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bmt-orange-2);
}

.bmt-help-mid-cta {
  margin: 20px 0 0;
}

.bmt-help-crosslink {
  margin: 24px 0 0;
  font-size: 0.95rem;
}

.bmt-help-crosslink a {
  color: var(--bmt-orange-2);
  font-weight: 700;
}

.bmt-help-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 28px auto 0;
}

.bmt-help-links__card {
  display: block;
  padding: 18px 16px;
  border-radius: var(--bmt-radius-sm);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(20, 14, 24, 0.78), rgba(10, 8, 14, 0.7));
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.bmt-help-links__card:hover {
  border-color: var(--bmt-border-strong);
  box-shadow: 0 0 20px rgba(255, 138, 31, 0.16);
}

.bmt-help-links__title {
  display: block;
  font-weight: 800;
  color: var(--bmt-text);
  margin-bottom: 6px;
}

.bmt-help-links__sub {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
}

.bmt-option-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.bmt-option-card {
  padding: 22px 20px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border);
  background: linear-gradient(180deg, rgba(20, 14, 24, 0.78), rgba(10, 8, 14, 0.7));
}

.bmt-option-card--highlight {
  border-color: var(--bmt-border-strong);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.14);
}

.bmt-option-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 138, 31, 0.14);
  border: 1px solid var(--bmt-border-strong);
  color: var(--bmt-orange-2);
}

.bmt-option-badge--warn { background: rgba(255, 120, 40, 0.12); }

.bmt-option-badge--ok {
  background: rgba(130, 213, 134, 0.12);
  border-color: rgba(130, 213, 134, 0.35);
  color: #9ee0a2;
}

.bmt-option-card__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.bmt-option-card__for {
  margin: 0 0 12px;
  line-height: 1.5;
}

.bmt-option-card__list {
  margin: 0 0 16px;
  padding-left: 1.15rem;
  line-height: 1.55;
}

.bmt-option-card .bmt-btn { margin-top: 4px; }

.bmt-service-price-card {
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: var(--bmt-radius-sm);
  border: 1px dashed var(--bmt-border);
  background: rgba(255, 138, 31, 0.05);
}

.bmt-service-price-card__label {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bmt-orange-2);
}

.bmt-service-price-card__amount {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bmt-text);
}

.bmt-service-price-card__quote-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--bmt-orange-2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 31, 0.45);
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.bmt-service-price-card__quote-btn:hover {
  color: var(--bmt-orange);
}

.bmt-service-price-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.bmt-compare-table { min-width: 680px; }

/* =========================
   Quote request modal (help pages)
========================= */
.bmt-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bmt-modal[hidden] { display: none; }

body.bmt-modal-open { overflow: hidden; }

.bmt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 8, 0.72);
  backdrop-filter: blur(4px);
}

.bmt-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 24px 22px 22px;
  border-radius: var(--bmt-radius);
  border: 1px solid var(--bmt-border-strong);
  background: linear-gradient(180deg, rgba(28, 18, 34, 0.98), rgba(12, 8, 16, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.bmt-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bmt-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.bmt-modal__close:hover {
  color: var(--bmt-text);
  background: rgba(255, 138, 31, 0.14);
}

.bmt-modal__title {
  margin: 0 32px 8px 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.bmt-modal__sub {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bmt-modal__dialog--wide {
  width: min(680px, 100%);
}

.bmt-modal__form {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.bmt-modal__auth-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .bmt-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bmt-offer__grid { grid-template-columns: 1fr; }
  .bmt-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .bmt-help-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .bmt-steps-grid { grid-template-columns: 1fr; }
  .bmt-form-grid { grid-template-columns: 1fr; }
  .bmt-offer__inner { padding: 24px 20px; }
  .bmt-setup-form { padding: 22px 18px; }
  .bmt-credits-block__head { flex-direction: column; align-items: flex-start; }
  .bmt-sample-jobs { padding: 18px 14px; }
  .bmt-sample-table { font-size: 0.84rem; }
  .bmt-sample-table th,
  .bmt-sample-table td { padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .bmt-mock-dot { animation: none; }
  .bmt-btn, .bmt-card, .bmt-topnav__cta { transition: none; }
}
