:root {
  --zs-ink: #111827;
  --zs-muted: #66758a;
  --zs-soft: #eef5f8;
  --zs-line: rgba(148, 163, 184, .32);
  --zs-deep: #101827;
  --zs-card: rgba(255, 255, 255, .78);
  --zs-teal: #08bea7;
  --zs-mint: #5eead4;
  --zs-violet: #6b5cf6;
  --zs-coral: #f06a5b;
  --zs-gold: #f4b84b;
  --zs-shadow: 0 28px 80px rgba(15, 23, 42, .13);
}

/* Acquisition cockpit v2: first viewport behaves like an app, not a landing page. */
.acquisitionApp {
  background:
    linear-gradient(120deg, rgba(204, 251, 241, .42), rgba(255, 255, 255, .86) 34%, rgba(255, 228, 230, .34)),
    #f8fafc;
}

.acquisitionApp .siteHeader {
  position: sticky;
  top: 0;
  z-index: 70;
  padding-block: 12px;
  border-bottom-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 46px rgba(15, 23, 42, .06);
}

.acquisitionApp .brand small {
  letter-spacing: .06em;
  text-transform: uppercase;
}

.acquisitionApp .mainNav {
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 999px;
  background: rgba(248, 250, 252, .76);
}

.acquisitionApp .mainNav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.acquisitionApp .mainNav a:hover {
  color: #0f766e;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}

.acqShell {
  width: min(100% - 32px, 1580px);
  padding: clamp(14px, 2vw, 28px) 0 56px;
}

.acqWorkspace.acqCockpit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: calc(100vh - 124px);
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .9), rgba(248, 250, 252, .68)),
    linear-gradient(120deg, rgba(20, 184, 166, .14), rgba(244, 114, 182, .1));
  box-shadow: 0 30px 90px rgba(15, 23, 42, .14);
  backdrop-filter: blur(26px);
}

.acqAppBar {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) auto minmax(210px, .6fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .74);
}

.acqAppStatus,
.acqAppNotice,
.acqAppTabs {
  display: flex;
  align-items: center;
}

.acqAppStatus {
  gap: 12px;
}

.acqAppStatus b,
.acqAppNotice b {
  display: block;
  color: #0f172a;
  font-weight: 950;
}

.acqAppStatus small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.acqAppTabs {
  justify-self: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  background: rgba(241, 245, 249, .76);
}

.acqAppTabs a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.acqAppTabs a:hover,
.acqAppTabs a:nth-child(2) {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.acqAppTabs b {
  min-width: 20px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #fff;
  background: #fb7185;
  font-size: 11px;
  text-align: center;
}

.acqAppNotice {
  justify-self: end;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 184, 166, .24);
  border-radius: 16px;
  color: #0f766e;
  background: linear-gradient(90deg, #ecfdf5, #fff7ed);
  box-shadow: 0 14px 34px rgba(20, 184, 166, .12);
  font-size: 13px;
  font-weight: 900;
}

.acqAppNotice span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acqStage {
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(440px, 1.2fr) minmax(320px, .82fr);
  gap: 14px;
  min-height: 610px;
}

.acqIntroPanel,
.acqLivePanel,
.acqInboxPanel {
  border-radius: 24px;
  box-shadow: none;
}

.acqIntroPanel {
  min-height: auto;
  padding: 26px;
  background:
    linear-gradient(155deg, rgba(15, 23, 42, .98), rgba(24, 39, 57, .96)),
    linear-gradient(90deg, rgba(20, 184, 166, .34), rgba(251, 113, 133, .16));
}

.acqPulseHeader {
  gap: 9px;
  letter-spacing: .04em;
}

.acqIntroPanel h1 {
  max-width: 460px;
  margin: 20px 0 14px;
  font-size: clamp(34px, 3.1vw, 54px);
  line-height: 1.02;
}

.acqIntroPanel p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.62;
}

.acqTrustStrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
}

.acqTrustStrip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  line-height: 1.2;
}

.acqActionRow {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.acqActionRow .btn {
  justify-content: center;
}

.acqComplianceNote {
  margin-top: 14px;
  font-size: 11px;
}

.acqLivePanel {
  padding: 18px;
  background: rgba(255, 255, 255, .72);
}

.acqPanelTop {
  margin-bottom: 12px;
}

.acqPanelTop h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.acqLiveCounter {
  padding: 9px 11px;
}

.acqPersonaGrid {
  gap: 12px;
}

.acqPersonaCard {
  min-height: 238px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .12);
}

.acqPersonaCard:nth-child(1) {
  grid-row: span 2;
  min-height: 488px;
}

.acqPersonaCard img {
  min-height: 238px;
}

.acqPersonaCard:nth-child(1) img {
  min-height: 488px;
}

