:root {
  --bg: #f7f7f4;
  --surface: #0a0a0a;
  --paper: #ffffff;
  --ink: #101010;
  --muted: rgba(16, 16, 16, 0.68);
  --dark: #101010;
  --dark-muted: rgba(16, 16, 16, 0.68);
  --line: rgba(16, 16, 16, 0.18);
  --line-dark: rgba(16, 16, 16, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}

.baam-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 24px;
  background: #080808;
  color: #fff;
  opacity: 1;
}
.baam-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.baam-loader__panel {
  display: grid;
  grid-template-areas:
    "mark"
    "title";
  grid-template-rows: 104px auto;
  gap: 8px;
  justify-items: center;
  align-items: center;
  width: min(100%, 210px);
  max-width: calc(100vw - 32px);
  max-height: calc(100svh - 32px);
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 22px 56px rgba(0,0,0,.38);
  overflow: hidden;
}
.baam-loader__panel img {
  grid-area: mark;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
  padding: 7px;
  box-shadow: 0 14px 28px rgba(0,0,0,.3);
  z-index: 1;
}
.baam-loader__panel strong {
  grid-area: title;
  width: 120px;
  height: 20px;
  margin-top: 12px;
  background: url("/BAAM_Text_white_transparent.png") center/contain no-repeat;
  font-size: 0;
}
.baam-loader__panel small {
  display: none;
}
.baam-loader__ring {
  grid-area: mark;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255,255,255,.18);
  border-top-color: #fff;
  border-radius: 50%;
  animation: baamLoaderSpin .9s linear infinite;
}
@keyframes baamLoaderSpin {
  to { transform: rotate(360deg); }
}
@media (max-width: 560px) {
  .baam-loader {
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }

  .baam-loader__panel {
    grid-template-rows: 76px auto;
    width: min(100%, 184px);
    gap: 6px;
    padding: 16px 14px;
    box-shadow: 0 16px 38px rgba(0,0,0,.36);
  }

  .baam-loader__panel img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    padding: 5px;
  }

  .baam-loader__ring {
    width: 76px;
    height: 76px;
  }

  .baam-loader__panel strong {
    width: 108px;
    height: 18px;
  }

  .baam-loader__panel small {
    font-size: 9px;
  }
}
@media (max-height: 500px) {
  .baam-loader__panel {
    grid-template-rows: 64px auto;
    gap: 5px;
    padding: 12px;
  }

  .baam-loader__panel img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .baam-loader__ring {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 380px), (max-height: 420px) {
  .baam-loader {
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }

  .baam-loader__panel {
    grid-template-rows: 56px auto;
    width: min(100%, 156px);
    max-height: calc(100svh - 16px);
    gap: 4px;
    padding: 10px;
  }

  .baam-loader__panel img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    padding: 4px;
  }

  .baam-loader__ring {
    width: 56px;
    height: 56px;
  }

  .baam-loader__panel strong {
    width: 92px;
    height: 15px;
  }

  .baam-loader__panel small {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .baam-loader__ring {
    animation: none;
  }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 44px);
  position: sticky;
  top: 0;
  isolation: isolate;
  z-index: 1000;
  backdrop-filter: blur(16px);
}
.brand {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  position: relative;
  z-index: 1002;
}
.brand:hover {
  box-shadow: none;
  transform: none;
}
.brand img {
  height: 40px;
  max-width: 184px;
  object-fit: contain;
}
.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 11px 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.site-nav a:hover {
  background: rgba(16, 16, 16, 0.06);
  color: var(--dark);
  transform: translateY(-1px);
}
.site-nav .nav-cta {
  background: var(--dark);
  box-shadow: 0 12px 24px rgba(16, 16, 16, 0.18);
  color: #fff;
  padding-left: 18px;
  padding-right: 18px;
}
.site-nav .nav-cta:hover {
  background: #252525;
  color: #fff;
}
.site-lang-switch {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.18);
  border-radius: 999px;
  color: rgba(16, 16, 16, 0.68);
  display: inline-flex;
  gap: 3px;
  min-height: 40px;
  padding: 4px;
  text-transform: none;
}
.site-lang-switch span {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  justify-content: center;
  min-height: 30px;
  min-width: 34px;
}
.site-lang-switch span.is-active {
  background: #101010;
  color: #fff;
}
.nav-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark);
  cursor: pointer;
  display: none;
  flex: 0 0 44px;
  flex-direction: column;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 1002;
}
body.nav-open .brand {
  z-index: 1000;
}
body.nav-open .nav-toggle {
  z-index: 1003;
}
.nav-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 3px 0;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 20px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.container {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: clamp(18px, 4vw, 34px);
  padding-right: clamp(18px, 4vw, 34px);
  width: 100%;
}
.narrow { max-width: 920px; }
.section-dark,
.section-light {
  padding: clamp(64px, 9vw, 118px) 0;
  position: relative;
}
.section-dark {
  background: var(--bg);
  color: var(--dark);
}
.section-light {
  background: var(--paper);
  color: var(--dark);
}