.acqCardHeader {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.acqCardHeader .acqOnlineDot {
  position: static;
}

.acqCardHeader em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(15, 23, 42, .54);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.acqPersonaBody {
  right: 14px;
  bottom: 14px;
  left: 14px;
}

.acqPersonaBody b {
  font-size: 20px;
}

.acqPersonaCard:nth-child(1) .acqPersonaBody b {
  font-size: 30px;
}

.acqPersonaBody strong {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #111827;
  background: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.acqActivityFeed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.acqActivityFeed div {
  min-height: 58px;
  padding: 10px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.35;
}

.acqInboxPanel {
  min-height: auto;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(30, 41, 59, .97), rgba(15, 23, 42, .98)),
    linear-gradient(120deg, rgba(20, 184, 166, .22), rgba(251, 113, 133, .12));
}

.acqInboxChrome {
  padding-bottom: 12px;
}

.acqInboxMessage {
  grid-template-columns: 58px 1fr;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
}

.acqInboxMessage img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.acqInboxMessage b {
  font-size: 20px;
}

.acqInboxMessage p {
  font-size: 13px;
}

.acqChatTease {
  gap: 10px;
  margin-top: 16px;
}

.acqChatTease p {
  padding: 11px 13px;
  font-size: 13px;
}

.acqChatTease .fromUser {
  justify-self: end;
  color: #e2e8f0;
  background: rgba(255, 255, 255, .1);
}

.acqChatTease .typing:before {
  content: "typing";
  margin-right: 4px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.acqWalletTease {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .2);
}

.acqWalletTease b {
  font-size: 22px;
}

.acqProfileLink {
  border-color: rgba(153, 246, 228, .28);
  background: rgba(20, 184, 166, .08);
}

@media (max-width: 1320px) {
  .acqStage {
    grid-template-columns: minmax(230px, .72fr) minmax(390px, 1fr) minmax(300px, .82fr);
  }

  .acqIntroPanel h1 {
    font-size: clamp(32px, 3vw, 46px);
  }
}

@media (max-width: 1120px) {
  .acqAppBar {
    grid-template-columns: 1fr;
  }

  .acqAppTabs,
  .acqAppNotice {
    justify-self: stretch;
  }

  .acqAppTabs {
    justify-content: center;
  }

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

  .acqIntroPanel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .acquisitionApp .siteHeader {
    padding: 10px 14px;
  }

  .acquisitionApp .mainNav {
    border-radius: 18px;
  }

  .acqShell {
    width: min(100% - 16px, 100%);
    padding: 10px 0 96px;
  }

  .acqWorkspace.acqCockpit {
    gap: 10px;
    min-height: auto;
    padding: 10px;
    border-radius: 22px;
  }

  .acqAppBar {
    padding: 8px;
    border-radius: 18px;
  }

  .acqAppStatus small {
    white-space: normal;
  }

  .acqAppTabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .acqAppNotice {
    min-height: 50px;
  }

  .acqStage {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .acqInboxPanel {
    order: -3;
  }

  .acqLivePanel {
    order: -2;
  }

  .acqIntroPanel {
    order: -1;
  }

  .acqIntroPanel,
  .acqLivePanel,
  .acqInboxPanel {
    padding: 16px;
    border-radius: 18px;
  }

  .acqIntroPanel h1 {
    margin-top: 16px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .acqTrustStrip {
    grid-template-columns: repeat(3, minmax(84px, 1fr));
    overflow-x: auto;
  }

  .acqPersonaGrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .acqPersonaCard,
  .acqPersonaCard:nth-child(1) {
    flex: 0 0 78%;
    min-height: 330px;
    scroll-snap-align: start;
  }

  .acqPersonaCard img,
  .acqPersonaCard:nth-child(1) img {
    min-height: 330px;
  }

  .acqPersonaCard:nth-child(1) .acqPersonaBody b {
    font-size: 24px;
  }

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

/* Acquisition polish v3: app-like first viewport, not a landing page. */
.acquisitionApp {
  color: #0f172a;
  background:
    linear-gradient(118deg, rgba(236, 254, 255, .68), rgba(255, 255, 255, .92) 38%, rgba(255, 241, 242, .58)),
    #f8fafc;
}

.acquisitionApp .siteHeader {
  min-height: 76px;
  padding: 12px clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .075);
  backdrop-filter: blur(22px);
}

.acquisitionApp .brandMark {
  box-shadow: 0 14px 34px rgba(14, 165, 233, .24);
}

.acquisitionApp .brand b {
  letter-spacing: 0;
}

.acquisitionApp .brand small {
  color: #64748b;
  letter-spacing: .08em;
}

.acquisitionApp .mainNav {
  max-width: min(760px, 48vw);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
  border: 1px solid rgba(148, 163, 184, .18);
  background: rgba(241, 245, 249, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

.acquisitionApp .mainNav::-webkit-scrollbar {
  display: none;
}

.acquisitionApp .mainNav a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 12px;
  color: #334155;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.acquisitionApp .mainNav a:hover,
.acquisitionApp .mainNav a:nth-child(3) {
  color: #0f172a;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .09);
}

.navBadge,
.headerMiniSignal b {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: #fb7185;
  font-size: 11px;
  font-weight: 950;
}

.headerActions {
  gap: 8px;
}

.headerMiniSignal,
.headerCreditPill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 999px;
  color: #0f172a;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .07);
  font-size: 13px;
  font-weight: 900;
}

.headerCreditPill {
  color: #065f46;
  border-color: rgba(20, 184, 166, .32);
  background: linear-gradient(90deg, rgba(236, 253, 245, .95), rgba(255, 247, 237, .95));
}

.acqShell {
  width: min(100% - 32px, 1620px);
  padding: 18px 0 52px;
}

.acqWorkspace.acqCockpit {
  position: relative;
  overflow: hidden;
  gap: 16px;
  min-height: calc(100vh - 132px);
  padding: 16px;
  border-color: rgba(148, 163, 184, .24);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .78), rgba(248, 250, 252, .56)),
    linear-gradient(115deg, rgba(20, 184, 166, .18), rgba(59, 130, 246, .08) 42%, rgba(244, 114, 182, .14));
  box-shadow: 0 34px 120px rgba(15, 23, 42, .16);
}

.acqWorkspace.acqCockpit:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.62), transparent 82%);
}

.acqAppBar,
.acqStage {
  position: relative;
  z-index: 1;
}

.acqAppBar {
  grid-template-columns: minmax(285px, 1fr) auto minmax(240px, .64fr);
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(15, 23, 42, .84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 46px rgba(15, 23, 42, .16);
  backdrop-filter: blur(24px);
}

.acqAppStatus b,
.acqAppNotice b {
  color: #fff;
}

.acqAppStatus small {
  color: #cbd5e1;
}

.acqAppTabs {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
}

.acqAppTabs a {
  color: #cbd5e1;
}

.acqAppTabs a:hover,
.acqAppTabs a:nth-child(2) {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 26px rgba(0, 0, 0, .12);
}

.acqAppNotice {
  border-color: rgba(45, 212, 191, .25);
  color: #d1fae5;
  background: linear-gradient(90deg, rgba(13, 148, 136, .24), rgba(244, 63, 94, .16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.acqAppNotice span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.acqAppNotice span i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2dd4bf;
  box-shadow: 0 0 0 7px rgba(45, 212, 191, .11);
}

.acqStage {
  grid-template-columns: minmax(220px, .58fr) minmax(500px, 1.25fr) minmax(350px, .88fr);
  gap: 18px;
  min-height: 640px;
}

.acqIntroPanel,
.acqLivePanel,
.acqInboxPanel {
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 70px rgba(15, 23, 42, .16);
}

.acqIntroPanel {
  padding: 24px;
  background: linear-gradient(160deg, rgba(15, 23, 42, .94), rgba(30, 41, 59, .9));
}

.acqPulseHeader small {
  color: #99f6e4;
}

.acqIntroPanel h1 {
  max-width: 420px;
  margin: 18px 0 12px;
  font-size: clamp(30px, 2.45vw, 43px);
  letter-spacing: 0;
}

.acqIntroPanel p {
  max-width: 385px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.58;
}

.acqTrustStrip {
  gap: 9px;
  margin-top: 20px;
}

.acqTrustStrip span {
  min-height: 52px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
}

.acqSocialProof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(153, 246, 228, .16);
  border-radius: 16px;
  color: #d1fae5;
  background: rgba(20, 184, 166, .08);
  font-size: 12px;
  line-height: 1.35;
}

.acqSocialProof span {
  position: relative;
  display: flex;
  width: 58px;
}

.acqSocialProof i {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: -8px;
  border: 2px solid rgba(15, 23, 42, .94);
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.acqSocialProof i:nth-child(2) {
  background: linear-gradient(135deg, #fb7185, #fbbf24);
}

.acqSocialProof i:nth-child(3) {
  background: linear-gradient(135deg, #a78bfa, #22c55e);
}

.acqSocialProof b {
  color: #e2e8f0;
  font-weight: 850;
}

.acqActionRow {
  margin-top: 20px;
}

.acqActionRow .btn.primary {
  box-shadow: 0 18px 38px rgba(20, 184, 166, .25);
}

.acqComplianceNote {
  color: #94a3b8;
}

.acqLivePanel {
  padding: 22px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(20px);
}

.acqPanelTop {
  margin-bottom: 16px;
}

.acqPanelTop small {
  color: #0891b2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.acqPanelTop h2 {
  color: #0f172a;
  font-size: clamp(22px, 1.8vw, 28px);
}

.acqPersonaGrid {
  gap: 17px;
}

.acqPersonaCard {
  min-height: 252px;
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, .16);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.acqPersonaCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .2);
}

.acqPersonaCard:nth-child(1) {
  min-height: 522px;
}

.acqPersonaCard img {
  min-height: 252px;
}

.acqPersonaCard:nth-child(1) img {
  min-height: 522px;
}

.acqPersonaCard:after {
  background:
    linear-gradient(to top, rgba(15, 23, 42, .88), rgba(15, 23, 42, .18) 58%, rgba(15, 23, 42, .04));
}

.acqPersonaBody {
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.acqPersonaBody small {
  color: rgba(255, 255, 255, .82);
}

.acqMoodRow {
  margin-top: 11px;
}

.acqActivityFeed {
  gap: 10px;
  margin-top: 16px;
}

.acqActivityFeed div {
  min-height: 66px;
  border-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
}

.acqInboxPanel {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(30, 41, 59, .98), rgba(15, 23, 42, .99)),
    linear-gradient(115deg, rgba(20, 184, 166, .22), rgba(244, 63, 94, .14));
}

.acqMessengerMeta {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.acqMessengerMeta img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.acqMessengerMeta b,
.acqMessengerMeta span {
  display: block;
}

.acqMessengerMeta b {
  font-size: 16px;
  font-weight: 950;
}

.acqMessengerMeta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}

.acqMessengerMeta span i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2dd4bf;
  box-shadow: 0 0 0 6px rgba(45, 212, 191, .1);
}

.acqMessengerMeta em {
  padding: 7px 9px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(20, 184, 166, .14);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.acqRelationBar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
}

.acqRelationBar span {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
}

.acqRelationBar span:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: linear-gradient(90deg, #2dd4bf, #facc15);
}

.acqInboxMessage {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.acqChatTease p {
  position: relative;
  max-width: 88%;
  padding: 12px 14px 24px;
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}

.acqMessageStatus {
  position: absolute;
  right: 12px;
  bottom: 7px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 850;
}

.acqMessageStatus.right {
  color: rgba(203, 213, 225, .72);
}

.acqChatTease .typing {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, .08);
}

.acqChatTease .typing:before {
  content: none;
}

.acqChatTease .typing em {
  color: #94a3b8;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.acqChatTease .typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
  animation: zsTyping 1.05s infinite ease-in-out;
}

.acqChatTease .typing span:nth-child(3) {
  animation-delay: .16s;
}

.acqChatTease .typing span:nth-child(4) {
  animation-delay: .32s;
}

.acqWalletTease {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(90deg, #dcfce7, #fffbeb);
}

.acqWalletTease small {
  grid-column: 1 / -1;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.acqProfileLink {
  margin-top: 12px;
}

.siteFooter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(100% - 32px, 1620px);
  margin: 0 auto 28px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 22px;
  color: #64748b;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
  backdrop-filter: blur(18px);
}

.siteFooter div {
  display: grid;
  gap: 4px;
}

.siteFooter b {
  color: #0f172a;
}

.siteFooter span {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.45;
}

.siteFooter nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.siteFooter a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #334155;
  background: rgba(241, 245, 249, .84);
  font-size: 12px;
  font-weight: 900;
}

@keyframes zsTyping {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: .42;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (max-width: 1240px) {
  .acqStage {
    grid-template-columns: minmax(210px, .58fr) minmax(430px, 1.08fr) minmax(320px, .86fr);
  }

  .headerCreditPill {
    display: none;
  }
}

@media (max-width: 1060px) {
  .acqStage {
    grid-template-columns: 1fr 1fr;
  }

  .acqIntroPanel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .headerMiniSignal,
  .headerCreditPill {
    display: none;
  }

  .acquisitionApp .mainNav {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .acquisitionApp .siteHeader {
    min-height: 66px;
  }

  .acqShell {
    width: min(100% - 14px, 100%);
    padding-top: 8px;
  }

  .acqWorkspace.acqCockpit {
    padding: 9px;
    border-radius: 24px;
  }

  .acqStage {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .acqInboxPanel {
    order: -3;
  }

  .acqLivePanel {
    order: -2;
  }

  .acqIntroPanel {
    order: -1;
  }

  .acqIntroPanel h1 {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 40px);
  }

  .acqIntroPanel p {
    max-width: 100%;
  }

  .acqPersonaGrid {
    gap: 12px;
  }

  .acqPersonaCard,
  .acqPersonaCard:nth-child(1) {
    flex-basis: 82%;
    min-height: 340px;
  }

  .acqPersonaCard img,
  .acqPersonaCard:nth-child(1) img {
    min-height: 340px;
  }

  .acqMessengerMeta {
    grid-template-columns: 44px 1fr;
  }

  .acqMessengerMeta em {
    grid-column: 2;
    width: fit-content;
  }

  .siteFooter {
    grid-template-columns: 1fr;
    margin-bottom: 82px;
  }

  .siteFooter nav {
    justify-content: flex-start;
  }
}

.productApp {
  min-height: 100vh;
  color: var(--zs-ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(8, 190, 167, .26), transparent 30rem),
    radial-gradient(circle at 92% 0%, rgba(240, 106, 91, .18), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4f8 48%, #f7fafc 100%);
}

.productApp .siteHeader {
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.productApp .mainNav a {
  color: #344256;
  font-size: 13px;
}

.productShell {
  width: min(100% - 36px, 1480px);
  margin: 0 auto;
  padding: 46px 0 64px;
}

.productHero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 28px;
  align-items: stretch;
}

.heroLeft,
.productConsole,
.appSection,
.appFeatureGrid article,
.appSplit,
.profileActionPanel,
.authHero,
.checkoutV2,
.cleanHero {
  border: 1px solid var(--zs-line);
  border-radius: 8px;
  background: var(--zs-card);
  box-shadow: var(--zs-shadow);
  backdrop-filter: blur(22px);
}

.heroLeft {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 66px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(8, 190, 167, .34), transparent 22rem),
    linear-gradient(145deg, rgba(14, 23, 37, .98), rgba(31, 42, 60, .95));
}

.heroLeft::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 234, 212, .22), transparent 68%);
  pointer-events: none;
}

.heroStatus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.heroStatus span {
  padding: 8px 12px;
  color: var(--zs-mint);
  border: 1px solid rgba(94, 234, 212, .32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.heroLeft h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: 0;
}

.heroLeft p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(226, 232, 240, .86);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.heroMetrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.heroMetrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.heroMetrics b {
  display: block;
  color: var(--zs-mint);
  font-size: 28px;
}

.heroMetrics span {
  display: block;
  margin-top: 5px;
  color: rgba(226, 232, 240, .78);
  font-weight: 750;
}

.productConsole {
  min-height: 620px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 106, 91, .2), transparent 25rem),
    linear-gradient(155deg, rgba(43, 54, 73, .95), rgba(18, 26, 40, .96));
}