.section-dark p,
.section-dark li,
.section-dark summary {
  color: var(--dark-muted);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(1.9rem, 3.65vw, 4.05rem);
  line-height: 1.04;
  margin: 0 auto 20px;
  max-width: 980px;
  text-transform: uppercase;
}
.rotating-text {
  border-bottom: 0.06em solid currentColor;
  display: inline-block;
  min-width: 3.6em;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.rotating-text-wide {
  display: block;
  margin: 0.08em auto;
  min-width: 11.8em;
  width: fit-content;
  max-width: 100%;
}
.rotating-text.is-changing {
  opacity: 0;
  transform: translateY(0.16em);
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 22px;
  text-transform: uppercase;
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.12;
  margin-bottom: 12px;
  text-transform: uppercase;
}
p, li, summary {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}
.section-light p,
.section-light li,
.section-light summary,
.section-light .section-label {
  color: var(--dark-muted);
}

.hero {
  padding-top: clamp(38px, 7vw, 78px);
  text-align: center;
}
.hero-center {
  display: grid;
  justify-items: center;
}
.hero-center > .eyebrow,
.hero-center > h1,
.hero-center > .lede,
.hero-center > .legal {
  width: 100%;
}
.hero-center > .lede {
  margin-bottom: 8px;
}
.eyebrow,
.section-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 880px;
  text-transform: uppercase;
}
.section-light .section-label {
  color: var(--dark-muted);
}
.lede,
.lead-line {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
}

.vsl-box,
.step-video {
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.vsl-box {
  aspect-ratio: 16 / 8.2;
  margin: 28px auto 26px;
  max-width: 920px;
  width: min(100%, 920px);
}
.vsl-video-box {
  aspect-ratio: 1608 / 1080;
  background: #000;
  cursor: default;
  margin-top: 14px;
  max-width: 820px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: min(100%, 820px);
}
.vsl-video {
  background: #000;
  color: #fff;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.vsl-box,
.vsl-video-box {
  background: #fff !important;
  border-color: rgba(16, 16, 16, 0.10) !important;
  overflow: hidden !important;
}
.vsl-video {
  background: #fff !important;
  color: #101010 !important;
  display: block !important;
  object-fit: cover !important;
  width: 100% !important;
}
.story-section .image-panel {
  background: #fff !important;
  overflow: hidden !important;
}
.vsl-play-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: grid;
  height: 78px;
  justify-items: center;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
  width: 78px;
  z-index: 2;
}
.vsl-play-overlay:hover,
.vsl-play-overlay:focus-visible {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}
.vsl-play-overlay .play-icon {
  border-bottom-width: 18px;
  border-left-color: var(--dark);
  border-left-width: 28px;
  border-top-width: 18px;
  margin-left: 7px;
}
.vsl-video-box.is-video-playing .vsl-play-overlay {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}
.demo-box {
  aspect-ratio: 16 / 7;
  max-width: 680px;
}
.vsl-box strong,
.step-video strong {
  font-size: 0.98rem;
  text-transform: uppercase;
}
.vsl-box small {
  color: rgba(255, 255, 255, 0.68);
}
.play-icon {
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
  border-top: 16px solid transparent;
  display: block;
  margin-left: 8px;
}

.signup-form {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 8px;
  max-width: 520px;
  width: 100%;
}
.signup-form input,
.signup-form button,
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 50px;
}
.signup-form input {
  background: #fff;
  color: var(--dark);
  padding: 0 18px;
}
.signup-form button,
.button {
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  padding: 14px 22px;
  text-transform: uppercase;
}
.section-light .button {
  background: var(--dark);
  color: #fff;
}
.legal {
  color: var(--muted);
  font-size: 0.82rem;
}