.consoleTop,
.roomMockTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.consoleTop span,
.consoleTop i,
.liveDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12d5b5;
  box-shadow: 0 0 0 6px rgba(18, 213, 181, .12);
}

.consoleTop i {
  background: #ff7061;
  box-shadow: 0 0 0 6px rgba(255, 112, 97, .14);
}

.inboxNotice {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.inboxNotice img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.inboxNotice small,
.packageRail span,
.appSectionHead span {
  color: var(--zs-mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.inboxNotice b {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.inboxNotice p {
  margin: 6px 0 0;
  color: rgba(226, 232, 240, .75);
  line-height: 1.45;
}

.chatPreviewLine {
  width: fit-content;
  max-width: 82%;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.45;
}

.fromHer {
  background: rgba(8, 190, 167, .18);
  border: 1px solid rgba(94, 234, 212, .18);
}

.fromUser {
  margin-left: auto;
  background: rgba(255, 255, 255, .13);
}

.walletPreview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 8px;
  color: #0f172a;
  background: linear-gradient(135deg, #dffdf5, #fff2db);
}

.walletPreview span {
  color: #64748b;
  font-weight: 800;
}

.walletPreview b {
  font-size: 24px;
}

.walletPreview a {
  color: #047968;
  font-weight: 900;
}

.appSection,
.appSplit {
  margin-top: 28px;
  padding: 26px;
}

.appSectionHead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.appSectionHead h2,
.packageRail h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.appSectionHead a {
  color: var(--zs-teal);
  font-weight: 900;
}

.segmentBar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.segmentBar button {
  min-height: 40px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #334155;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.segmentBar button:hover,
.segmentBar button.is-active {
  border-color: rgba(14, 165, 233, .36);
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
}

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

.appProfileTile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #172033;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .16);
}

.appProfileTile img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.appProfileTile:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.appProfileTile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, .88) 100%);
}

.appProfileTile .liveDot {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
}

.appProfileTile div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 56px;
}

.appProfileTile b {
  display: block;
  font-size: 26px;
}

.appProfileTile small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.appProfileTile em {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  color: var(--zs-mint);
  font-style: normal;
  font-weight: 900;
}

.appFeatureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.appFeatureGrid article {
  padding: 24px;
}

.appFeatureGrid article span {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 10px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--zs-teal), var(--zs-violet));
  font-weight: 950;
}

.appFeatureGrid h3 {
  margin: 20px 0 8px;
  font-size: 22px;
}

.appFeatureGrid p {
  margin: 0;
  color: #607086;
  line-height: 1.6;
}

.appSplit {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 18px;
  color: #fff;
  background: rgba(15, 23, 42, .92);
}

.roomMock,
.packageRail {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.roomMock .bubble {
  display: block;
  width: fit-content;
  max-width: 76%;
  margin: 18px 0 0;
}

.roomMock .bubble.me {
  margin-left: auto;
}

.railPackage {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.railPackage span {
  color: rgba(226, 232, 240, .76);
  text-transform: none;
}

.railPackage em {
  grid-row: span 2;
  color: var(--zs-mint);
  font-style: normal;
  font-weight: 950;
}

.profileV2 {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
  gap: 26px;
}

.profilePortrait {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
}

.profilePortrait img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.portraitOverlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(18px);
}

.portraitOverlay span {
  color: var(--zs-mint);
  font-weight: 900;
  text-transform: uppercase;
}

.portraitOverlay b {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.profileActionPanel,
.checkoutV2 {
  padding: clamp(28px, 4vw, 54px);
}

.profileActionPanel h1,
.checkoutV2 h1,
.authHero h1,
.cleanHero h1 {
  margin: 8px 0 12px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
}

.profileActionPanel p,
.checkoutV2 p,
.authHero p,
.cleanHero p {
  color: #607086;
  font-size: 18px;
  line-height: 1.62;
}

.softNotice {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  color: #0f766e;
  background: #eefdf9;
  font-weight: 800;
}

.authHero {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 54px);
}

.socialButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.checkoutV2 {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
}

.checkoutV2 aside {
  align-self: start;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #172033, #2c3a51);
}

.checkoutV2 aside small {
  color: #9fb0c5;
  font-weight: 900;
}

.checkoutV2 aside b {
  display: block;
  margin: 8px 0 20px;
  font-size: 38px;
}

.cleanHero {
  padding: clamp(28px, 4vw, 50px);
}

.premiumPackages {
  margin-top: 22px;
}

.productApp .pageHero h1,
.productApp .heroCopy h1,
.productApp .detailPanel h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
}

.liveToast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  width: min(420px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  color: #0f172a;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 80px rgba(15, 23, 42, .18);
  backdrop-filter: blur(20px);
  animation: zsToastIn .45s ease both;
}

.liveToast img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

.liveToast b {
  display: block;
  font-size: 14px;
}

.liveToast span {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

@keyframes zsToastIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .productHero,
  .appSplit,
  .profileV2,
  .authHero,
  .checkoutV2 {
    grid-template-columns: 1fr;
  }

  .productConsole,
  .heroLeft {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .productShell {
    width: min(100% - 22px, 100%);
    padding-top: 22px;
  }

  .heroLeft,
  .productConsole,
  .appSection,
  .appSplit,
  .profileActionPanel,
  .authHero,
  .checkoutV2,
  .cleanHero {
    padding: 20px;
  }

  .heroLeft h1,
  .profileActionPanel h1,
  .checkoutV2 h1,
  .authHero h1,
  .cleanHero h1 {
    font-size: 38px;
  }

  .heroMetrics,
  .appFeatureGrid,
  .appProfileGrid {
    grid-template-columns: 1fr;
  }

  .profilePortrait,
  .profilePortrait img,
  .appProfileTile,
  .appProfileTile img {
    min-height: 460px;
  }

  .appSectionHead {
    display: block;
  }

  .appSectionHead a {
    display: inline-block;
    margin-top: 12px;
  }

  .checkoutV2 aside {
    width: 100%;
  }

  .liveToast {
    right: 11px;
    bottom: 11px;
  }
}

/* Acquisition module v1: Guest Home + Notification */
.acquisitionApp {
  min-height: 100vh;
  color: #101827;
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, .18), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(244, 114, 182, .16), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #f5f7fb 46%, #fff7fb 100%);
}