.compat-strip {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: stretch;
  margin-top: clamp(42px, 6vw, 70px);
  width: 100%;
}
.compat-strip span,
.proof-strip span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.compat-strip > * {
  border-right: 1px solid var(--line);
}
.compat-strip > *:last-child {
  border-right: 0;
}
.compat-strip span {
  align-items: center;
  color: var(--muted);
  display: flex;
  justify-content: center;
  min-height: 104px;
  padding: 18px;
  text-align: center;
}
.compat-logo {
  display: block;
  height: 104px;
  max-width: none;
  object-fit: contain;
  padding: 24px clamp(32px, 5vw, 68px);
  width: 100%;
}
.proof-strip {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(42px, 6vw, 70px);
}
.proof-strip > div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 82px;
  padding: 16px;
  text-align: center;
}
.proof-strip > div:last-child { border-right: 0; }

.story-opening {
  margin-bottom: clamp(48px, 8vw, 94px);
  text-align: left;
}
.story-opening h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.85rem);
  line-height: 1.08;
}
.rhythm {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}
.sketch-row,
.step-row {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  margin-top: clamp(42px, 7vw, 84px);
}
.sketch-row.reverse,
.step-row.reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}
.copy-stack {
  display: grid;
  gap: 10px;
}
.copy-stack p {
  margin-bottom: 0;
}
.image-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  overflow: hidden;
}
.image-panel img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  width: 100%;
}
.manual-ai-row {
  align-items: stretch;
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.76fr);
  margin-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(26px, 5vw, 48px);
  padding-top: clamp(26px, 5vw, 48px);
}
.manual-ai-row .copy-stack {
  align-content: center;
  gap: clamp(12px, 1.8vw, 18px);
}
.manual-ai-row .copy-stack p {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}
.manual-ai-row .copy-stack p:first-child {
  color: var(--dark);
  font-weight: 800;
}
.manual-ai-row .image-panel {
  align-self: center;
  aspect-ratio: 16 / 9.6;
  box-shadow: 0 24px 52px rgba(16, 16, 16, 0.16);
  min-height: 0;
}
.manual-ai-row .image-panel img {
  min-height: 0;
  object-position: center;
}
.manual-ai-bridge {
  gap: clamp(12px, 1.8vw, 18px);
  margin-top: clamp(34px, 6vw, 68px);
}
.manual-ai-bridge p {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.58;
  max-width: 840px;
}
.manual-ai-bridge p:nth-child(2) {
  justify-self: end;
}
.manual-ai-bridge p:nth-child(3) {
  border-left: 3px solid var(--dark);
  color: var(--dark);
  font-weight: 800;
  padding-left: 18px;
}
.manual-ai-bridge .lede {
  color: var(--dark);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin-top: 6px;
}
.light-panel {
  background: #fff;
  border-color: var(--line-dark);
}
.light-panel img {
}

.intro-section,
.compliance,
.guarantee,
.urgency {
  text-align: center;
}
.guarantee h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}
.guarantee .sketch-row > div:first-child > p:not(.guarantee-preheadline) {
  text-align: left;
}
.guarantee-preheadline {
  color: var(--dark-muted);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.45;
  margin: 0 auto 16px;
  max-width: 760px;
}
.guarantee .image-panel {
  justify-self: center;
  max-width: min(360px, 100%);
  min-height: 0;
  width: 100%;
}
.guarantee .image-panel img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.intro-center {
  display: grid;
  justify-items: center;
}
.intro-center > .copy-stack {
  text-align: left;
}
.intro-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  gap: clamp(4px, 0.8vw, 10px);
  justify-content: center;
  margin-bottom: clamp(38px, 5vw, 62px);
}
.intro-heading-logo {
  animation: logo-reveal 700ms ease-out both, logo-float 4200ms ease-in-out 800ms infinite;
  display: inline-block;
  filter: invert(1);
  height: clamp(74px, 10vw, 132px);
  max-width: min(560px, 86vw);
  object-fit: contain;
  width: min(560px, 86vw);
}
.checks {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 30px auto;
  max-width: 560px;
  padding: 0;
  width: 100%;
}
.checks li {
  border-top: 1px solid var(--line-dark);
  color: var(--dark);
  font-weight: 800;
  padding-top: 14px;
  text-align: left;
}
.checks li::before { content: "+ "; font-weight: 900; }
.center-note,
.center-cta,
.urgency-center { text-align: center; }