.acquisitionApp .siteHeader {
  border-bottom: 1px solid rgba(148, 163, 184, .22);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(22px);
}

.acqShell {
  width: min(100% - 34px, 1540px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 48px) 0 76px;
}

.acqWorkspace {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(470px, 1.18fr) minmax(330px, .76fr);
  gap: 18px;
  align-items: stretch;
  min-height: calc(100vh - 170px);
}

.acqIntroPanel,
.acqLivePanel,
.acqInboxPanel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, .12);
}

.acqIntroPanel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  padding: clamp(24px, 3.2vw, 48px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(12, 18, 32, .98), rgba(20, 36, 48, .94)),
    linear-gradient(45deg, rgba(20, 184, 166, .35), rgba(244, 114, 182, .18));
}

.acqIntroPanel:after,
.acqLivePanel:after,
.acqInboxPanel:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 28%, rgba(255, 255, 255, .04));
}

.acqPulseHeader,
.acqTrustStrip,
.acqActionRow,
.acqPanelTop,
.acqInboxChrome,
.acqWalletTease {
  position: relative;
  z-index: 1;
}

.acqPulseHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #99f6e4;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}

.acqSignal,
.acqLiveCounter i,
.acqOnlineDot,
.acqActivityFeed span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #14b8a6;
  box-shadow: 0 0 0 7px rgba(20, 184, 166, .14);
  animation: acqPulse 1.7s ease-in-out infinite;
}

.acqIntroPanel h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 44px 0 18px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

.acqIntroPanel p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: rgba(226, 232, 240, .84);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
}

.acqTrustStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.acqTrustStrip span {
  padding: 10px 13px;
  border: 1px solid rgba(153, 246, 228, .22);
  border-radius: 999px;
  color: #99f6e4;
  background: rgba(15, 118, 110, .12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.acqActionRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
  gap: 12px;
  margin-top: auto;
}

.acqComplianceNote {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(203, 213, 225, .72);
  font-size: 12px;
  line-height: 1.55;
}

.acqLivePanel {
  padding: 24px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(24px);
}

.acqPanelTop {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.acqPanelTop small {
  color: #0f766e;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.acqPanelTop h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 2.4vw, 36px);
}

.acqLiveCounter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 184, 166, .22);
  border-radius: 999px;
  color: #0f766e;
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.acqPersonaGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.acqPersonaCard {
  position: relative;
  overflow: hidden;
  min-height: 305px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 18px;
  color: #fff;
  background: #111827;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .1);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.acqPersonaCard:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, .44);
  box-shadow: 0 26px 80px rgba(15, 23, 42, .18);
}

.acqPersonaCard img {
  width: 100%;
  height: 100%;
  min-height: 305px;
  object-fit: cover;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.acqPersonaCard:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 13, 24, .92), rgba(8, 13, 24, .18) 62%, rgba(8, 13, 24, .04));
}

.acqOnlineDot {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.acqPersonaBody {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.acqPersonaBody b {
  display: block;
  font-size: 22px;
}

.acqPersonaBody small,
.acqPersonaBody em {
  display: block;
  margin-top: 4px;
  color: rgba(226, 232, 240, .82);
  font-style: normal;
  font-weight: 750;
}

.acqPersonaBody em {
  color: #99f6e4;
  font-size: 12px;
  text-transform: uppercase;
}

.acqMoodRow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.acqMoodRow span {
  color: #fef3c7;
  font-size: 12px;
  font-weight: 900;
}

.acqMoodRow i {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.acqMoodRow i:before {
  content: "";
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #f59e0b);
}

.acqActivityFeed {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.acqActivityFeed div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 14px;
  color: #475569;
  background: rgba(255, 255, 255, .72);
  font-weight: 750;
}

.acqActivityFeed b {
  color: #111827;
}

.acqInboxPanel {
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(31, 41, 55, .96), rgba(18, 24, 38, .98)),
    radial-gradient(circle at 16% 18%, rgba(20, 184, 166, .2), transparent 30%);
}

.acqInboxChrome {
  display: grid;
  grid-template-columns: 12px 1fr 12px;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.acqInboxChrome span,
.acqInboxChrome i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.acqInboxChrome span {
  background: #14b8a6;
}

.acqInboxChrome i {
  background: #fb7185;
}

.acqInboxMessage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: transform .22s ease, background .22s ease;
}

.acqInboxMessage:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .13);
}

.acqInboxMessage img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}

.acqInboxMessage small {
  color: #5eead4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.acqInboxMessage b {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.acqInboxMessage p {
  margin: 7px 0 0;
  color: rgba(226, 232, 240, .76);
  line-height: 1.45;
}

.acqChatTease {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.acqChatTease p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.acqChatTease .fromAi {
  color: #eafffb;
  background: linear-gradient(135deg, rgba(20, 184, 166, .36), rgba(59, 130, 246, .18));
}

.acqChatTease .fromSystem {
  justify-self: end;
  color: #ffe4e6;
  background: rgba(244, 114, 182, .16);
}

.acqChatTease .typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .1);
}

.acqChatTease .typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
  animation: acqTyping 1s ease-in-out infinite;
}

.acqChatTease .typing span:nth-child(2) {
  animation-delay: .12s;
}

.acqChatTease .typing span:nth-child(3) {
  animation-delay: .24s;
}

.acqWalletTease {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  color: #111827;
  background: linear-gradient(90deg, #dcfce7, #fff7ed);
}

.acqWalletTease span,
.acqWalletTease em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.acqWalletTease b {
  font-size: 26px;
}

.acqProfileLink {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  color: #99f6e4;
  text-align: center;
  font-weight: 900;
}

.acqMobileCta {
  display: none;
}

.acqNotificationToast {
  grid-template-columns: 48px 1fr auto;
  border: 1px solid rgba(20, 184, 166, .24);
  background: rgba(255, 255, 255, .94);
}

.acqNotificationToast .noticeMain {
  display: contents;
  color: inherit;
}

.acqNotificationToast button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #64748b;
  background: #eef2f7;
  cursor: pointer;
  font-weight: 900;
}

@keyframes acqPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.82); opacity: .68; }
}

@keyframes acqTyping {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 1240px) {
  .acqWorkspace {
    grid-template-columns: 1fr 1fr;
  }

  .acqIntroPanel {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .acqIntroPanel h1 {
    max-width: 900px;
  }
}

@media (max-width: 820px) {
  .acquisitionApp .siteHeader {
    position: sticky;
    top: 0;
    z-index: 60;
  }

  .acqShell {
    width: min(100% - 20px, 100%);
    padding: 14px 0 98px;
  }

  .acqWorkspace {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .acqInboxPanel {
    order: -1;
    min-height: auto;
  }

  .acqIntroPanel,
  .acqLivePanel,
  .acqInboxPanel {
    border-radius: 18px;
    padding: 18px;
  }

  .acqIntroPanel h1 {
    margin-top: 28px;
    font-size: clamp(34px, 11vw, 48px);
  }

  .acqActionRow,
  .acqPersonaGrid {
    grid-template-columns: 1fr;
  }

  .acqPanelTop {
    align-items: flex-start;
  }

  .acqPersonaGrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .acqPersonaCard {
    flex: 0 0 78%;
    min-height: 330px;
    scroll-snap-align: start;
  }

  .acqMobileCta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px 15px;
    border: 1px solid rgba(20, 184, 166, .28);
    border-radius: 16px;
    color: #0f172a;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 70px rgba(15, 23, 42, .22);
    backdrop-filter: blur(18px);
    font-weight: 900;
  }

  .acqMobileCta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .acqMobileCta b {
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: #0f766e;
  }
}

/* Final acquisition cockpit overrides. Keep this block last. */
.acquisitionApp {
  background:
    linear-gradient(120deg, rgba(204, 251, 241, .42), rgba(255, 255, 255, .86) 34%, rgba(255, 228, 230, .34)),
    #f8fafc;
}

.acquisitionApp .siteHeader {
  position: sticky;
  top: 0;
  z-index: 70;
  padding-block: 12px;
  border-bottom-color: rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 46px rgba(15, 23, 42, .06);
}

.acquisitionApp .brand small {
  letter-spacing: .06em;
  text-transform: uppercase;
}

.acquisitionApp .mainNav {
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 999px;
  background: rgba(248, 250, 252, .76);
}

.acquisitionApp .mainNav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.acquisitionApp .mainNav a:hover {
  color: #0f766e;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
}

.acqShell {
  width: min(100% - 32px, 1580px);
  padding: clamp(14px, 2vw, 28px) 0 56px;
}

.acqWorkspace.acqCockpit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: calc(100vh - 124px);
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .9), rgba(248, 250, 252, .68)),
    linear-gradient(120deg, rgba(20, 184, 166, .14), rgba(244, 114, 182, .1));
  box-shadow: 0 30px 90px rgba(15, 23, 42, .14);
  backdrop-filter: blur(26px);
}

.acqAppBar {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) auto minmax(210px, .6fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .74);
}

.acqAppStatus,
.acqAppNotice,
.acqAppTabs {
  display: flex;
  align-items: center;
}

.acqAppStatus {
  gap: 12px;
}

.acqAppStatus b,
.acqAppNotice b {
  display: block;
  color: #0f172a;
  font-weight: 950;
}

.acqAppStatus small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.acqAppTabs {
  justify-self: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  background: rgba(241, 245, 249, .76);
}

.acqAppTabs a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.acqAppTabs a:hover,
.acqAppTabs a:nth-child(2) {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.acqAppTabs b {
  min-width: 20px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #fff;
  background: #fb7185;
  font-size: 11px;
  text-align: center;
}

.acqAppNotice {
  justify-self: end;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 184, 166, .24);
  border-radius: 16px;
  color: #0f766e;
  background: linear-gradient(90deg, #ecfdf5, #fff7ed);
  box-shadow: 0 14px 34px rgba(20, 184, 166, .12);
  font-size: 13px;
  font-weight: 900;
}

.acqAppNotice span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acqStage {
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(440px, 1.2fr) minmax(320px, .82fr);
  gap: 14px;
  min-height: 610px;
}

.acqIntroPanel,
.acqLivePanel,
.acqInboxPanel {
  border-radius: 24px;
  box-shadow: none;
}

.acqIntroPanel {
  min-height: auto;
  padding: 26px;
  background:
    linear-gradient(155deg, rgba(15, 23, 42, .98), rgba(24, 39, 57, .96)),
    linear-gradient(90deg, rgba(20, 184, 166, .34), rgba(251, 113, 133, .16));
}

.acqPulseHeader {
  gap: 9px;
  letter-spacing: .04em;
}

.acqIntroPanel h1 {
  max-width: 460px;
  margin: 20px 0 14px;
  font-size: clamp(34px, 3.1vw, 54px);
  line-height: 1.02;
}

.acqIntroPanel p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.62;
}

.acqTrustStrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
}

.acqTrustStrip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
  line-height: 1.2;
}

.acqActionRow {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.acqActionRow .btn {
  justify-content: center;
}

.acqComplianceNote {
  margin-top: 14px;
  font-size: 11px;
}

.acqLivePanel {
  padding: 18px;
  background: rgba(255, 255, 255, .72);
}

.acqPanelTop {
  margin-bottom: 12px;
}

.acqPanelTop h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.acqLiveCounter {
  padding: 9px 11px;
}

.acqPersonaGrid {
  gap: 12px;
}

.acqPersonaCard {
  min-height: 238px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .12);
}

.acqPersonaCard:nth-child(1) {
  grid-row: span 2;
  min-height: 488px;
}

.acqPersonaCard img {
  min-height: 238px;
}

.acqPersonaCard:nth-child(1) img {
  min-height: 488px;
}

.acqCardHeader {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.acqCardHeader .acqOnlineDot {
  position: static;
}

.acqCardHeader em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(15, 23, 42, .54);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.acqPersonaBody {
  right: 14px;
  bottom: 14px;
  left: 14px;
}

.acqPersonaBody b {
  font-size: 20px;
}

.acqPersonaCard:nth-child(1) .acqPersonaBody b {
  font-size: 30px;
}

.acqPersonaBody strong {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #111827;
  background: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.acqActivityFeed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.acqActivityFeed div {
  min-height: 58px;
  padding: 10px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.35;
}

.acqInboxPanel {
  min-height: auto;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(30, 41, 59, .97), rgba(15, 23, 42, .98)),
    linear-gradient(120deg, rgba(20, 184, 166, .22), rgba(251, 113, 133, .12));
}

.acqInboxChrome {
  padding-bottom: 12px;
}

.acqInboxMessage {
  grid-template-columns: 58px 1fr;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
}

.acqInboxMessage img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.acqInboxMessage b {
  font-size: 20px;
}

.acqInboxMessage p {
  font-size: 13px;
}

.acqChatTease {
  gap: 10px;
  margin-top: 16px;
}

.acqChatTease p {
  padding: 11px 13px;
  font-size: 13px;
}

.acqChatTease .fromUser {
  justify-self: end;
  color: #e2e8f0;
  background: rgba(255, 255, 255, .1);
}

.acqChatTease .typing:before {
  content: "typing";
  margin-right: 4px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.acqWalletTease {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .2);
}

.acqWalletTease b {
  font-size: 22px;
}

.acqProfileLink {
  border-color: rgba(153, 246, 228, .28);
  background: rgba(20, 184, 166, .08);
}

@media (max-width: 1320px) {
  .acqStage {
    grid-template-columns: minmax(230px, .72fr) minmax(390px, 1fr) minmax(300px, .82fr);
  }

  .acqIntroPanel h1 {
    font-size: clamp(32px, 3vw, 46px);
  }
}

@media (max-width: 1120px) {
  .acqAppBar {
    grid-template-columns: 1fr;
  }

  .acqAppTabs,
  .acqAppNotice {
    justify-self: stretch;
  }

  .acqAppTabs {
    justify-content: center;
  }

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

  .acqIntroPanel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .acquisitionApp .siteHeader {
    padding: 10px 14px;
  }

  .acquisitionApp .mainNav {
    border-radius: 18px;
  }

  .acqShell {
    width: min(100% - 16px, 100%);
    padding: 10px 0 96px;
  }

  .acqWorkspace.acqCockpit {
    gap: 10px;
    min-height: auto;
    padding: 10px;
    border-radius: 22px;
  }

  .acqAppBar {
    padding: 8px;
    border-radius: 18px;
  }

  .acqAppStatus small {
    white-space: normal;
  }

  .acqAppTabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .acqAppNotice {
    min-height: 50px;
  }

  .acqStage {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .acqInboxPanel {
    order: -3;
  }

  .acqLivePanel {
    order: -2;
  }

  .acqIntroPanel {
    order: -1;
  }

  .acqIntroPanel,
  .acqLivePanel,
  .acqInboxPanel {
    padding: 16px;
    border-radius: 18px;
  }

  .acqIntroPanel h1 {
    margin-top: 16px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .acqTrustStrip {
    grid-template-columns: repeat(3, minmax(84px, 1fr));
    overflow-x: auto;
  }

  .acqPersonaGrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .acqPersonaCard,
  .acqPersonaCard:nth-child(1) {
    flex: 0 0 78%;
    min-height: 330px;
    scroll-snap-align: start;
  }

  .acqPersonaCard img,
  .acqPersonaCard:nth-child(1) img {
    min-height: 330px;
  }

  .acqPersonaCard:nth-child(1) .acqPersonaBody b {
    font-size: 24px;
  }

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