.intro-center > .center-note {
  text-align: left;
  width: 100%;
}

@keyframes logo-reveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-heading-logo {
    animation: none;
  }
}

.steps-wrap > .section-label {
  font-size: clamp(1.35rem, 2.45vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.step-row {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}
.step-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
}
.step-row.reverse .step-video {
  order: 2;
}
.step-video {
  aspect-ratio: 4 / 3;
  min-height: 190px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.step-video__preview {
  background: #050505;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.step-video__overlay {
  align-items: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 18px;
  position: relative;
  z-index: 2;
}
.step-video__play {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  display: grid;
  height: 58px;
  justify-items: center;
  width: 58px;
}
.step-video__play .play-icon {
  border-bottom-width: 13px;
  border-left-color: var(--dark);
  border-left-width: 21px;
  border-top-width: 13px;
  margin-left: 5px;
}

.comparison {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}
.comparison-column {
  padding: clamp(24px, 4vw, 42px);
}
.comparison-column + .comparison-column {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.comparison-column ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.comparison-column li {
  color: rgba(255, 255, 255, 0.68);
  padding-left: 26px;
  position: relative;
}
.comparison-column li::before {
  left: 0;
  position: absolute;
}
.bad li::before { content: "x"; }
.good li::before { content: "+"; }
.cost {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 24px;
  padding-top: 22px;
}
.cost span,
.cost small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}
.cost strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  margin: 8px 0;
}
.comparison-column.good .cost small {
  padding-bottom: 18px;
}
.comparison-column .button {
  background: #fff;
  border-color: #fff;
  color: var(--dark);
}
.comparison-column .button:hover,
.comparison-column .button:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--dark);
}

.proof-strip strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.proof-strip > div {
  display: grid;
  gap: 8px;
}
.urgency h2 span {
  border: 1px solid var(--line);
  display: inline-block;
  padding: 0 12px;
}
.urgency-center p:not(.last-chance) {
  text-align: left;
}
.last-chance {
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.3;
  margin-top: 22px;
  text-transform: uppercase;
}

details {
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
}
details:last-child { border-bottom: 1px solid var(--line-dark); }
summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}
summary::-webkit-details-marker { display: none; }

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: clamp(38px, 6vw, 62px) 0 24px;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, 0.6fr));
}
.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 40px;
  object-fit: contain;
}
.footer-brand-block p,
.footer-bottom,
.footer-column a {
  color: rgba(255, 255, 255, 0.68);
}
.footer-brand-block p {
  margin: 0;
  max-width: 420px;
}
.footer-column {
  align-content: start;
  display: grid;
  gap: 10px;
}
.footer-column strong {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.footer-column a,
.footer-bottom a {
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
}

.media-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 20px;
  position: fixed;
  z-index: 60;
}
.media-modal[hidden] { display: none; }
.media-modal__backdrop {
  background: rgba(0, 0, 0, 0.84);
  inset: 0;
  position: absolute;
}
.media-modal__dialog {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  max-width: 960px;
  padding: 20px;
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}
.media-modal__dialog p {
  color: rgba(255, 255, 255, 0.68);
}
.media-modal__video {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: block;
  margin-bottom: 18px;
  max-height: min(72vh, 620px);
  width: 100%;
}
.media-modal__video[hidden] {
  display: none;
}
.media-modal__close {
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 10px 14px;
  position: absolute;
  right: 20px;
  top: 20px;
  text-transform: uppercase;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(16, 16, 16, 0.18);
    bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 100vh;
    height: 100dvh;
    max-width: 86vw;
    opacity: 0;
    overflow-y: auto;
    padding: 86px 18px 22px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: none;
    clip-path: inset(0 0 0 100%);
    transition: opacity 180ms ease, clip-path 180ms ease, visibility 180ms ease;
    visibility: hidden;
    width: min(320px, calc(100vw - 44px));
    z-index: 1001;
  }
  .site-nav a {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 44px;
    text-align: center;
  }
  .site-nav a,
  .site-nav .nav-cta {
    width: 100%;
  }
  .site-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .sketch-row,
  .sketch-row.reverse,
  .step-row,
  .step-row.reverse,
  .comparison,
  .proof-strip {
    grid-template-columns: 1fr;
  }
  .step-row.reverse .step-video { order: 0; }
  .comparison-column + .comparison-column {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .proof-strip > div {
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .proof-strip > div:first-child { border-top: 0; }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .manual-ai-row {
    grid-template-columns: 1fr;
  }
  .manual-ai-row .image-panel {
    aspect-ratio: 16 / 9;
    order: -1;
  }
  .manual-ai-bridge p,
  .manual-ai-bridge p:nth-child(2) {
    justify-self: start;
  }
  .compat-strip {
    grid-template-columns: 1fr;
  }
  .compat-strip > * {
    border-right: 0;
  }
  .compat-strip span {
    border-top: 0;
  }
  .compat-logo {
    border-top: 1px solid var(--line);
    height: 86px;
    padding: 20px clamp(90px, 26vw, 140px);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 60px;
    padding-left: 14px;
    padding-right: 12px;
  }
  .brand img {
    height: 32px;
    max-width: min(148px, calc(100vw - 104px));
  }
  .site-nav {
    padding: 72px 16px 18px;
    width: min(300px, calc(100vw - 24px));
  }
  .container {
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    width: 100vw;
  }
  .section-dark,
  .section-light {
    padding-bottom: 46px;
    padding-top: 46px;
  }
  .hero {
    padding-top: 28px;
  }
  h1 {
    font-size: 1.42rem;
    line-height: 1.14;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.55rem;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 1.12rem;
    line-height: 1.14;
  }
  p, li, summary {
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .steps-wrap > .section-label {
    font-size: 1.18rem;
    line-height: 1.18;
    margin-bottom: 28px;
  }
  .lede,
  .lead-line {
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .rhythm {
    font-size: 1.35rem;
    line-height: 1.12;
  }
  h1,
  h2,
  .rhythm {
    overflow-wrap: break-word;
  }
  .rotating-text-wide {
    display: inline;
    min-width: 0;
    white-space: normal;
  }
  .signup-form {
    gap: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 6px;
  }
  .signup-form input,
  .signup-form button,
  .button {
    min-height: 46px;
  }
  .signup-form button,
  .button { width: 100%; }
  .vsl-box {
    aspect-ratio: 16 / 10;
    margin-bottom: 18px;
    margin-top: 18px;
  }
  .vsl-video-box {
    aspect-ratio: 1608 / 1080;
    margin-bottom: 18px;
    margin-top: 8px;
  }
  .vsl-play-overlay {
    height: 58px;
    width: 58px;
  }
  .vsl-play-overlay .play-icon {
    border-bottom-width: 12px;
    border-left-width: 19px;
    border-top-width: 12px;
  }
  .compat-strip {
    margin-top: 30px;
  }
  .compat-strip span {
    min-height: 54px;
  }
  .compat-logo {
    height: 62px;
    padding: 14px 92px;
  }
  .story-opening {
    margin-bottom: 34px;
  }
  .story-opening h2 {
    font-size: 1.36rem;
    line-height: 1.12;
  }
  .intro-heading {
    gap: 10px;
  }
  .intro-heading-logo {
    height: 42px;
    max-width: 210px;
  }
  .guarantee h2 {
    font-size: 1.28rem;
    line-height: 1.16;
  }
  .guarantee-preheadline {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .sketch-row,
  .step-row {
    gap: 22px;
    margin-top: 34px;
  }
  .step-video {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .step-video__play {
    height: 52px;
    width: 52px;
  }
  .step-video__play .play-icon {
    border-bottom-width: 11px;
    border-left-width: 18px;
    border-top-width: 11px;
  }
  .manual-ai-row {
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .manual-ai-row .image-panel {
    aspect-ratio: 4 / 3;
  }
  .manual-ai-bridge p:nth-child(3) {
    padding-left: 14px;
  }
  .media-modal__dialog { padding-top: 72px; }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.28rem;
    line-height: 1.15;
  }
  h2 {
    font-size: 1.38rem;
  }
  .guarantee h2 {
    font-size: 1.16rem;
  }
  .guarantee-preheadline {
    font-size: 0.88rem;
  }
  .intro-heading-logo {
    height: 36px;
    max-width: 180px;
  }
  .lede,
  .lead-line {
    font-size: 1.02rem;
  }
  .steps-wrap > .section-label {
    font-size: 1.08rem;
  }
  .compat-logo {
    padding-left: 76px;
    padding-right: 76px;
  }
}

/* Static homepage account dropdown */
body:not(.admin-body) .baam-account-menu {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

body:not(.admin-body) .baam-account-menu * {
  text-transform: none !important;
  letter-spacing: 0 !important;
}

body:not(.admin-body) .baam-account-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 52px !important;
  max-width: 260px !important;
  padding: 7px 14px 7px 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px !important;
  background: #101010 !important;
  box-shadow: 0 16px 34px rgba(16, 16, 16, 0.22) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body:not(.admin-body) .baam-account-avatar,
body:not(.admin-body) .baam-account-summary-avatar {
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
}

body:not(.admin-body) .baam-account-avatar {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  background: #ffffff !important;
  color: #101010 !important;
}

body:not(.admin-body) .baam-account-name {
  display: block !important;
  max-width: 140px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body:not(.admin-body) .baam-account-chevron {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  transition: transform 0.16s ease !important;
}

body:not(.admin-body) .baam-account-menu.is-open .baam-account-chevron {
  transform: rotate(180deg) !important;
}

body:not(.admin-body) .baam-account-dropdown {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  z-index: 10050 !important;
  display: none !important;
  width: min(320px, calc(100vw - 28px)) !important;
  max-height: min(70vh, 400px) !important;
  overflow: auto !important;
  padding: 8px !important;
  border: 1px solid rgba(16, 16, 16, 0.10) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 70px rgba(16, 16, 16, 0.22) !important;
  color: #101010 !important;
  text-align: left !important;
}

body:not(.admin-body) .baam-account-menu.is-open > .baam-account-dropdown {
  display: grid !important;
  gap: 6px !important;
}

body:not(.admin-body) .baam-account-summary {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 8px 10px !important;
  border-bottom: 1px solid rgba(16, 16, 16, 0.10) !important;
}

body:not(.admin-body) .baam-account-summary-avatar {
  width: 38px !important;
  height: 38px !important;
  background: #101010 !important;
  color: #ffffff !important;
}

body:not(.admin-body) .baam-account-summary-copy {
  min-width: 0 !important;
}

body:not(.admin-body) .baam-account-summary strong,
body:not(.admin-body) .baam-account-summary span {
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body:not(.admin-body) .baam-account-summary strong {
  color: #101010 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

body:not(.admin-body) .baam-account-summary span {
  margin-top: 2px !important;
  color: rgba(16, 16, 16, 0.58) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

/* Public account summary avatar contrast */
body:not(.admin-body) .baam-account-summary > .baam-account-summary-avatar {
  display: grid !important;
  place-items: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  border-radius: 999px !important;
  background: #101010 !important;
  color: #ffffff !important;
  overflow: visible !important;
}

body:not(.admin-body) .baam-account-summary > .baam-account-summary-avatar svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

body:not(.admin-body) .baam-account-links {
  display: grid !important;
  gap: 3px !important;
  padding: 2px 0 0 !important;
}

body:not(.admin-body) .baam-account-links a,
body:not(.admin-body) .baam-account-logout {
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 42px !important;
  padding: 7px 8px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #2f343b !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  text-decoration: none !important;
}

body:not(.admin-body) .baam-account-links a:hover,
body:not(.admin-body) .baam-account-logout:hover {
  background: #f3f4f6 !important;
  color: #101010 !important;
}

body:not(.admin-body) .baam-account-link-icon {
  display: grid !important;
  place-items: center !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border: 1px solid rgba(16, 16, 16, 0.10) !important;
  border-radius: 8px !important;
  background: #f6f7f8 !important;
  color: rgba(16, 16, 16, 0.70) !important;
}

body:not(.admin-body) .baam-account-link-icon svg,
body:not(.admin-body) .baam-account-links svg,
body:not(.admin-body) .baam-account-logout svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

body:not(.admin-body) .baam-account-logout {
  margin-top: 5px !important;
  min-height: 44px !important;
  background: #101010 !important;
  color: #ffffff !important;
}

body:not(.admin-body) .baam-account-logout .baam-account-link-icon {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

@media (max-width: 900px) {
  body:not(.admin-body) .baam-account-menu,
  body:not(.admin-body) .baam-account-trigger {
    width: 100% !important;
    max-width: none !important;
  }

  body:not(.admin-body) .baam-account-trigger {
    justify-content: space-between !important;
  }

  body:not(.admin-body) .site-nav .baam-account-trigger {
    width: 100% !important;
    max-width: none !important;
    justify-content: space-between !important;
  }

  body:not(.admin-body) .baam-account-dropdown {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    margin-top: 8px !important;
  }

  body:not(.admin-body) .site-nav .baam-account-dropdown {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    margin-top: 8px !important;
  }

  body:not(.admin-body) .site-nav .baam-account-menu > .baam-account-dropdown {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    margin-top: 8px !important;
  }
}

/* Public header account pill parity with Command Center */
body:not(.admin-body) .site-nav .baam-account-trigger,
body:not(.admin-body) .baam-account-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px !important;
  max-width: 220px !important;
  padding: 6px 18px 6px 8px !important;
  border: 1px solid rgba(16, 16, 16, 0.18) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #101010 !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body:not(.admin-body) .site-nav .baam-account-trigger:hover,
body:not(.admin-body) .baam-account-trigger:hover,
body:not(.admin-body) .site-nav .baam-account-trigger:focus-visible,
body:not(.admin-body) .baam-account-trigger:focus-visible {
  background: #101010 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body:not(.admin-body) .site-nav .baam-account-trigger:hover .baam-account-name,
body:not(.admin-body) .baam-account-trigger:hover .baam-account-name,
body:not(.admin-body) .site-nav .baam-account-trigger:focus-visible .baam-account-name,
body:not(.admin-body) .baam-account-trigger:focus-visible .baam-account-name,
body:not(.admin-body) .baam-account-menu.is-open .baam-account-trigger .baam-account-name {
  color: #ffffff !important;
}

body:not(.admin-body) .site-nav .baam-account-avatar,
body:not(.admin-body) .baam-account-avatar {
  display: inline-grid !important;
  place-items: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  flex: 0 0 38px !important;
  border-radius: 999px !important;
  background: #101010 !important;
  color: #ffffff !important;
}

body:not(.admin-body) .site-nav .baam-account-avatar svg,
body:not(.admin-body) .baam-account-avatar svg {
  width: 19px !important;
  height: 19px !important;
}

body:not(.admin-body) .site-nav .baam-account-name,
body:not(.admin-body) .baam-account-name {
  display: inline-block !important;
  max-width: 96px !important;
  color: #101010 !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body:not(.admin-body) .site-nav .baam-account-chevron,
body:not(.admin-body) .baam-account-chevron {
  display: none !important;
}

@media (max-width: 900px) {
  body:not(.admin-body) .site-nav .baam-account-trigger,
  body:not(.admin-body) .baam-account-trigger {
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* Required viewport hardening for public pages, nav drawers, forms, videos, and media modals. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  min-width: 0;
}

.container,
.site-header,
.site-nav,
.footer-grid,
.footer-bottom,
.media-modal__dialog,
.signup-form,
.comparison,
.proof-strip,
.compat-strip,
.sketch-row,
.step-row,
.manual-ai-row {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.compat-logo,
.button,
.signup-form input,
.signup-form button,
.site-nav a,
.site-lang-switch,
.media-modal__close {
  box-sizing: border-box;
}

h1,
h2,
h3,
p,
li,
summary,
.button,
.site-nav a,
.legal,
.eyebrow,
.section-label {
  overflow-wrap: anywhere;
}

video,
iframe,
canvas,
svg,
img {
  max-width: 100%;
}

.media-modal {
  width: 100dvw;
  max-width: 100dvw;
  max-height: 100dvh;
  overflow: hidden;
}

.media-modal__dialog {
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.media-modal__video {
  max-height: min(62dvh, 620px);
}

@media (max-width: 900px) {
  .site-nav {
    width: min(320px, calc(100dvw - 20px));
    max-width: calc(100dvw - 20px);
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .site-header {
    gap: 8px;
  }

  .site-nav {
    width: min(300px, calc(100dvw - 16px));
    padding-left: 12px;
    padding-right: 12px;
  }

  .signup-form input,
  .signup-form button,
  .button {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .compat-logo {
    height: 58px;
    padding-left: clamp(24px, 22vw, 92px);
    padding-right: clamp(24px, 22vw, 92px);
  }

  .media-modal {
    padding: 0;
  }

  .media-modal__dialog {
    width: 100dvw;
    max-width: 100dvw;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
    padding: max(58px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }

  .media-modal__close {
    right: max(12px, env(safe-area-inset-right));
    top: max(12px, env(safe-area-inset-top));
  }
}

@media (max-width: 320px) {
  .brand img {
    max-width: min(132px, calc(100dvw - 92px));
  }

  .nav-toggle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 1.16rem;
  }

  h2 {
    font-size: 1.26rem;
  }

  .compat-logo {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-height: 430px) {
  .site-header {
    position: relative;
    min-height: 54px;
  }

  .site-nav {
    padding-top: 62px;
  }

  .section-dark,
  .section-light {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero {
    padding-top: 18px;
  }

  .vsl-box,
  .vsl-video-box {
    max-height: 64dvh;
  }
}

/* Public account dropdown parity with Command Center */
body:not(.admin-body) .site-nav .baam-account-dropdown,
body:not(.admin-body) .baam-account-dropdown {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  z-index: 10050 !important;
  display: none !important;
  gap: 8px !important;
  width: min(286px, calc(100vw - 24px)) !important;
  max-height: min(78vh, 520px) !important;
  overflow: auto !important;
  padding: 10px !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.20) !important;
  color: #101010 !important;
  text-align: left !important;
}

body:not(.admin-body) .site-nav .baam-account-menu.is-open > .baam-account-dropdown,
body:not(.admin-body) .baam-account-menu.is-open > .baam-account-dropdown {
  display: grid !important;
}

body:not(.admin-body) .site-nav .baam-account-summary,
body:not(.admin-body) .baam-account-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 4px !important;
  padding: 4px 4px 10px !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10) !important;
}

body:not(.admin-body) .site-nav .baam-account-summary-avatar,
body:not(.admin-body) .baam-account-summary-avatar {
  display: none !important;
}

body:not(.admin-body) .site-nav .baam-account-summary-copy,
body:not(.admin-body) .baam-account-summary-copy {
  display: contents !important;
}

body:not(.admin-body) .site-nav .baam-account-summary strong,
body:not(.admin-body) .baam-account-summary strong {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  color: #101010 !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

body:not(.admin-body) .site-nav .baam-account-summary span,
body:not(.admin-body) .baam-account-summary span {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  color: #475569 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

body:not(.admin-body) .site-nav .baam-account-links,
body:not(.admin-body) .baam-account-links {
  display: grid !important;
  gap: 4px !important;
  padding: 0 !important;
}

body:not(.admin-body) .site-nav .baam-account-links a,
body:not(.admin-body) .baam-account-links a,
body:not(.admin-body) .site-nav .baam-account-logout,
body:not(.admin-body) .baam-account-logout {
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 6px 8px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #101010 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
  transform: none !important;
}

body:not(.admin-body) .site-nav .baam-account-links a:hover,
body:not(.admin-body) .baam-account-links a:hover,
body:not(.admin-body) .site-nav .baam-account-logout:hover,
body:not(.admin-body) .baam-account-logout:hover,
body:not(.admin-body) .site-nav .baam-account-links a:focus-visible,
body:not(.admin-body) .baam-account-links a:focus-visible,
body:not(.admin-body) .site-nav .baam-account-logout:focus-visible,
body:not(.admin-body) .baam-account-logout:focus-visible {
  background: #f3f4f6 !important;
  color: #101010 !important;
  outline: none !important;
}

body:not(.admin-body) .site-nav .baam-account-link-icon,
body:not(.admin-body) .baam-account-link-icon,
body:not(.admin-body) .site-nav .baam-account-logout .baam-account-link-icon,
body:not(.admin-body) .baam-account-logout .baam-account-link-icon {
  display: grid !important;
  place-items: center !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #f3f4f6 !important;
  color: #101010 !important;
}

body:not(.admin-body) .site-nav .baam-account-link-icon svg,
body:not(.admin-body) .baam-account-link-icon svg,
body:not(.admin-body) .site-nav .baam-account-links svg,
body:not(.admin-body) .baam-account-links svg,
body:not(.admin-body) .site-nav .baam-account-logout svg,
body:not(.admin-body) .baam-account-logout svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
  color: currentColor !important;
  stroke: currentColor !important;
}

@media (max-width: 900px) {
  body:not(.admin-body) .site-nav .baam-account-dropdown,
  body:not(.admin-body) .baam-account-dropdown {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    margin-top: 8px !important;
  }
}
