/* Agencies landing page styles — extracted to plain CSS and served from
   /public like the landing CSS. */
/* hide all section eyebrows */
.ag-eyebrow {
  display: none !important;
}

/* ===== Agency landing — added sections ===== */
.ag-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--grey);
}
.ag-sub {
  color: var(--grey);
  font-size: 18px;
  line-height: 1.5;
  max-width: 640px;
}
.ag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ag-chip {
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 60px;
  padding: 9px 18px;
  font-size: 15px;
  color: rgb(255 255 255 / 75%);
}
.ag-cred {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 760px;
}
.ag-cred-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 20px;
  padding: 16px;
  color: rgb(255 255 255 / 82%);
  font-size: 15px;
}
.ag-cred-item svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.ag-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.ag-card {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  text-align: left;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 20px;
  padding: 28px;
  background: rgb(255 255 255 / 3%);
}
.ag-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.ag-card p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.55;
}
.ag-ico {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  color: var(--white);
  flex: none;
}
.ag-ico svg {
  width: 22px;
  height: 22px;
}
.ag-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}
.ag-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 12px;
}
.ag-step-badge {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 14px;
  color: var(--white);
}
.ag-step-badge svg {
  width: 22px;
  height: 22px;
}
.ag-step-num {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-step h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.ag-step p {
  color: var(--grey);
  font-size: 13px;
  line-height: 1.5;
  max-width: 180px;
}
.ag-list-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  text-align: left;
}
.ag-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 20px;
  padding: 22px;
  background: rgb(255 255 255 / 3%);
}
.ag-trust-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.ag-trust-item p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
}
.ag-faq {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.ag-faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.ag-faq-item:hover {
  border-color: rgba(0, 0, 0, 0.16);
}
.ag-faq-item.open {
  border-color: rgba(255, 122, 24, 0.45);
  box-shadow: 0 14px 34px -18px rgba(255, 122, 24, 0.3);
}
.ag-faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 20px 19px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-faq-q span {
  flex: 1;
  min-width: 0;
}
.ag-faq-num {
  flex: none;
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  color: #b6b6bd;
  transition: color 0.3s ease;
}
.ag-faq-item.open .ag-faq-num {
  color: var(--orange, #ff7a18);
}
.ag-faq-ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f5f66;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.ag-faq-item.open .ag-faq-ic {
  transform: rotate(45deg);
  background: var(--orange, #ff7a18);
  border-color: var(--orange, #ff7a18);
  color: #ffffff;
}
.ag-faq-a {
  padding: 0 66px 20px 59px;
  color: #5f5f66;
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 992px) {
  .ag-grid-3,
  .ag-cred,
  .ag-list-2 {
    grid-template-columns: 1fr 1fr;
  }
  .ag-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .ag-grid-3,
  .ag-cred,
  .ag-list-2 {
    grid-template-columns: 1fr;
  }
  .ag-steps {
    grid-template-columns: 1fr 1fr;
  }
  .ag-faq-q {
    font-size: 16px;
  }
}

/* ==================== LIGHT THEME (white site) ==================== */
body {
  background: #ffffff !important;
}
/* Clip horizontal overflow from full-bleed decorative elements (the ag-trust2
   aurora, scaled showcase videos, the talent marquee) on the page content.
   This MUST go on <main> (a sibling of the navbar), NOT on html/body — overflow
   on the root re-bases position:fixed to the body, which makes the sticky nav
   scroll away and sit a few px off. */
main {
  overflow-x: clip !important;
}
.notranslate {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

/* Navbar theming (dark-on-white, sticky, mobile + drawer states) lives in the
   shared /public/landing-navbar-light.css, applied via <Navbar lightPage />. */

/* Hero → white (hide the dark video) */
.hero-agency {
  background: #ffffff !important;
  color: #0a0a0a !important;
}
.hero-agency .bg-wrapper,
.hero-agency .overlay-agency {
  display: none !important;
}

/* CTA pills → solid black on white */
.button-primary {
  background: #0a0a0a !important;
  color: #ffffff !important;
}
.button-primary .cta-bg {
  background: #0a0a0a !important;
}

/* Kill dark image backgrounds on data cards, make them light */
.talent-section,
.key-item,
.cta-component-2,
.followers-item,
.map-box-wrapper,
.pricing-calculator-wrapper {
  background-image: none !important;
}
.talent-section {
  background: #ffffff !important;
}
.key-item,
.followers-item,
.map-box-wrapper,
.pricing-calculator-wrapper,
.total-followers,
.chart-wrapper,
.tab-count-box,
.cta-component-2,
.followers-single-item,
.map-info-item,
.map-bottom-list-item {
  background: #f7f7f8 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #0a0a0a !important;
}
.section-bg-white {
  background: #ffffff !important;
  color: #0a0a0a !important;
}
.text-color-grey {
  color: #5f5f66 !important;
}

/* Footer → dark (matches the home / business footers) */
.padding-footer {
  background: #000000 !important;
}
.footer-link,
.footer-links-title,
.footer-bottom {
  color: #ffffff !important;
}
/* The global light-theme .notranslate rule paints a white box; undo it
   inside the dark footer so the "Linkme" wordmarks read white-on-dark. */
.padding-footer .notranslate {
  background: transparent !important;
  color: #ffffff !important;
}

/* ===== flip added (ag-*) sections to light ===== */
.ag-eyebrow {
  color: #6a6a72 !important;
}
.ag-sub {
  color: #5f5f66 !important;
}
.ag-chip {
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #3a3a40 !important;
}
.ag-cred-item {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #3a3a40 !important;
}
.ag-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.ag-card h3 {
  color: #0a0a0a !important;
}
.ag-card p {
  color: #5f5f66 !important;
}
.ag-ico {
  background: #f7f7f8 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #0a0a0a !important;
}
.ag-step-badge {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #0a0a0a !important;
}
.ag-step h3 {
  color: #0a0a0a !important;
}
.ag-step p {
  color: #5f5f66 !important;
}
.ag-trust-item {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}
.ag-trust-item h3 {
  color: #0a0a0a !important;
}
.ag-trust-item p {
  color: #5f5f66 !important;
}
.ag-faq-item {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}
.ag-faq-q {
  color: #0a0a0a !important;
}
.ag-faq-icon {
  color: #6a6a72 !important;
}
.ag-faq-a {
  color: #5f5f66 !important;
}

/* ==================== MOTION + GRAPHICS PASS ==================== */

/* Hero — ambient canvas behind kinetic type */
.ag-hero {
  position: relative;
  overflow: hidden;
}
.ag-hero-canvas {
  z-index: 0;
  pointer-events: none;
}
.ag-hero-content {
  position: relative;
  z-index: 1;
}
.ag-hero-sub {
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
}
.ag-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  z-index: 1;
}
.ag-scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: #0a0a0a;
}

/* Eyebrows — accent tick */
.ag-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Trust strip — dual infinite marquees */
.ag-trust-marquees {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.ag-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.ag-marquee-track {
  display: flex;
  width: max-content;
  animation: ag-marquee 36s linear infinite;
  will-change: transform;
}
.ag-marquee--rev .ag-marquee-track {
  animation-direction: reverse;
}
.ag-marquee:hover .ag-marquee-track {
  animation-play-state: paused;
}
.ag-chip--mq {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 14px;
  padding: 10px 20px;
  white-space: nowrap;
  cursor: default;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #16161c !important;
  border: 1.5px solid transparent !important;
  border-radius: 999px;
  background:
    linear-gradient(#ffffff, #f6f6f9) padding-box,
    linear-gradient(
        135deg,
        rgba(255, 122, 24, 0.7),
        rgba(255, 45, 142, 0.5) 46%,
        rgba(122, 43, 255, 0.45)
      )
      border-box;
  box-shadow:
    0 1px 1px rgba(17, 17, 20, 0.04),
    0 10px 24px -16px rgba(17, 17, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
.ag-chip--mq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transform: translateX(-260%) skewX(-18deg);
  animation: ag-chip-sheen 6s ease-in-out infinite;
  pointer-events: none;
}
.ag-chip-orb {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffd9b8, #ff7a18 52%, #ff2d8e);
  box-shadow:
    0 0 0 3px rgba(255, 122, 24, 0.12),
    0 0 9px rgba(255, 90, 40, 0.55);
}
.ag-chip--mq:hover {
  border-color: transparent !important;
  color: #0a0a0a !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 18px -8px rgba(255, 90, 40, 0.45),
    0 18px 44px -22px rgba(255, 45, 142, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
@keyframes ag-chip-sheen {
  0% {
    transform: translateX(-260%) skewX(-18deg);
  }
  55%,
  100% {
    transform: translateX(330%) skewX(-18deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ag-chip--mq::after {
    animation: none;
    opacity: 0;
  }
}
@keyframes ag-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ag-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ag-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }
}
/* Trust section — roster avatar wall + aurora */
.ag-trust2-sec {
  position: relative;
  overflow: hidden;
}
.ag-trust2-sec .container {
  position: relative;
  z-index: 1;
}
.ag-trust2-aurora {
  position: absolute;
  inset: -30% -10% -15% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      38% 55% at 18% 32%,
      rgba(255, 122, 24, 0.16),
      transparent 70%
    ),
    radial-gradient(
      40% 58% at 82% 38%,
      rgba(255, 45, 142, 0.14),
      transparent 72%
    ),
    radial-gradient(
      48% 65% at 50% 88%,
      rgba(122, 43, 255, 0.12),
      transparent 72%
    );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 18%,
    #000 34%,
    #000 72%,
    transparent 90%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 18%,
    #000 34%,
    #000 72%,
    transparent 90%
  );
  filter: blur(36px);
  animation: ag-aurora 18s ease-in-out infinite alternate;
}
@keyframes ag-aurora {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -22px, 0) scale(1.07);
  }
}
.ag-trust2-title {
  text-align: center;
}
.ag-trust2-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.ag-av {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 16px;
  padding: 7px 22px 7px 7px;
  white-space: nowrap;
  cursor: default;
  border: 1.5px solid transparent !important;
  border-radius: 999px;
  background:
    linear-gradient(#ffffff, #f6f6f9) padding-box,
    linear-gradient(
        135deg,
        rgba(255, 122, 24, 0.6),
        rgba(255, 45, 142, 0.46) 50%,
        rgba(122, 43, 255, 0.42)
      )
      border-box;
  box-shadow:
    0 1px 1px rgba(17, 17, 20, 0.04),
    0 12px 28px -18px rgba(17, 17, 20, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-av-ring {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a18, #ff2d8e, #7a2bff);
  display: block;
}
.ag-av-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  display: block;
  background: #ececf0;
}
.ag-av-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}
.ag-av-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 15px;
  color: #16161c;
}
.ag-av-badge {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.ag-av-handle {
  font-size: 13px;
  font-weight: 500;
  color: #8a8a92;
}
.ag-av:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 22px -10px rgba(255, 90, 40, 0.4),
    0 24px 52px -26px rgba(255, 45, 142, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
/* Reveal wrappers must behave like the cards they wrap in grids */
.ag-grid-3 > div,
.ag-list-2 > div,
.grid-4 > div,
.ag-cred > div {
  display: flex;
}
.ag-grid-3 > div > .ag-card,
.ag-list-2 > div > .ag-trust-item,
.grid-4 > div > .key-item,
.ag-cred > div > .ag-cred-item {
  flex: 1;
}

/* Workflow — pinned split headline, cards travel the center channel */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ag-flow {
  position: relative;
  width: 100%;
}
.ag-flow-title {
  position: sticky;
  top: 0;
  height: 36vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  pointer-events: none;
  z-index: 0;
}
.ag-flow-word:first-child {
  position: absolute;
  right: calc(50% + 320px);
}
.ag-flow-word:last-child {
  position: absolute;
  left: calc(50% + 320px);
}
@media (max-width: 1280px) {
  .ag-flow-word:first-child {
    right: calc(50% + 240px);
  }
  .ag-flow-word:last-child {
    left: calc(50% + 240px);
  }
}
.ag-flow-word {
  color: #0a0a0a;
  white-space: nowrap;
  font-size: clamp(34px, 2.9vw, 56px) !important;
  line-height: 1.1 !important;
}
.ag-flow-cards {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 26vh 20px 18vh;
}
.ag-flow-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  padding: 28px 30px 34px;
  box-shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.18);
}
.ag-flow-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
}
.ag-flow-num {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  color: #c3c3ca;
}
.ag-flow-ico {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  color: #0a0a0a;
}
.ag-flow-ico svg {
  width: 24px;
  height: 24px;
}
.ag-flow-dot {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
}
.ag-flow-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-flow-bullet {
  display: inline-block;
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--orange, #ff7a18);
}
.ag-flow-card p {
  margin-top: 12px;
  color: #5f5f66;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Workflow — flow board */
.ag-wn {
  padding: 110px 0 40px;
}
.ag-wn-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  text-align: center;
  padding: 0 20px;
}
.ag-wn-title {
  font-size: clamp(32px, 2.9vw, 52px) !important;
}
.ag-wn-board {
  position: relative;
  width: 100%;
}
.ag-wn-canvas {
  display: block;
  width: 100%;
  height: clamp(440px, 62vh, 640px);
}
/* ---- flow board (Trybe-exact engine) ---- */
.ag-fb {
  position: relative;
  width: 100%;
  height: clamp(440px, 62vh, 640px);
  overflow: hidden;
}
.ag-fb-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ag-fb-wires path {
  fill: none;
  stroke: rgba(10, 10, 10, 0.11);
  stroke-width: 2;
}
.ag-fb-ring {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(10, 10, 10, 0.32);
  transform: translate(-50%, -50%);
}
.ag-fb-lane {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
}
.ag-fb-card {
  position: absolute;
  top: 0;
  width: 86px;
  height: 134px;
  border-radius: 16px;
  background: #ffffff;
  padding: 4px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 18px 44px -16px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity, left;
}
.ag-fb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
/* journey: rides the wire via offset-path; shrinks into the hub,
   re-emerges, stops 2s, drifts away */
.ag-fb-journey {
  top: 0;
  left: 0;
  offset-rotate: 0deg;
  opacity: 0;
  will-change: offset-distance, transform, opacity;
}
/* badges pop during the 2s stop, matched to the feature */
.ag-fb-pill {
  position: absolute;
  top: -8px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 7px;
  border-radius: 60px;
  background: #ffffff;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 800;
  color: #0a0a0a;
  white-space: nowrap;
  opacity: 0;
}
.ag-fb-pill i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  flex: none;
}
.ag-fb-pill i svg {
  width: 12px;
  height: 12px;
}
.ag-fb-pill-cash i {
  background: #22c55e;
}
.ag-fb-pill-plane i {
  background: #0a0a0a;
}
.ag-fb-pill-bolt i,
.ag-fb-pill-mail i {
  background: #0a0a0a;
}
.ag-fb-feature {
  position: absolute;
  bottom: -8px;
  left: -14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  border-radius: 60px;
  background: #ffffff;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.28);
  font-size: 11.5px;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
  opacity: 0;
}
.ag-fb-feature svg {
  width: 15px;
  height: 15px;
  color: var(--orange, #ff7a18);
  flex: none;
}
/* hub */
.ag-fb-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 144px;
  height: 144px;
}
.ag-fb-hub-plate {
  position: absolute;
  inset: -16px;
  border-radius: 46px;
  background: rgba(10, 10, 10, 0.045);
}
.ag-fb-hub-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 38px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.35);
}
.ag-fb-hub-core img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
}
.ag-fb-hub-pulse {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  border: 1.5px solid rgba(255, 122, 24, 0.45);
  animation: ag-hub-pulse 2.4s ease-out infinite;
}
@keyframes ag-hub-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .ag-fb-card {
    width: 58px;
    height: 92px;
    border-radius: 12px;
  }
  .ag-fb-pill {
    right: -34px;
    font-size: 11px;
  }
  .ag-fb-feature {
    left: -28px;
    font-size: 10px;
  }
  .ag-fb-hub {
    width: 96px;
    height: 96px;
  }
  .ag-fb-hub-core {
    border-radius: 26px;
  }
  .ag-fb-hub-core img {
    width: 56px;
    height: 56px;
  }
}

.ag-wn-chips {
  position: absolute;
  top: 18px;
  right: 4vw;
  display: flex;
  gap: 8px;
  pointer-events: none;
}
.ag-wn-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 60px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  color: #5f5f66;
}
.ag-wn-chip b {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}
.ag-wn-chip-cash b {
  color: var(--orange, #ff7a18);
}
.ag-wn-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 8px auto 0;
  padding: 0 24px;
}
.ag-wn-caption {
  text-align: center;
}
.ag-wn-caption-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange, #ff7a18);
}
.ag-wn-caption h3 {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-wn-caption p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.55;
  color: #5f5f66;
}
@media (max-width: 992px) {
  .ag-wn {
    padding: 72px 0 24px;
  }
  .ag-wn-canvas {
    height: 380px;
  }
  .ag-wn-chips {
    position: static;
    justify-content: center;
    margin-top: 4px;
  }
  .ag-wn-captions {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }
}

/* Workflow — pinned horizontal journey */
.ag-wf {
  position: relative;
  height: 320vh;
}
.ag-wf-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ag-wf-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 18px;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 7vh;
}
.ag-wf-title {
  font-size: clamp(34px, 3vw, 56px) !important;
}
.ag-wf-stage {
  position: relative;
  width: 100%;
}
.ag-wf-track {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 0 calc(50vw - 200px);
  will-change: transform;
}
.ag-wf-line {
  position: absolute;
  top: 50%;
  left: 50vw;
  height: 2px;
  z-index: 0;
}
.ag-wf-line-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
}
.ag-wf-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  transform-origin: left;
  background: linear-gradient(90deg, #0a0a0a 75%, var(--orange, #ff7a18));
}
.ag-wf-orb {
  position: absolute;
  top: -10px;
  left: -11px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ag-wf-orb-core {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
  box-shadow:
    0 0 0 5px rgba(255, 122, 24, 0.16),
    0 0 22px 6px rgba(255, 122, 24, 0.45);
  animation: ag-live-pulse 1.6s ease-in-out infinite;
}
.ag-wf-card {
  position: relative;
  z-index: 2;
  flex: none;
  width: 400px;
  min-height: 300px;
  padding: 28px 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.ag-wf-ghost {
  position: absolute;
  right: 14px;
  top: -26px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 150px;
  line-height: 1;
  color: rgba(10, 10, 10, 0.05);
  pointer-events: none;
}
.ag-wf-ico {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  color: #0a0a0a;
}
.ag-wf-ico svg {
  width: 24px;
  height: 24px;
}
.ag-wf-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
}
.ag-wf-card h3 {
  margin-top: 64px;
  font-size: 23px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-wf-card p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #5f5f66;
}
.ag-wf-count {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #9b9ba3;
}
.ag-wf-count-now {
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
}
@media (max-width: 992px) {
  .ag-wf {
    height: auto;
    padding: 80px 0 40px;
  }
  .ag-wf-pin {
    position: static;
    height: auto;
    overflow: visible;
  }
  .ag-wf-head {
    margin-bottom: 40px;
  }
  .ag-wf-track {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    transform: none !important;
  }
  .ag-wf-card {
    width: 100%;
    max-width: 440px;
    min-height: 0;
    transform: none !important;
    opacity: 1 !important;
  }
  .ag-wf-card h3 {
    margin-top: 40px;
  }
  .ag-wf-line,
  .ag-wf-count {
    display: none;
  }
}

/* Features section — tighter, smaller, centered */
.ag-features .container {
  max-width: 1060px;
}
.ag-features-title {
  font-size: clamp(30px, 2.4vw, 40px) !important;
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
}
.ag-features .content-wrapper {
  align-items: center;
}
.ag-features .icon-64 {
  width: 46px;
  height: 46px;
}
.ag-features .h3-20 {
  font-size: 17px;
}
.ag-features .text-color-grey {
  font-size: 14.5px;
  line-height: 1.55;
}
.ag-features .gap-64 {
  row-gap: 36px;
}
.ag-features .gap-48 {
  row-gap: 56px;
}

/* Use-case items — live link.me profile inside a phone */
.ag-uc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ag-uc-phone {
  position: relative;
  width: 320px;
  height: 660px;
  padding: 5px;
  border-radius: 50px;
  background: linear-gradient(160deg, #2a2a2e, #0a0a0a 55%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.14),
    0 40px 90px -38px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-uc-phone:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.14),
    0 52px 110px -40px rgba(0, 0, 0, 0.55);
}
.ag-uc-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  overflow: hidden;
  background: #ffffff;
}
.ag-uc-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 818px;
  border: 0;
  transform: scale(0.7949);
  transform-origin: top left;
  pointer-events: none;
}
.ag-uc-island {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 23px;
  border-radius: 14px;
  background: #0a0a0a;
  z-index: 2;
}
.ag-uc-caption {
  margin-top: 24px;
  max-width: 380px;
  text-align: center;
}
.ag-uc-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange, #ff7a18);
}
.ag-uc-caption h3 {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-uc-caption p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #5f5f66;
}
.ag-uc-live {
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #15803d;
  text-transform: uppercase;
}
.ag-uc-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: ag-live-pulse 1.8s ease-in-out infinite;
}
@keyframes ag-live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

/* Workflow — scroll-drawn progress line */
.ag-steps-wrap {
  position: relative;
  width: 100%;
}
.ag-steps-line {
  position: absolute;
  top: 24px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  z-index: 0;
  overflow: hidden;
}
.ag-steps-line-fill {
  height: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, #0a0a0a 70%, var(--orange, #ff7a18));
}
.ag-step-badge {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .ag-steps-line {
    display: none;
  }
}
@media (max-width: 992px) {
  .ag-flow-title {
    position: static;
    height: auto;
    margin-bottom: 0;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
    padding: 40px 20px 0;
  }
  .ag-flow-word:first-child,
  .ag-flow-word:last-child {
    position: static;
    right: auto;
    left: auto;
  }
  .ag-flow-cards {
    padding: 48px 20px 24px;
  }
  .ag-flow-card {
    min-height: 280px;
  }
  .ag-flow-card h3 {
    margin-top: 40px;
  }
}

/* Section texture — masked dot grid */
.ag-dots {
  position: relative;
}
.ag-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(
    ellipse 65% 60% at 50% 42%,
    black 25%,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse 65% 60% at 50% 42%,
    black 25%,
    transparent 72%
  );
  pointer-events: none;
}
.ag-dots .container {
  position: relative;
  z-index: 1;
}

/* Card system — lift, glow, icon inversion */
.ag-card,
.ag-trust-item,
.ag-cred-item,
.key-item,
.ag-faq-item,
.followers-single-item,
.ag-chip {
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}
.ag-card:hover,
.ag-trust-item:hover,
.key-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 44px -20px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.2) !important;
}
.ag-cred-item:hover,
.followers-single-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.18) !important;
}
.ag-chip:hover {
  border-color: rgba(0, 0, 0, 0.35) !important;
  color: #0a0a0a !important;
  transform: translateY(-2px);
}
.ag-ico {
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-card:hover .ag-ico,
.ag-trust-item:hover .ag-ico {
  background: #0a0a0a !important;
  color: #ffffff !important;
  transform: scale(1.06) rotate(-4deg);
}
.ag-faq-item:hover {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

/* FAQ answer — padding handled here since height animates */
.ag-faq-a {
  padding-top: 2px;
}

/* ==================== bento grid (built for agencies) ============ */
/* ==================== Agency OS command center ==================== */
.ag-cc {
  position: relative;
  height: 560vh;
}
.ag-cc-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-cc-stage {
  perspective: 1600px;
  width: min(1400px, 96vw);
  position: relative;
}
.ag-cc-stage::before {
  content: "";
  position: absolute;
  inset: -10% -14%;
  background:
    radial-gradient(
      44% 58% at 50% 40%,
      rgba(255, 122, 24, 0.14),
      transparent 70%
    ),
    radial-gradient(
      36% 48% at 18% 78%,
      rgba(99, 102, 241, 0.08),
      transparent 70%
    );
  filter: blur(34px);
  pointer-events: none;
}
.ag-cc-win {
  position: relative;
  display: flex;
  flex-direction: column;
  height: min(88vh, 900px);
  min-height: 600px;
  background: linear-gradient(180deg, #16161b 0%, #0c0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 60px 120px -36px rgba(0, 0, 0, 0.5);
  will-change: transform;
}
.ag-cc-light {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    radial-gradient(
      620px circle at var(--lx, 60%) var(--ly, 18%),
      rgba(255, 255, 255, 0.07),
      transparent 60%
    ),
    radial-gradient(
      900px circle at var(--lx, 60%) var(--ly, 18%),
      rgba(255, 122, 24, 0.05),
      transparent 70%
    );
}
.ag-cc-shadow {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -44px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.38), transparent);
  filter: blur(17px);
  pointer-events: none;
}
/* chrome bar */
.ag-cc-bar {
  flex: none;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ag-cc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.ag-cc-dot-r {
  background: #fb5f57;
}
.ag-cc-dot-y {
  background: #fdbb2e;
}
.ag-cc-dot-g {
  background: #28c840;
}
.ag-cc-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #c9c9d1;
  letter-spacing: 0.02em;
  padding-left: 88px;
}
.ag-cc-cmdk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  color: #8d8d98;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 3.5px 8px;
  background: rgba(255, 255, 255, 0.03);
}
.ag-cc-count {
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  color: #8d8d98;
  min-width: 52px;
  text-align: right;
}
/* body: sidebar + main */
.ag-cc-body {
  flex: 1;
  display: flex;
  min-height: 0;
}
.ag-cc-side {
  flex: none;
  width: 226px;
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.ag-cc-side-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 8px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}
.ag-cc-side-avs {
  display: flex;
  flex: none;
}
.ag-cc-side-avs img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #16161b;
  margin-left: -7px;
}
.ag-cc-side-avs img:first-child {
  margin-left: 0;
}
.ag-cc-side-id {
  min-width: 0;
}
.ag-cc-side-id b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #f4f4f5;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-cc-side-id em {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  color: #8d8d98;
}
.ag-cc-side-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5d5d68;
  padding: 0 10px 8px;
}
.ag-cc-navwrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ag-cc-nav-ind {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(calc(var(--ni, 0) * 48px));
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.ag-cc-nav-ind::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 11px;
  width: 3px;
  height: 22px;
  border-radius: 3px;
  background: var(--orange, #ff7a18);
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.7);
}
.ag-cc-nav {
  position: relative;
  z-index: 1;
  height: 44px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 0;
  background: transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  color: #8d8d98;
  cursor: pointer;
  transition: color 0.3s ease;
}
.ag-cc-nav:hover {
  color: #c9c9d1;
}
.ag-cc-nav.is-active {
  color: #f4f4f5;
}
.ag-cc-nav.is-active svg {
  color: var(--orange, #ff7a18);
  filter: drop-shadow(0 0 6px rgba(255, 122, 24, 0.5));
}
.ag-cc-side-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 13px 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: #8d8d98;
}
.ag-cc-side-foot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: ag-cc-blip 2.2s ease-in-out infinite;
}
@keyframes ag-cc-blip {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0);
  }
}
/* panels */
.ag-cc-main {
  flex: 1;
  position: relative;
  min-width: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}
.ag-cc-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  will-change: transform, opacity, filter;
}
.ag-cc-copy {
  position: relative;
  min-width: 0;
}
.ag-cc-ghost {
  position: absolute;
  top: -58px;
  left: -10px;
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}
.ag-cc-step {
  position: relative;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange, #ff7a18);
  letter-spacing: 0.14em;
}
.ag-cc-copy h3 {
  position: relative;
  margin: 10px 0 0;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, #ffffff 30%, #b9b9c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ag-cc-copy p {
  position: relative;
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: #9b9ba6;
  max-width: 330px;
}
.ag-cc-stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ag-cc-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #c9c9d1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 5px 12px;
}
.ag-cc-stats span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
}
.ag-cc-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: #f4f4f5;
  text-decoration: none;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}
.ag-cc-more svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-cc-more:hover {
  color: var(--orange, #ff7a18);
}
.ag-cc-more:hover svg {
  transform: translateX(4px);
}
.ag-cc-vis {
  position: relative;
  height: 100%;
  min-height: 0;
}
.ag-cc-demo {
  position: absolute !important;
  inset: 0;
  height: auto !important;
  min-height: 0 !important;
}
/* causal chain strip */
.ag-cc-flow {
  flex: none;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ag-cc-flow-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #34d399;
}
.ag-cc-flow-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: ag-cc-blip 2.2s ease-in-out infinite;
}
.ag-cc-flow-track {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ag-cc-flow-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12) 12%,
    rgba(255, 255, 255, 0.12) 88%,
    transparent
  );
}
.ag-cc-flow-pulse {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
  filter: drop-shadow(0 0 7px rgba(255, 122, 24, 0.9));
  animation: ag-cc-pulse-run 4.8s linear infinite;
}
@keyframes ag-cc-pulse-run {
  0% {
    left: 4%;
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 95%;
    opacity: 0;
  }
}
.ag-cc-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: #8d8d98;
  background: #16161c;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 5px 11px;
}
.ag-cc-chip svg {
  color: #5d5d68;
  transition: color 0.3s ease;
}
.ag-cc-chip-1 {
  animation: ag-cc-chipglow 4.8s ease infinite 0.1s;
}
.ag-cc-chip-2 {
  animation: ag-cc-chipglow 4.8s ease infinite 1.3s;
}
.ag-cc-chip-3 {
  animation: ag-cc-chipglow 4.8s ease infinite 2.5s;
}
.ag-cc-chip-4 {
  animation: ag-cc-chipglow 4.8s ease infinite 3.7s;
}
@keyframes ag-cc-chipglow {
  0%,
  100% {
    color: #8d8d98;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: none;
  }
  8%,
  18% {
    color: #f4f4f5;
    border-color: rgba(255, 122, 24, 0.6);
    box-shadow:
      0 0 0 3px rgba(255, 122, 24, 0.12),
      0 0 16px rgba(255, 122, 24, 0.18);
  }
}
/* progress rail (sits on the light page, outside the window) */
.ag-cc-rail {
  position: absolute;
  right: max(14px, 2.2vw);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ag-cc-rail-track {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(10, 10, 10, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.ag-cc-rail-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffb066, var(--orange, #ff7a18));
  transform-origin: top;
}
.ag-cc-rail-dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e4e4e0;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.ag-cc-rail-dot.is-on {
  background: var(--orange, #ff7a18);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(255, 122, 24, 0.5);
}
/* ---- dark re-skin of the live vignettes inside the window ---- */
.ag-cc-win .ag-bn-demo {
  background: #121217;
  border-color: rgba(255, 255, 255, 0.06);
}
.ag-cc-win .ag-bn-ws {
  background: #18181e;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.ag-cc-win .ag-bn-ws-crumb {
  color: #8d8d98;
}
.ag-cc-win .ag-bn-ws-crumb b {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-ws-head {
  color: #5d5d68;
}
.ag-cc-win .ag-bn-ws-id b {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-ws-id em {
  color: #8d8d98;
}
.ag-cc-win .ag-bn-ws-num {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-ws-note {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.07);
  color: #c9c9d1;
}
.ag-cc-win .ag-bn-ws-note i {
  background: var(--orange, #ff7a18);
}
.ag-cc-win .ag-bn-cursor {
  color: #f4f4f5;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}
.ag-cc-win .ag-bn-cursor i {
  background: #2a2a32;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.ag-cc-win .ag-bn-cur-3 {
  color: var(--orange, #ff7a18);
}
.ag-cc-win .ag-bn-cur-3 i {
  background: var(--orange, #ff7a18);
  border-color: transparent;
}
.ag-cc-win .ag-bn-prof {
  background: #1b1b21;
  border-color: rgba(255, 255, 255, 0.08);
}
.ag-cc-win .ag-bn-prof b {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-prof em {
  color: #8d8d98;
}
.ag-cc-win .ag-bn-prof-pill {
  background: rgba(255, 255, 255, 0.07);
}
.ag-cc-win .ag-bn-switch-chip {
  background: #f4f4f5;
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-an-total {
  color: #9b9ba6;
}
.ag-cc-win .ag-bn-an-total b {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-an-area {
  fill: rgba(255, 122, 24, 0.14);
}
.ag-cc-win .ag-bn-an-dot {
  border-color: #121217;
}
.ag-cc-win .ag-bn-an-tip {
  background: #f4f4f5;
}
.ag-cc-win .ag-bn-an-tip span {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-an-x {
  color: #5d5d68;
}
.ag-cc-win .ag-bn-ex-row {
  background: #1b1b21;
  border-color: rgba(255, 255, 255, 0.07);
}
.ag-cc-win .ag-bn-ex-row b {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-ex-row em {
  color: #8d8d98;
}
.ag-cc-win .ag-bn-check-1 {
  animation-name: ag-cc-checkin;
}
.ag-cc-win .ag-bn-check-2 {
  animation-name: ag-cc-checkin;
}
.ag-cc-win .ag-bn-check-3 {
  animation-name: ag-cc-checkin;
}
@keyframes ag-cc-checkin {
  0%,
  4% {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
  }
  10%,
  88% {
    background: var(--orange, #ff7a18);
    border-color: var(--orange, #ff7a18);
  }
  94%,
  100% {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
  }
}
.ag-cc-win .ag-bn-ex-btn {
  background: rgba(255, 255, 255, 0.09);
}
.ag-cc-win .ag-bn-chat-head {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.ag-cc-win .ag-bn-chat-head b {
  color: #f4f4f5;
}
.ag-cc-win .ag-bn-msg-q {
  background: #1b1b21;
  border-color: rgba(255, 255, 255, 0.08);
  color: #c9c9d1;
}
.ag-cc-win .ag-bn-msg-typing {
  background: rgba(255, 255, 255, 0.08);
}
.ag-cc-win .ag-bn-msg-typing i {
  background: rgba(255, 255, 255, 0.5);
}
.ag-cc-win .ag-bn-msg-a {
  background: var(--orange, #ff7a18);
  color: #ffffff;
}
.ag-cc-win .ag-bn-org-hub {
  background: #f4f4f5;
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-org-row img {
  border-color: #121217;
}
.ag-cc-win .ag-bn-org-meta {
  color: #f4f4f5;
}
/* ---- detail pass: every surface refined ---- */
.ag-cc-enter {
  will-change: transform, opacity, filter;
}
.ag-cc-dot {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.35);
}
.ag-cc-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-cc-title i {
  font-style: normal;
  margin: 0 8px;
  color: #4a4a54;
  font-weight: 500;
}
.ag-cc-title-seg {
  color: #8d8d98;
  font-weight: 600;
  animation: ag-cc-seg 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes ag-cc-seg {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ag-cc-side-avs {
  position: relative;
}
.ag-cc-presence {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  border: 2px solid #16161b;
}
.ag-cc-nav {
  gap: 9px;
  padding: 0 10px;
}
.ag-cc-nav-ico {
  width: 25px;
  height: 25px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.ag-cc-nav.is-active .ag-cc-nav-ico {
  background: rgba(255, 122, 24, 0.14);
  border-color: rgba(255, 122, 24, 0.35);
}
.ag-cc-nav kbd {
  margin-left: auto;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 600;
  color: #5d5d68;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1.5px 5.5px;
  line-height: 1.3;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.ag-cc-nav.is-active kbd {
  color: #c9c9d1;
  border-color: rgba(255, 122, 24, 0.4);
}
.ag-cc-side-foot em {
  font-style: normal;
  margin-left: auto;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  color: #4a4a54;
}
/* gradient hairline frame around each vignette */
.ag-cc-vis::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.35),
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.04) 70%,
    rgba(255, 122, 24, 0.12)
  );
  pointer-events: none;
}
.ag-cc-demo {
  z-index: 1;
}
/* stat chips respond to touch */
.ag-cc-stats span {
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.ag-cc-stats span:hover {
  border-color: rgba(255, 122, 24, 0.4);
  color: #f4f4f5;
  transform: translateY(-1px);
}
/* explore link: underline grows, arrow slides */
.ag-cc-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: calc(100% - 19px);
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-cc-more:hover::after {
  transform: scaleX(1);
}
/* film grain + edge vignette inside the window */
.ag-cc-grain {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
.ag-cc-vig {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(
    125% 125% at 50% 38%,
    transparent 62%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
/* causal pulse leaves a comet tail; chip icons ignite */
.ag-cc-flow-pulse::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 52px;
  height: 1.5px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, 0.55));
}
.ag-cc-chip-1 svg {
  animation: ag-cc-chipico 4.8s ease infinite 0.1s;
}
.ag-cc-chip-2 svg {
  animation: ag-cc-chipico 4.8s ease infinite 1.3s;
}
.ag-cc-chip-3 svg {
  animation: ag-cc-chipico 4.8s ease infinite 2.5s;
}
.ag-cc-chip-4 svg {
  animation: ag-cc-chipico 4.8s ease infinite 3.7s;
}
@keyframes ag-cc-chipico {
  0%,
  100% {
    color: #5d5d68;
  }
  8%,
  18% {
    color: var(--orange, #ff7a18);
  }
}
.ag-cc-flow-meta {
  flex: none;
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9.5px;
  color: #5d5d68;
}
/* rail: vertical label names the current step */
.ag-cc-rail-label {
  position: absolute;
  right: calc(100% + 11px);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b6b6bd;
  white-space: nowrap;
  animation: ag-cc-seg 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- level-up pass: palette, physics, cascades, reflection ---- */
.ag-cc-cmdk {
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}
.ag-cc-cmdk:hover {
  color: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
/* copy cascade on step change */
.ag-cc-copy.is-live > * {
  opacity: 0;
  animation: ag-cc-cascade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ag-cc-copy.is-live > *:nth-child(2) {
  animation-delay: 0.06s;
}
.ag-cc-copy.is-live > *:nth-child(3) {
  animation-delay: 0.13s;
}
.ag-cc-copy.is-live > *:nth-child(4) {
  animation-delay: 0.2s;
}
.ag-cc-copy.is-live > *:nth-child(5) {
  animation-delay: 0.27s;
}
.ag-cc-copy.is-live > *:nth-child(6) {
  animation-delay: 0.34s;
}
@keyframes ag-cc-cascade {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* sheen sweeps the vignette when its panel activates */
.ag-cc-sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 58%
  );
  background-size: 260% 100%;
  background-position: 135% 0;
  background-repeat: no-repeat;
  animation: ag-cc-vsweep 1.1s ease-out 0.3s both;
}
@keyframes ag-cc-vsweep {
  from {
    background-position: 135% 0;
  }
  to {
    background-position: -130% 0;
  }
}
/* command palette */
.ag-cc-pal-back {
  position: absolute;
  inset: 0;
  z-index: 9;
  background: rgba(7, 7, 10, 0.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  animation: ag-cc-fade 0.25s ease both;
}
@keyframes ag-cc-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ag-cc-pal {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  width: min(430px, 88%);
  background: rgba(22, 22, 28, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 70px -20px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  animation: ag-cc-pal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes ag-cc-pal-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
.ag-cc-pal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #8d8d98;
}
.ag-cc-pal-head input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #f4f4f5;
  caret-color: var(--orange, #ff7a18);
}
.ag-cc-pal-head input::placeholder {
  color: #5d5d68;
}
.ag-cc-pal kbd {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 600;
  color: #8d8d98;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 1.5px 5.5px;
}
.ag-cc-pal-list {
  padding: 6px;
  max-height: 250px;
  overflow-y: auto;
}
.ag-cc-pal-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #8d8d98;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.ag-cc-pal-item b {
  font-size: 12.5px;
  font-weight: 700;
  color: #c9c9d1;
}
.ag-cc-pal-item em {
  font-style: normal;
  font-size: 10.5px;
  color: #5d5d68;
  margin-left: auto;
  padding-right: 8px;
}
.ag-cc-pal-item.is-sel {
  background: rgba(255, 255, 255, 0.06);
}
.ag-cc-pal-item.is-sel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 2.5px;
  border-radius: 3px;
  background: var(--orange, #ff7a18);
}
.ag-cc-pal-item.is-sel b {
  color: #f4f4f5;
}
.ag-cc-pal-item.is-sel svg {
  color: var(--orange, #ff7a18);
}
.ag-cc-pal-empty {
  display: block;
  padding: 18px;
  text-align: center;
  font-size: 12px;
  color: #5d5d68;
}
.ag-cc-pal-foot {
  display: flex;
  gap: 14px;
  padding: 9px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  color: #5d5d68;
}
.ag-cc-pal-foot span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---- live link.me profiles inside the switcher cards ---- */
.ag-cc-prof-head {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px 10px;
}
.ag-cc-prof-head img {
  width: 26px !important;
  height: 26px !important;
}
.ag-cc-prof-id {
  min-width: 0;
  text-align: left;
}
.ag-cc-prof-id b {
  display: block;
  margin: 0 !important;
  font-size: 11.5px;
  line-height: 1.25;
}
.ag-cc-prof-id em {
  display: block;
  font-size: 9.5px;
}
.ag-cc-prof-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-style: normal;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 20px;
  padding: 2px 7px;
}
.ag-cc-prof-live u {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: ag-cc-blip 2.2s ease-in-out infinite;
}
.ag-cc-win .ag-cc-prof-live {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.35);
}
.ag-cc-win .ag-cc-prof-live u {
  background: #34d399;
}
.ag-cc-prof-frame {
  flex: 1;
  align-self: stretch;
  position: relative;
  margin: 0 10px 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.ag-cc-win .ag-cc-prof-frame {
  background: #0e0e12;
  border-color: rgba(255, 255, 255, 0.08);
}
.ag-cc-prof-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 139%;
  height: 139%;
  border: 0;
  transform: scale(0.72);
  transform-origin: 0 0;
  pointer-events: none;
}
/* true phone frames for the live profile cards inside the OS */
.ag-cc-win .ag-bn-prof {
  inset: 12px auto;
  border-radius: 44px;
  left: 50%;
  width: 336px;
  margin-left: -168px;
  padding: 10px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.ag-cc-win .ag-cc-prof-frame {
  margin: 0;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.08);
}
.ag-cc-win .ag-cc-prof-frame iframe {
  width: 137%;
  height: 137%;
  transform: scale(0.73);
}

/* ==================== Problem: chaos obeys gravity ==================== */
.ag-pg {
  position: relative;
  height: 260vh;
}
.ag-pg-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 9vh;
}
.ag-pg-head {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 20px;
}
.ag-pg-h2 {
  text-align: center;
}
.ag-pg-word {
  display: inline-block;
  white-space: nowrap;
}
.ag-pg-letter {
  display: inline-block;
  will-change: transform;
}
.ag-pg-field {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
}
.ag-pg-anchor {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.ag-pg-chip {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-left: -104px;
  margin-top: -31px;
  background: linear-gradient(180deg, #ffffff, #fafafb);
  border: 1px solid rgba(15, 17, 26, 0.06);
  border-radius: 16px;
  padding: 11px 22px 11px 11px;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(17, 17, 20, 0.05),
    0 6px 14px -8px rgba(17, 17, 20, 0.12),
    0 20px 40px -22px rgba(17, 17, 20, 0.28);
  will-change: transform, opacity;
  transition:
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease;
}
.ag-pg-chip:hover {
  border-color: rgba(15, 17, 26, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 4px rgba(17, 17, 20, 0.06),
    0 10px 20px -10px rgba(17, 17, 20, 0.18),
    0 28px 56px -24px rgba(17, 17, 20, 0.34);
}
.ag-pg-chip-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 5px 12px -5px currentColor;
}
.ag-pg-chip-txt {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ag-pg-chip-txt b {
  font-size: 14.5px;
  font-weight: 750;
  color: #0a0a0a;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.ag-pg-chip-txt em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 600;
  color: #a0a0a8;
  margin-top: 1px;
}
.ag-pg-hubwrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ag-pg-halo {
  position: absolute;
  inset: -64px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(255, 122, 24, 0.2),
    transparent
  );
  filter: blur(14px);
  pointer-events: none;
}
.ag-pg-hub {
  position: relative;
  width: min(480px, 92vw);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  padding: 22px 22px 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 44px 90px -28px rgba(0, 0, 0, 0.32);
}
.ag-pg-hub-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ag-pg-appicon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange, #ff7a18), #ff9d4d);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(255, 122, 24, 0.55);
  flex: none;
}
.ag-pg-hub-id {
  min-width: 0;
}
.ag-pg-hub-id b {
  display: block;
  font-size: 16.5px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
}
.ag-pg-hub-id em {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #9b9ba3;
}
.ag-pg-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 20px;
  padding: 3.5px 10px;
}
.ag-pg-live u {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: ag-live-pulse 1.8s ease-in-out infinite;
}
.ag-pg-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: none;
}
.ag-pg-roster {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 11px 14px;
  background: #f6f6f4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
.ag-pg-avs {
  display: flex;
  align-items: center;
}
.ag-pg-avs img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffffff;
  margin-left: -9px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}
.ag-pg-avs img:first-child {
  margin-left: 0;
}
.ag-pg-avs b {
  margin-left: -7px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #ffffff;
}
.ag-pg-roster em {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: #5f5f66;
}
.ag-pg-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.ag-pg-m {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 12px 6px 10px;
  font-size: 21px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.07);
}
.ag-pg-m i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.ag-pg-m em {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b6b6bd;
}
.ag-pg-m-blue span {
  color: #3b82f6;
}
.ag-pg-m-blue i {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}
.ag-pg-m-green span {
  color: #16a34a;
}
.ag-pg-m-green i {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.ag-pg-m-orange span {
  color: var(--orange, #ff7a18);
}
.ag-pg-m-orange i {
  background: rgba(255, 122, 24, 0.12);
  color: var(--orange, #ff7a18);
}
.ag-pg-chart {
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 14px 14px 10px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.07);
}
.ag-pg-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 72px;
}
.ag-pg-bar {
  flex: 1;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #d9d9de, #ececef);
  display: block;
}
.ag-pg-bar:nth-child(6) {
  background: linear-gradient(180deg, var(--orange, #ff7a18), #ffb066);
  box-shadow: 0 6px 14px -4px rgba(255, 122, 24, 0.5);
}
.ag-pg-days {
  display: flex;
  gap: 9px;
  margin-top: 7px;
}
.ag-pg-days span {
  flex: 1;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: #c2c2c8;
  letter-spacing: 0.06em;
}
/* static / mobile composition */
.ag-pg-static {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 64px;
}
.ag-pg-static-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 560px;
  padding: 0 16px;
}
.ag-pg-static-chips .ag-pg-chip {
  margin: 0;
}
.ag-pg-static .ag-pg-hubwrap {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}
.ag-pg-static .ag-pg-halo {
  opacity: 1;
}
.ag-pg-static .ag-pg-check {
  transform: none !important;
}

/* ==================== Claim your handle ==================== */
.ag-ch-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 32px 92px;
  border-radius: 30px;
  background:
    radial-gradient(
      70% 110% at 18% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      80% 120% at 88% 110%,
      rgba(64, 8, 36, 0.45),
      transparent 60%
    ),
    linear-gradient(
      118deg,
      #ff3a5e 0%,
      #ff4f43 30%,
      #ff7a1e 55%,
      #ff3a5e 80%,
      #ff9d3f 100%
    );
  background-size:
    160% 160%,
    160% 160%,
    240% 240%;
  background-position:
    0% 0%,
    100% 100%,
    0% 50%;
  animation: ag-ch-grad 13s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 50px 110px -40px rgba(255, 62, 80, 0.45);
  overflow: hidden;
}
.ag-ch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.ag-ch-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}
.ag-ch-title {
  margin: 18px 0 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(64, 8, 36, 0.25);
}
.ag-ch-sub {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.ag-ch-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  width: min(560px, 100%);
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 7px 7px 7px 20px;
  height: 68px;
  cursor: text;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 18px 44px -18px rgba(64, 8, 36, 0.5);
}
.ag-ch-field:focus-within {
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.35),
    0 22px 50px -18px rgba(64, 8, 36, 0.55);
  transform: translateY(-1px);
}
.ag-ch-prefix {
  font-size: 18px;
  font-weight: 700;
  color: #9b9ba3;
  flex: none;
}
.ag-ch-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  caret-color: #ff4f43;
}
.ag-ch-field input::placeholder {
  color: #c9c9d1;
}
.ag-ch-caret {
  width: 2px;
  height: 22px;
  background: #ff4f43;
  margin-left: -2px;
  animation: ag-ch-blink 1s steps(1) infinite;
}
@keyframes ag-ch-blink {
  0%,
  60% {
    opacity: 1;
  }
  61%,
  100% {
    opacity: 0;
  }
}
.ag-ch-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 13px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.ag-ch-btn:hover {
  background: #1d1d22;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}
.ag-ch-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-ch-btn:hover svg {
  transform: translateX(3px);
}
.ag-ch-avail {
  min-height: 26px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
}
.ag-ch-hint {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.ag-ch-checking {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.ag-ch-checking i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: ag-bn-blink 1s ease-in-out infinite;
}
.ag-ch-checking i:nth-child(2) {
  animation-delay: 0.18s;
}
.ag-ch-checking i:nth-child(3) {
  animation-delay: 0.36s;
  margin-right: 6px;
}
.ag-ch-free {
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ag-ch-free b {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #16a34a;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.ag-ch-taken {
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ag-ch-taken b {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #dc2626;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
@media (max-width: 768px) {
  .ag-ch-panel {
    padding: 64px 18px 68px;
    border-radius: 24px;
  }
  .ag-ch-field {
    height: auto;
    flex-wrap: wrap;
    padding: 14px 16px;
    justify-content: center;
  }
  .ag-ch-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* ---- v100 pass: aurora, app chrome, table v2, lists, usage ---- */
.ag-cc-aurora {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      34% 42% at 24% 30%,
      rgba(255, 122, 24, 0.07),
      transparent 70%
    ),
    radial-gradient(
      30% 38% at 78% 72%,
      rgba(99, 102, 241, 0.06),
      transparent 70%
    );
  filter: blur(40px);
  animation: ag-cc-aurora 26s ease-in-out infinite alternate;
}
@keyframes ag-cc-aurora {
  from {
    transform: translate3d(-3%, -2%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(3%, 2%, 0) rotate(6deg);
  }
}
.ag-cc-bar,
.ag-cc-body,
.ag-cc-flow {
  position: relative;
  z-index: 1;
}
/* app-in-app chrome strip on every demo */
.ag-cc-app-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.ag-cc-app-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.ag-cc-app-bar b {
  margin-left: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  color: #8d8d98;
  letter-spacing: 0.04em;
}
.ag-cc-card .ag-cc-app-bar {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.025);
}
.ag-cc-card .ag-cc-app-bar i {
  background: rgba(0, 0, 0, 0.12);
}
.ag-cc-card .ag-cc-app-bar b {
  color: #9b9ba3;
}
/* vignettes drop below the chrome strip */
.ag-cc-demo .ag-bn-ws {
  inset: 50px 14px 14px;
}
.ag-cc-demo .ag-bn-prof {
  top: 52px;
}
.ag-cc-demo .ag-bn-an {
  inset: 52px 16px 16px;
}
.ag-cc-demo .ag-bn-ex {
  inset: 52px 16px 16px;
}
.ag-cc-demo .ag-bn-chat {
  inset: 52px 16px 16px;
}
.ag-cc-demo .ag-bn-org {
  top: 36px;
}
/* table v2: bigger type, revenue column, dark-tuned row flash */
.ag-bn-ws-rev {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  font-variant-numeric: tabular-nums;
}
.ag-cc-win .ag-bn-ws-rev {
  color: #34d399;
  font-size: 12px;
}
.ag-cc-win .ag-bn-ws-row {
  padding: 9px 8px;
}
.ag-cc-win .ag-bn-ws-row img {
  width: 28px;
  height: 28px;
}
.ag-cc-win .ag-bn-ws-id b {
  font-size: 13px;
}
.ag-cc-win .ag-bn-ws-id em {
  font-size: 10.5px;
}
.ag-cc-win .ag-bn-ws-num {
  font-size: 12.5px;
}
.ag-cc-win .ag-bn-ws-status {
  font-size: 10px;
}
.ag-cc-win .ag-bn-ws-head {
  font-size: 9.5px;
}
.ag-cc-win [class*="ag-bn-flash-"] {
  animation-name: ag-cc-flashdark;
}
@keyframes ag-cc-flashdark {
  0%,
  100% {
    background: transparent;
  }
  50% {
    background: rgba(255, 122, 24, 0.06);
  }
}
/* feature checklist under the stats */
.ag-cc-list {
  position: relative;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ag-cc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #c9c9d1;
}
.ag-cc-list li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 24, 0.14);
  color: var(--orange, #ff7a18);
}
.ag-cc-card .ag-cc-list {
  display: none;
}
/* sidebar seats usage meter */
.ag-cc-usage {
  margin-top: auto;
  padding: 12px 13px 0;
}
.ag-cc-usage span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ag-cc-usage b {
  font-size: 10.5px;
  font-weight: 800;
  color: #8d8d98;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ag-cc-usage em {
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  color: #c9c9d1;
}
.ag-cc-usage-bar {
  display: block;
  height: 4px;
  margin-top: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.ag-cc-usage-bar u {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange, #ff7a18), #ffb066);
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.5);
}
.ag-cc-side-foot {
  margin-top: 0;
}

/* ---- reimagined OS: frosted titanium + timeline + window manager ---- */
.ag-cc-win {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 33, 0.93) 0%,
    rgba(12, 12, 16, 0.97) 100%
  );
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
}
.ag-cc-bar {
  background: rgba(255, 255, 255, 0.035);
}
.ag-cc-side {
  background: rgba(255, 255, 255, 0.028);
}
/* editorial timeline (sidebar) */
.ag-cc-tl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ag-cc-tl-line {
  position: absolute;
  left: 20px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.ag-cc-tl-line u {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffb066, var(--orange, #ff7a18));
  transform-origin: top;
}
.ag-cc-tl-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  height: 48px;
  padding: 0 9px 0 8px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #8d8d98;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}
.ag-cc-tl-item:hover {
  color: #c9c9d1;
}
.ag-cc-tl-node {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17171c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #8d8d98;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}
.ag-cc-tl-node em {
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}
.ag-cc-tl-item.is-done .ag-cc-tl-node {
  background: rgba(255, 122, 24, 0.16);
  border-color: rgba(255, 122, 24, 0.5);
  color: var(--orange, #ff7a18);
}
.ag-cc-tl-item.is-now {
  color: #f4f4f5;
}
.ag-cc-tl-item.is-now .ag-cc-tl-node {
  background: var(--orange, #ff7a18);
  border-color: var(--orange, #ff7a18);
  color: #ffffff;
  box-shadow:
    0 0 0 4px rgba(255, 122, 24, 0.18),
    0 0 14px rgba(255, 122, 24, 0.5);
}
.ag-cc-tl-item kbd {
  margin-left: auto;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 600;
  color: #5d5d68;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1.5px 5.5px;
  line-height: 1.3;
}
.ag-cc-tl-item.is-now kbd {
  color: #c9c9d1;
  border-color: rgba(255, 122, 24, 0.4);
}
/* window-manager canvas */
.ag-cc-winlet {
  position: absolute;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 44px -18px rgba(0, 0, 0, 0.55);
  will-change: left, top, width, height;
}
.ag-cc-winlet.is-active {
  z-index: 2;
  cursor: default;
}
.ag-cc-winlet .ag-cc-demo {
  border-radius: 18px;
}
.ag-cc-winlet-cover {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 18px;
  background: rgba(20, 20, 27, 0.88);
  backdrop-filter: blur(8px);
  color: #8d8d98;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.ag-cc-winlet:hover .ag-cc-winlet-cover {
  background: rgba(30, 30, 39, 0.92);
  color: var(--orange, #ff7a18);
}
.ag-cc-winlet-cover b {
  font-size: 10px;
  font-weight: 700;
  color: #c9c9d1;
  white-space: nowrap;
}
.ag-cc-winlet-cover kbd {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 8px;
  color: #5d5d68;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.5px 4px;
}
.ag-cc-dockbar {
  position: absolute;
  left: 13.2%;
  right: 13.2%;
  top: 80.5%;
  height: 17%;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* cinematic frosted caption */
.ag-cc-caption {
  position: absolute;
  z-index: 4;
  left: 4.5%;
  bottom: 25.5%;
  width: min(360px, 46%);
  background: rgba(13, 13, 18, 0.6);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 18px 20px 19px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 64px -24px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}
.ag-cc-caption h3 {
  font-size: 21px;
}
.ag-cc-caption p {
  font-size: 13px;
  line-height: 1.55;
  margin-top: 8px;
}
.ag-cc-caption .ag-cc-stats {
  margin-top: 12px;
  gap: 6px;
}
.ag-cc-caption .ag-cc-stats span {
  font-size: 10px;
  padding: 4px 10px;
}
.ag-cc-caption .ag-cc-more {
  margin-top: 13px;
  font-size: 12px;
  pointer-events: auto;
}

/* ---- stable app switcher + product-true screens ---- */
.ag-cc-main {
  display: flex;
  flex-direction: column;
}
.ag-cc-canvas {
  position: relative;
  flex: 1;
  min-height: 0;
}
.ag-cc-screenwrap {
  position: absolute;
  inset: 12px 14px;
  will-change: transform, opacity, filter;
}
.ag-cc-dock {
  flex: none;
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px 12px;
}
.ag-cc-dock-tile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 13px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #8d8d98;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.ag-cc-dock-tile:hover {
  color: #c9c9d1;
  background: rgba(255, 255, 255, 0.05);
}
.ag-cc-dock-tile.is-on {
  color: #f4f4f5;
  border-color: rgba(255, 122, 24, 0.5);
  background: rgba(255, 122, 24, 0.1);
  box-shadow: 0 0 14px rgba(255, 122, 24, 0.18);
}
.ag-cc-dock-tile.is-on svg {
  color: var(--orange, #ff7a18);
}
.ag-cc-dock-tile kbd {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 8.5px;
  color: #5d5d68;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.5px 4.5px;
}
/* ---- product replica primitives ---- */
.ag-os-screen {
  position: absolute;
  inset: 50px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 0;
}
.ag-os-crumb {
  font-size: 11px;
  color: #8d8d98;
}
.ag-os-crumb b {
  color: #f4f4f5;
  font-weight: 700;
}
.ag-os-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ag-os-id b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #f4f4f5;
  line-height: 1.2;
}
.ag-os-id em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #8d8d98;
}
.ag-os-call {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  color: #c9c9d1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 13px;
  white-space: nowrap;
}
.ag-os-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.ag-os-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  padding: 10px 13px;
}
.ag-os-stat em {
  display: block;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8d8d98;
}
.ag-os-stat b {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: #f4f4f5;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}
.ag-os-stat i {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  color: #5d5d68;
  font-weight: 600;
}
.ag-os-stat-purple b {
  color: #a78bfa;
}
.ag-os-stat-green b {
  color: #34d399;
}
.ag-os-stat-yellow b {
  color: #fbbf24;
}
.ag-os-table {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 6px 8px;
}
.ag-os-more {
  padding: 7px 8px 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: #8d8d98;
  text-align: center;
}
.ag-os-screen .ag-bn-ws-note {
  margin-top: auto;
}
/* analytics replica */
.ag-os-anhead {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ag-os-anhead b {
  font-size: 18px;
  font-weight: 800;
  color: #f4f4f5;
}
.ag-os-anhead em {
  margin-left: auto;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  color: #c9c9d1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 12px;
}
.ag-os-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 20px;
  padding: 2.5px 8px;
}
.ag-os-live u {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
  animation: ag-cc-blip 2.2s ease-in-out infinite;
}
.ag-os-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.ag-os-metric {
  border-radius: 13px;
  padding: 11px 13px;
  border: 1px solid;
}
.ag-os-metric em {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  font-weight: 700;
  color: #c9c9d1;
}
.ag-os-metric b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #f4f4f5;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.ag-os-metric i {
  display: block;
  font-style: normal;
  font-size: 8.5px;
  font-weight: 700;
}
.ag-os-m-purple {
  background: rgba(167, 139, 250, 0.09);
  border-color: rgba(167, 139, 250, 0.25);
}
.ag-os-m-purple i {
  color: #a78bfa;
}
.ag-os-m-pink {
  background: rgba(244, 114, 182, 0.09);
  border-color: rgba(244, 114, 182, 0.25);
}
.ag-os-m-pink i {
  color: #f472b6;
}
.ag-os-m-blue {
  background: rgba(96, 165, 250, 0.09);
  border-color: rgba(96, 165, 250, 0.25);
}
.ag-os-m-blue i {
  color: #60a5fa;
}
.ag-os-m-green {
  background: rgba(52, 211, 153, 0.09);
  border-color: rgba(52, 211, 153, 0.25);
}
.ag-os-m-green i {
  color: #34d399;
}
.ag-os-rt {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px 14px;
}
.ag-os-rt-head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ag-os-rt-head b {
  font-size: 12.5px;
  font-weight: 800;
  color: #f4f4f5;
}
.ag-os-rt-head em {
  font-style: normal;
  font-size: 10px;
  color: #8d8d98;
  margin-right: auto;
}
.ag-os-rt-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.ag-os-rt-row span {
  display: block;
}
.ag-os-rt-row em {
  display: block;
  font-style: normal;
  font-size: 9px;
  color: #8d8d98;
  font-weight: 700;
}
.ag-os-rt-row b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #f4f4f5;
  font-variant-numeric: tabular-nums;
}
.ag-os-rt-row i {
  display: block;
  font-style: normal;
  font-size: 8.5px;
  color: #34d399;
  font-weight: 700;
}
.ag-os-rt-chart {
  position: relative;
  flex: 1;
  min-height: 44px;
}
.ag-os-rt-chart svg {
  position: absolute;
  inset: 0 0 16px;
  width: 100%;
  height: calc(100% - 16px);
}
.ag-os-line-a,
.ag-os-line-b {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 800;
  animation: ag-os-draw 9s ease-in-out infinite;
}
.ag-os-line-a {
  stroke: #8b5cf6;
}
.ag-os-line-b {
  stroke: #ec4899;
}
.ag-os-grid {
  stroke: #e5e7eb;
  stroke-width: 1;
  stroke-dasharray: 3 3;
  vector-effect: non-scaling-stroke;
}
@keyframes ag-os-draw {
  0% {
    stroke-dashoffset: 800;
  }
  28%,
  94% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.ag-os-legend {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 14px;
}
.ag-os-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #8d8d98;
}
.ag-os-dot-a,
.ag-os-dot-b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.ag-os-dot-a {
  background: #a78bfa;
}
.ag-os-dot-b {
  background: #f472b6;
}
/* dashboard table rows inherit dark styles; tighten inside replica */
.ag-os-table .ag-bn-ws-row {
  padding: 7px 8px;
}

/* status bar between canvas and dock */
.ag-cc-info {
  flex: none;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 20px 0;
  min-width: 0;
}
.ag-cc-info .ag-cc-step {
  flex: none;
  background: rgba(255, 122, 24, 0.12);
  border: 1px solid rgba(255, 122, 24, 0.35);
  border-radius: 7px;
  padding: 2.5px 7px;
  font-size: 10px;
}
.ag-cc-info-title {
  flex: none;
  font-size: 14px;
  font-weight: 800;
  color: #f4f4f5;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.ag-cc-info-desc {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #9b9ba6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-cc-info .ag-cc-stats {
  flex: none;
  margin: 0;
  gap: 6px;
  flex-wrap: nowrap;
}
.ag-cc-info .ag-cc-stats span {
  font-size: 10px;
  padding: 3.5px 10px;
  white-space: nowrap;
}
.ag-cc-info .ag-cc-more {
  flex: none;
  margin: 0;
  font-size: 12px;
  white-space: nowrap;
}
@media (max-width: 1240px) {
  .ag-cc-info .ag-cc-stats span:nth-child(2) {
    display: none;
  }
}

/* profile side panels — cycle in sync with the phone */
.ag-cc-pside {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 224px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  z-index: 2;
}
.ag-cc-pside-l {
  left: max(5%, 26px);
}
.ag-cc-pside-r {
  right: max(5%, 26px);
}
.ag-cc-cyc-1 {
  animation: ag-cc-sidecycle 9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.ag-cc-cyc-2 {
  animation: ag-cc-sidecycle 9s cubic-bezier(0.16, 1, 0.3, 1) 3s infinite;
}
.ag-cc-cyc-3 {
  animation: ag-cc-sidecycle 9s cubic-bezier(0.16, 1, 0.3, 1) 6s infinite;
}
@keyframes ag-cc-sidecycle {
  0%,
  27% {
    opacity: 1;
    transform: translateY(-50%);
  }
  33%,
  94% {
    opacity: 0;
    transform: translateY(calc(-50% + 10px));
  }
  95% {
    opacity: 0;
    transform: translateY(calc(-50% - 10px));
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.ag-cc-pcard {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 13px 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.ag-cc-pcard em {
  display: block;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8d8d98;
}
.ag-cc-pcard > b {
  display: block;
  margin-top: 3px;
  font-size: 22px;
  font-weight: 800;
  color: #f4f4f5;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.ag-cc-pcard > i {
  display: block;
  font-style: normal;
  margin-top: 6px;
  font-size: 10px;
  color: #8d8d98;
  font-weight: 600;
}
.ag-cc-pwho {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ag-cc-pwho img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.ag-cc-pwho b {
  font-size: 13.5px;
  font-weight: 800;
  color: #f4f4f5;
}
.ag-cc-purl {
  display: block;
  margin: 6px 0 0 37px;
  font-style: normal;
  font-size: 10.5px;
  color: #8d8d98;
  font-weight: 600;
}
.ag-cc-psoc {
  display: flex;
  gap: 6px;
  margin-top: 9px;
}
.ag-cc-psoc u {
  text-decoration: none;
  font-size: 8.5px;
  font-weight: 800;
  color: #c9c9d1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 2.5px 7px;
}
.ag-cc-pspark {
  display: block;
  width: 100%;
  height: 24px;
  margin-top: 9px;
}
.ag-cc-pspark path {
  fill: none;
  stroke: var(--orange, #ff7a18);
  stroke-width: 2;
  stroke-linecap: round;
}
.ag-cc-ptoggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 800;
  color: #34d399;
}
.ag-cc-ptoggle u {
  width: 34px;
  height: 19px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.25);
  border: 1px solid rgba(52, 211, 153, 0.5);
  position: relative;
}
.ag-cc-ptoggle u::after {
  content: "";
  position: absolute;
  right: 2.5px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #34d399;
}
.ag-cc-prev {
  color: var(--orange, #ff7a18) !important;
}
.ag-cc-pbars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 30px;
  margin-top: 9px;
}
.ag-cc-pbars u {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--orange, #ff7a18),
    rgba(255, 122, 24, 0.4)
  );
}
.ag-cc-pteam {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.ag-cc-pteam img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #16161b;
  margin-left: -7px;
}
.ag-cc-pteam img:first-child {
  margin-left: 0;
}
.ag-cc-pteam b {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #c9c9d1;
}
@media (max-width: 1150px) {
  .ag-cc-pside {
    display: none;
  }
}

/* ==================== Agency OS: white theme ==================== */
.ag-cc-win {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(250, 250, 249, 0.99) 100%
  );
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 2px 5px rgba(0, 0, 0, 0.06),
    0 60px 120px -36px rgba(0, 0, 0, 0.25);
}
.ag-cc-light {
  background: radial-gradient(
    620px circle at var(--lx, 60%) var(--ly, 18%),
    rgba(255, 122, 24, 0.05),
    transparent 62%
  );
}
.ag-cc-vig {
  background: none;
}
.ag-cc-grain {
  opacity: 0.028;
}
.ag-cc-aurora {
  background:
    radial-gradient(
      34% 42% at 24% 30%,
      rgba(255, 122, 24, 0.06),
      transparent 70%
    ),
    radial-gradient(
      30% 38% at 78% 72%,
      rgba(99, 102, 241, 0.05),
      transparent 70%
    );
}
.ag-cc-shadow {
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.2), transparent);
}
/* chrome */
.ag-cc-bar {
  background: rgba(0, 0, 0, 0.024);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}
.ag-cc-title {
  color: #3c3c43;
}
.ag-cc-title i {
  color: #c2c2c8;
}
.ag-cc-title-seg {
  color: #9b9ba3;
}
.ag-cc-cmdk {
  color: #5f5f66;
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.02);
}
.ag-cc-cmdk:hover {
  color: #0a0a0a;
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.04);
}
.ag-cc-count {
  color: #9b9ba3;
}
/* sidebar + timeline */
.ag-cc-side {
  background: rgba(0, 0, 0, 0.018);
  border-right-color: rgba(0, 0, 0, 0.07);
}
.ag-cc-side-head {
  border-bottom-color: rgba(0, 0, 0, 0.07);
}
.ag-cc-side-avs img {
  border-color: #ffffff;
}
.ag-cc-presence {
  border-color: #ffffff;
}
.ag-cc-side-id b {
  color: #0a0a0a;
}
.ag-cc-side-id em {
  color: #9b9ba3;
}
.ag-cc-side-label {
  color: #b6b6bd;
}
.ag-cc-tl-line {
  background: rgba(0, 0, 0, 0.09);
}
.ag-cc-tl-item {
  color: #84848c;
}
.ag-cc-tl-item:hover {
  color: #3c3c43;
}
.ag-cc-tl-item.is-now {
  color: #0a0a0a;
}
.ag-cc-tl-node {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.16);
  color: #9b9ba3;
}
.ag-cc-tl-item.is-done .ag-cc-tl-node {
  background: rgba(255, 122, 24, 0.12);
  border-color: rgba(255, 122, 24, 0.5);
  color: var(--orange, #ff7a18);
}
.ag-cc-tl-item.is-now .ag-cc-tl-node {
  background: var(--orange, #ff7a18);
  border-color: var(--orange, #ff7a18);
  color: #fff;
}
.ag-cc-tl-item kbd {
  color: #9b9ba3;
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.02);
}
.ag-cc-tl-item.is-now kbd {
  color: #3c3c43;
}
.ag-cc-usage b {
  color: #9b9ba3;
}
.ag-cc-usage em {
  color: #5f5f66;
}
.ag-cc-usage-bar {
  background: rgba(0, 0, 0, 0.08);
}
.ag-cc-side-foot {
  color: #9b9ba3;
}
.ag-cc-side-foot em {
  color: #c2c2c8;
}
/* canvas + app chrome */
.ag-cc-main {
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}
.ag-cc-app-bar {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}
.ag-cc-app-bar i {
  background: rgba(0, 0, 0, 0.12);
}
.ag-cc-app-bar b {
  color: #9b9ba3;
}
.ag-cc-win .ag-bn-demo {
  background: #f7f7f8;
  border-color: rgba(0, 0, 0, 0.05);
}
/* vignettes back to light */
.ag-cc-win .ag-bn-ws {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: none;
}
.ag-cc-win .ag-bn-ws-crumb {
  color: #9b9ba3;
}
.ag-cc-win .ag-bn-ws-crumb b {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-ws-head {
  color: #b6b6bd;
}
.ag-cc-win .ag-bn-ws-id b {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-ws-id em {
  color: #9b9ba3;
}
.ag-cc-win .ag-bn-ws-num {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-ws-rev {
  color: #16a34a;
}
.ag-cc-win [class*="ag-bn-flash-"] {
  animation-name: ag-bn-flash;
}
.ag-cc-win .ag-bn-ws-note {
  background: #f7f7f8;
  border-color: rgba(0, 0, 0, 0.06);
  color: #3a3a40;
}
.ag-cc-win .ag-bn-cursor {
  color: #0a0a0a;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}
.ag-cc-win .ag-bn-cursor i {
  background: #0a0a0a;
  border: 0;
}
.ag-cc-win .ag-bn-cur-3 {
  color: var(--orange, #ff7a18);
}
.ag-cc-win .ag-bn-cur-3 i {
  background: var(--orange, #ff7a18);
}
.ag-cc-win .ag-bn-an-total {
  color: #5f5f66;
}
.ag-cc-win .ag-bn-an-total b {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-an-dot {
  border-color: #ffffff;
}
.ag-cc-win .ag-bn-an-tip {
  background: #0a0a0a;
}
.ag-cc-win .ag-bn-an-tip span {
  color: #ffffff;
}
.ag-cc-win .ag-bn-an-x {
  color: #b6b6bd;
}
.ag-cc-win .ag-bn-ex-row {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
}
.ag-cc-win .ag-bn-ex-row b {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-ex-row em {
  color: #9b9ba3;
}
.ag-cc-win .ag-bn-check-1,
.ag-cc-win .ag-bn-check-2,
.ag-cc-win .ag-bn-check-3 {
  animation-name: ag-bn-checkin;
}
.ag-cc-win .ag-bn-ex-btn {
  background: #0a0a0a;
}
.ag-cc-win .ag-bn-chat-head {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.ag-cc-win .ag-bn-chat-head b {
  color: #0a0a0a;
}
.ag-cc-win .ag-bn-msg-q {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #3a3a40;
}
.ag-cc-win .ag-bn-msg-typing {
  background: rgba(0, 0, 0, 0.06);
}
.ag-cc-win .ag-bn-msg-typing i {
  background: rgba(0, 0, 0, 0.4);
}
.ag-cc-win .ag-bn-msg-a {
  background: var(--orange, #ff7a18);
  color: #ffffff;
}
.ag-cc-win .ag-bn-org-hub {
  background: #0a0a0a;
  color: #ffffff;
}
.ag-cc-win .ag-bn-org-row img {
  border-color: #ffffff;
}
.ag-cc-win .ag-bn-org-meta {
  color: #0a0a0a;
}
/* product screens */
.ag-os-crumb {
  color: #9b9ba3;
}
.ag-os-crumb b {
  color: #0a0a0a;
}
.ag-os-id b {
  color: #0a0a0a;
}
.ag-os-id em {
  color: #9b9ba3;
}
.ag-os-call {
  color: #3c3c43;
  background: rgba(0, 0, 0, 0.025);
  border-color: rgba(0, 0, 0, 0.1);
}
.ag-os-stat {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.06);
}
.ag-os-stat em {
  color: #9b9ba3;
}
.ag-os-stat b {
  color: #0a0a0a;
}
.ag-os-stat i {
  color: #b6b6bd;
}
.ag-os-stat-purple b {
  color: #7c3aed;
}
.ag-os-stat-green b {
  color: #16a34a;
}
.ag-os-stat-yellow b {
  color: #d97706;
}
.ag-os-table {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
}
.ag-os-more {
  color: #9b9ba3;
}
.ag-os-anhead b {
  color: #0a0a0a;
}
.ag-os-anhead em {
  color: #3c3c43;
  background: rgba(0, 0, 0, 0.025);
  border-color: rgba(0, 0, 0, 0.1);
}
.ag-os-live {
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.3);
}
.ag-os-live u {
  background: #22c55e;
}
.ag-os-metric em {
  color: #5f5f66;
}
.ag-os-metric b {
  color: #0a0a0a;
}
.ag-os-m-purple i {
  color: #7c3aed;
}
.ag-os-m-pink i {
  color: #db2777;
}
.ag-os-m-blue i {
  color: #2563eb;
}
.ag-os-m-green i {
  color: #16a34a;
}
.ag-os-rt {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
}
.ag-os-rt-head b {
  color: #0a0a0a;
}
.ag-os-rt-head em {
  color: #9b9ba3;
}
.ag-os-rt-row em {
  color: #9b9ba3;
}
.ag-os-rt-row b {
  color: #0a0a0a;
}
.ag-os-rt-row i {
  color: #16a34a;
}
.ag-os-line-a {
  stroke: #8b5cf6;
}
.ag-os-line-b {
  stroke: #ec4899;
}
.ag-os-legend span {
  color: #9b9ba3;
}
.ag-os-dot-a {
  background: #8b5cf6;
}
.ag-os-dot-b {
  background: #ec4899;
}
/* status bar */
.ag-cc-info-title {
  color: #0a0a0a;
}
.ag-cc-info-desc {
  color: #5f5f66;
}
.ag-cc-info .ag-cc-stats span,
.ag-cc-stats span {
  color: #3c3c43;
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}
.ag-cc-more {
  color: #0a0a0a;
}
.ag-cc-more:hover {
  color: var(--orange, #ff7a18);
}
/* profile side panels */
.ag-cc-pcard {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, 0.14);
}
.ag-cc-pcard em {
  color: #9b9ba3;
}
.ag-cc-pcard > b {
  color: #0a0a0a;
}
.ag-cc-pcard > i {
  color: #9b9ba3;
}
.ag-cc-pwho b {
  color: #0a0a0a;
}
.ag-cc-purl {
  color: #9b9ba3;
}
.ag-cc-psoc u {
  color: #3c3c43;
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
.ag-cc-pteam img {
  border-color: #ffffff;
}
.ag-cc-pteam b {
  color: #5f5f66;
}
/* command palette */
.ag-cc-pal-back {
  background: rgba(250, 250, 249, 0.6);
}
.ag-cc-pal {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 30px 70px -20px rgba(0, 0, 0, 0.3);
}
.ag-cc-pal-head {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #9b9ba3;
}
.ag-cc-pal-head input {
  color: #0a0a0a;
}
.ag-cc-pal-head input::placeholder {
  color: #b6b6bd;
}
.ag-cc-pal kbd {
  color: #9b9ba3;
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.12);
}
.ag-cc-pal-item {
  color: #9b9ba3;
}
.ag-cc-pal-item b {
  color: #3c3c43;
}
.ag-cc-pal-item em {
  color: #b6b6bd;
}
.ag-cc-pal-item.is-sel {
  background: rgba(0, 0, 0, 0.04);
}
.ag-cc-pal-item.is-sel b {
  color: #0a0a0a;
}
.ag-cc-pal-empty {
  color: #9b9ba3;
}
.ag-cc-pal-foot {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: #9b9ba3;
}

.ag-cc-pup {
  color: #16a34a !important;
  font-weight: 700 !important;
}
.ag-cc-ptop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: var(--orange, #ff7a18);
}
.ag-cc-ptop b {
  font-size: 14.5px;
  font-weight: 800;
  color: #0a0a0a;
}

/* ---- Leads page replica ---- */
.ag-ld {
  gap: 10px;
}
.ag-ld-head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ag-ld-head > b {
  font-size: 19px;
  font-weight: 800;
  color: #0a0a0a;
  margin-right: auto;
}
.ag-ld-search {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 240px;
  font-size: 11px;
  color: #b6b6bd;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 7.5px 12px;
}
.ag-ld-btn-dark {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 10px;
  padding: 8px 13px;
  white-space: nowrap;
}
.ag-ld-btn {
  font-size: 11px;
  font-weight: 700;
  color: #3c3c43;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 8px 13px;
  white-space: nowrap;
}
.ag-ld-tabs {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0;
}
.ag-ld-tabs b {
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  padding-bottom: 8px;
  border-bottom: 2px solid #0a0a0a;
}
.ag-ld-tabs span {
  font-size: 12px;
  font-weight: 600;
  color: #9b9ba3;
  padding-bottom: 8px;
}
.ag-ld-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.ag-ld-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 13px;
  padding: 11px 14px;
}
.ag-ld-stat em {
  display: block;
  font-style: normal;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9b9ba3;
}
.ag-ld-stat b {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  font-size: 19px;
  font-weight: 800;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}
.ag-ld-pill-up,
.ag-ld-pill-down {
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  border-radius: 20px;
  padding: 2.5px 8px;
}
.ag-ld-pill-up {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
}
.ag-ld-pill-down {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
}
.ag-ld-subtabs {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ag-ld-subtabs b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: #0a0a0a;
  padding-bottom: 6px;
  border-bottom: 2px solid #0a0a0a;
}
.ag-ld-subtabs b u {
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 1.5px 7px;
}
.ag-ld-subtabs span {
  font-size: 11.5px;
  font-weight: 600;
  color: #9b9ba3;
}
.ag-ld-filters {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ag-ld-filters em {
  font-style: normal;
  font-size: 10.5px;
  color: #9b9ba3;
  font-weight: 600;
  margin-right: auto;
}
.ag-ld-filters span {
  font-size: 10px;
  font-weight: 700;
  color: #3c3c43;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 4.5px 12px;
}
.ag-ld-filters span.is-on {
  color: #ffffff;
  background: #0a0a0a;
  border-color: #0a0a0a;
}
.ag-ld-table {
  flex: 1;
  min-height: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 13px;
  padding: 4px 14px;
  overflow: hidden;
}
.ag-ld-th,
.ag-ld-tr {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.6fr 0.9fr 0.9fr;
  gap: 10px;
  align-items: center;
  padding: 9px 4px;
}
.ag-ld-th {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b6b6bd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ag-ld-tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 11.5px;
}
.ag-ld-tr:last-child {
  border-bottom: 0;
}
.ag-ld-mail {
  color: #0a0a0a;
  font-weight: 600;
}
.ag-ld-dash {
  color: #c2c2c8;
}
.ag-ld-sub {
  text-decoration: none;
  font-size: 9.5px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 20px;
  padding: 3px 10px;
}
.ag-ld-date {
  color: #9b9ba3;
  font-variant-numeric: tabular-nums;
}

.ag-os-legend-top {
  position: static;
  display: flex;
  gap: 14px;
  margin-bottom: 2px;
}
.ag-os-rt-chart svg {
  inset: 0 0 18px;
  height: calc(100% - 18px);
}
.ag-os-times {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #9b9ba3;
  font-variant-numeric: tabular-nums;
}

/* ---- support: centered chat widget ---- */
.ag-sp-wrap {
  position: absolute;
  inset: 50px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-sp-box {
  width: min(560px, 92%);
  height: 100%;
  max-height: 560px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.05),
    0 30px 60px -24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.ag-sp-head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #fbfbfa;
}
.ag-sp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34c759, #1fa94a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.ag-sp-id {
  min-width: 0;
}
.ag-sp-id b {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.25;
}
.ag-sp-id em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  color: #9b9ba3;
}
.ag-sp-on {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
}
.ag-sp-on u {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: ag-live-pulse 1.8s ease-in-out infinite;
}
.ag-sp-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 16px;
}
.ag-sp-msg {
  max-width: 72%;
  border-radius: 18px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  opacity: 0;
}
.ag-sp-msg time {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  opacity: 0.6;
  margin-top: 3px;
  text-align: right;
}
.ag-sp-q {
  align-self: flex-start;
  background: #f0f0f2;
  color: #2c2c31;
  border-bottom-left-radius: 6px;
}
.ag-sp-q time {
  text-align: left;
}
.ag-sp-a {
  align-self: flex-end;
  background: linear-gradient(180deg, #36cd5d 0%, #27b14d 100%);
  color: #ffffff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 12px -5px rgba(39, 177, 77, 0.45);
}
.ag-sp-typing {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 13px;
  border-bottom-right-radius: 5px;
  padding: 0 14px;
  max-height: 0;
  margin: -4.5px 0;
  overflow: hidden;
  opacity: 0;
}
.ag-sp-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  animation: ag-bn-blink 1s ease-in-out infinite;
}
.ag-sp-typing i:nth-child(2) {
  animation-delay: 0.18s;
}
.ag-sp-typing i:nth-child(3) {
  animation-delay: 0.36s;
}
.ag-sp-stamp {
  align-self: center;
  font-size: 10px;
  font-weight: 800;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 4px 13px;
  opacity: 0;
}
.ag-sp-input {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 14px 14px;
  padding: 0 6px 0 15px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #ffffff;
}
.ag-sp-input span {
  flex: 1;
  font-size: 12px;
  color: #b6b6bd;
  font-weight: 500;
}
.ag-sp-input i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #34c759;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* the conversation plays in order on a shared 16s clock */
.ag-sp-m1 {
  animation: ag-sp-k1 16s ease infinite;
}
.ag-sp-t1 {
  animation: ag-sp-kt1 16s ease infinite;
}
.ag-sp-m2 {
  animation: ag-sp-k2 16s ease infinite;
}
.ag-sp-m3 {
  animation: ag-sp-k3 16s ease infinite;
}
.ag-sp-m4 {
  animation: ag-sp-k4 16s ease infinite;
}
.ag-sp-t2 {
  animation: ag-sp-kt2 16s ease infinite;
}
.ag-sp-m5 {
  animation: ag-sp-k5 16s ease infinite;
}
.ag-sp-m6 {
  animation: ag-sp-k6 16s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes ag-sp-k1 {
  0%,
  2% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  5%,
  95% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  99%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-sp-kt1 {
  0%,
  8% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: -4.5px 0;
  }
  10%,
  15% {
    opacity: 1;
    max-height: 38px;
    padding-top: 11px;
    padding-bottom: 11px;
    margin: 0;
  }
  17%,
  100% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: -4.5px 0;
  }
}
@keyframes ag-sp-k2 {
  0%,
  16% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  19%,
  95% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  99%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-sp-k3 {
  0%,
  29% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  32%,
  95% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  99%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-sp-k4 {
  0%,
  43% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  46%,
  95% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  99%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-sp-kt2 {
  0%,
  50% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: -4.5px 0;
  }
  52%,
  57% {
    opacity: 1;
    max-height: 38px;
    padding-top: 11px;
    padding-bottom: 11px;
    margin: 0;
  }
  59%,
  100% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: -4.5px 0;
  }
}
@keyframes ag-sp-k5 {
  0%,
  59% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  62%,
  95% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  99%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-sp-k6 {
  0%,
  74% {
    opacity: 0;
    transform: scale(0.8);
  }
  78%,
  95% {
    opacity: 1;
    transform: scale(1);
  }
  99%,
  100% {
    opacity: 0;
  }
}

.ag-ld-phone {
  color: #5f5f66;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}
.ag-ld-note {
  color: #5f5f66;
  font-size: 11px;
  font-weight: 600;
}

/* ---- analytics: self-scrolling pages (realtime -> geo -> sources) ---- */
.ag-os-carousel {
  overflow: hidden;
  padding: 0;
  position: relative;
}
.ag-os-pages {
  position: absolute;
  inset: 0;
  height: 600%;
  display: flex;
  flex-direction: column;
  animation: ag-os-pagecycle 17s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform;
}
.ag-os-page {
  height: 16.6667%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px 14px;
  min-height: 0;
  position: relative;
}
.ag-os-page .ag-os-rt-chart {
  flex: 1;
  min-height: 40px;
  position: relative;
}
@keyframes ag-os-pagecycle {
  0%,
  16.5% {
    transform: translateY(0);
  }
  20%,
  36.5% {
    transform: translateY(-16.6667%);
  }
  40%,
  56.5% {
    transform: translateY(-33.3333%);
  }
  60%,
  76.5% {
    transform: translateY(-50%);
  }
  80%,
  96.5% {
    transform: translateY(-66.6667%);
  }
  100% {
    transform: translateY(-83.3333%);
  }
}
/* geographic analytics page */
.ag-os-geotabs {
  display: flex;
  gap: 14px;
}
.ag-os-geotabs b {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  padding-bottom: 5px;
  border-bottom: 2px solid #0a0a0a;
}
.ag-os-geotabs span {
  font-size: 11px;
  font-weight: 600;
  color: #9b9ba3;
}
.ag-os-geolist {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.ag-os-georow {
  display: grid;
  grid-template-columns: 30px 32px 1fr 56px;
  gap: 10px;
  align-items: center;
}
.ag-os-georow u {
  text-decoration: none;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  color: #9b9ba3;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 2.5px 0;
  text-align: center;
}
.ag-os-georow b {
  font-size: 12px;
  font-weight: 800;
  color: #0a0a0a;
}
.ag-os-georow i {
  display: block;
  height: 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.ag-os-georow i em {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #ffd9b8, var(--orange, #ff7a18));
}
.ag-os-georow strong {
  font-size: 12px;
  font-weight: 800;
  color: #0a0a0a;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ag-os-geoint {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ag-os-geoint em {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9b9ba3;
  margin-right: auto;
}
.ag-os-geoint span {
  font-size: 9px;
  color: #9b9ba3;
  font-weight: 600;
}
.ag-os-geoint i {
  width: 110px;
  height: 7px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ffe9d6, var(--orange, #ff7a18));
}
/* traffic sources page */
.ag-os-srclbl {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b6b6bd;
}
.ag-os-srclist {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
.ag-os-srcrow {
  display: grid;
  grid-template-columns: 34px 1.2fr 1fr 56px;
  gap: 11px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 9px 12px;
}
.ag-os-srcrow > u {
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.ag-os-srcid {
  min-width: 0;
}
.ag-os-srcid b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.25;
}
.ag-os-srcid em {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  color: #9b9ba3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-os-srcrow > i {
  display: block;
  height: 7px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.ag-os-srcrow > i em {
  display: block;
  height: 100%;
  border-radius: 6px;
}
.ag-os-srcrow strong {
  font-size: 12.5px;
  font-weight: 800;
  color: #0a0a0a;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ---- agency analytics header + KPM + duo cards ---- */
.ag-os-aghead {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ag-os-aghead .ag-os-id {
  margin-right: auto;
}
.ag-os-btn-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #22c55e;
  border-radius: 10px;
  padding: 7px 13px;
}
.ag-os-btn-dark {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 10px;
  padding: 7px 13px;
}
.ag-os-range {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  color: #3c3c43;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 6px 13px;
  white-space: nowrap;
}
.ag-os-kpm {
  background: #fbfbfa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 13px 16px 15px;
}
.ag-os-kpm-head {
  display: flex;
  align-items: center;
}
.ag-os-kpm-head b {
  font-size: 12.5px;
  font-weight: 800;
  color: #0a0a0a;
  margin-right: auto;
}
.ag-os-kpm-head span {
  font-size: 10px;
  font-weight: 700;
  color: #5f5f66;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  padding: 4.5px 11px;
}
.ag-os-kpm-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}
.ag-os-kpm-row span {
  text-align: center;
}
.ag-os-kpm-row b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.ag-os-kpm-row em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  color: #9b9ba3;
  font-weight: 600;
  margin-top: 2px;
}
.ag-os-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.ag-os-duocard {
  position: relative;
  border-radius: 14px;
  border: 1px solid;
  padding: 11px 14px 12px 40px;
}
.ag-os-duocard i {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ag-os-duocard em {
  display: block;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #5f5f66;
}
.ag-os-duocard b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}
.ag-os-duocard u {
  text-decoration: none;
  display: inline-block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 20px;
  padding: 2.5px 9px;
}
.ag-os-duo-blue {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.22);
}
.ag-os-duo-blue i {
  background: rgba(96, 165, 250, 0.16);
  color: #2563eb;
}
.ag-os-duo-green {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.22);
}
.ag-os-duo-green i {
  background: rgba(52, 211, 153, 0.16);
  color: #16a34a;
}

/* ---- dashboard replica: product-exact cards ---- */
.ag-osd-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.05);
}
.ag-osd-id {
  margin-right: auto;
  min-width: 0;
}
.ag-osd-id > b {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
}
.ag-osd-dom {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #5f5f66;
}
.ag-osd-dom svg {
  color: #9b9ba3;
}
.ag-osd-dom u {
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 4px 11px;
}
.ag-osd-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 9px 16px;
  white-space: nowrap;
}
.ag-osd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ag-osd-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.04);
}
.ag-osd-stat > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9b9ba3;
}
.ag-osd-stat em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  color: #5f5f66;
}
.ag-osd-stat > b {
  display: block;
  margin-top: 5px;
  font-size: 23px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.ag-osd-purple > b {
  color: #8b5cf6;
}
.ag-osd-green > b {
  color: #22c55e;
}
.ag-osd-yellow > b {
  color: #eab308;
}
.ag-osd-acts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ag-osd-act {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 16px 38px 16px 16px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.04);
}
.ag-osd-act > b {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.3;
}
.ag-osd-act > em {
  display: block;
  font-style: normal;
  margin-top: 4px;
  font-size: 10.5px;
  color: #9b9ba3;
  font-weight: 500;
  line-height: 1.4;
}
.ag-osd-act > i {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #c2c2c8;
  display: inline-flex;
}
.ag-osd-act-dark {
  background: #0a0a0a;
  border-color: #0a0a0a;
}
.ag-osd-act-dark > b {
  color: #ffffff;
}
.ag-osd-act-dark > em {
  color: rgba(255, 255, 255, 0.6);
}
.ag-osd-act-dark > i {
  color: #ffffff;
}
.ag-osd-act-green {
  background: rgba(34, 197, 94, 0.07);
  border-color: rgba(34, 197, 94, 0.2);
}
.ag-osd-act-green > b {
  color: #16a34a;
}
.ag-osd-act-green > i {
  color: #16a34a;
}

/* comparison overview page */
.ag-os-cmp {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  padding: 4px 8px 0;
}
.ag-os-cmpgrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 0;
}
.ag-os-cmpgrp > b {
  font-size: 13px;
  font-weight: 800;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}
.ag-os-cmpgrp > i {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.ag-os-cmpgrp > i u {
  width: 26px;
  border-radius: 7px 7px 3px 3px;
  display: block;
}
.ag-os-cmpgrp > em {
  font-style: normal;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #5f5f66;
}
.ag-os-cmp-cur {
  background: linear-gradient(180deg, #8b5cf6, #a78bfa);
}
.ag-os-cmp-prev {
  background: #e5e7eb;
}
.ag-os-cmpleg {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.ag-os-cmpleg span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  color: #9b9ba3;
}
.ag-os-cmpleg u {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

/* ---- live marquee profile cards (real Linkme data) ---- */
.lm-pcard {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lm-pcard-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.lm-pcard-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 34%,
    rgba(0, 0, 0, 0.55) 62%,
    rgba(0, 0, 0, 0.92) 100%
  );
}
.lm-pcard-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0 14px 16px;
}
.lm-pcard-name {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  max-width: 100%;
}
.lm-pcard-handle {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.lm-pcard-icons {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}
.lm-pcard-icons i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lm-pcard-icons i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.lm-pcard-fol {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}
.lm-pcard-fol b {
  font-weight: 800;
}
.lm-pcard-bio {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- seats & billing screen ---- */
.ag-st-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ag-st-sum {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.04);
}
.ag-st-sum em {
  display: block;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9b9ba3;
}
.ag-st-sum > b {
  display: block;
  margin-top: 4px;
  font-size: 21px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.ag-st-sum > b i {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: #9b9ba3;
}
.ag-st-sum > u {
  text-decoration: none;
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 600;
  color: #9b9ba3;
}
.ag-st-bar {
  display: block;
  height: 6px;
  margin-top: 9px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.ag-st-bar u {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--orange, #ff7a18), #ffb066);
}
.ag-st-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.ag-st-seat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 10px 8px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.04);
  min-height: 0;
}
.ag-st-seat img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.ag-st-seat > b,
.ag-st-pend-a > b,
.ag-st-pend-b > b {
  font-size: 11.5px;
  font-weight: 700;
  color: #0a0a0a;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-st-seat u,
.ag-st-pend-b u {
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #5f5f66;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.5px 9px;
}
.ag-st-seat u.ag-st-owner {
  color: var(--orange, #ff7a18);
  background: rgba(255, 122, 24, 0.12);
}
.ag-st-seat u.ag-st-mgr {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.12);
}
/* pending seat cycles: invite sent -> joined */
.ag-st-pending {
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.16);
}
.ag-st-pendswap {
  position: relative;
  width: 100%;
  height: 100%;
}
.ag-st-pend-a,
.ag-st-pend-b {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
}
.ag-st-pend-a {
  animation: ag-st-swapa 8s ease infinite;
}
.ag-st-pend-b {
  animation: ag-st-swapb 8s ease infinite;
}
.ag-st-pend-a > i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ag-st-pend-a > i u {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #eab308;
  animation: ag-live-pulse 1.6s ease-in-out infinite;
}
.ag-st-pend-a .ag-st-inv {
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  color: #d97706;
  background: rgba(234, 179, 8, 0.14);
  border-radius: 20px;
  padding: 2.5px 9px;
}
.ag-st-pend-b img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.ag-st-pend-b u {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
}
@keyframes ag-st-swapa {
  0%,
  4% {
    opacity: 0;
  }
  7%,
  52% {
    opacity: 1;
  }
  56%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-st-swapb {
  0%,
  58% {
    opacity: 0;
    transform: scale(0.85);
  }
  63%,
  94% {
    opacity: 1;
    transform: scale(1);
  }
  98%,
  100% {
    opacity: 0;
  }
}
.ag-st-empty {
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: none;
  background: rgba(0, 0, 0, 0.012);
}
.ag-st-empty > i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  color: #9b9ba3;
}
.ag-st-empty > b {
  color: #9b9ba3;
}
.ag-st-empty > u {
  background: transparent;
  color: #b6b6bd;
}
.ag-st-foot {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  color: #9b9ba3;
}

/* ---- seats v2: rich tiles, role rings, hover physics ---- */
.ag-st-seat {
  gap: 4px;
  padding: 14px 12px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}
.ag-st-seat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.12);
}
.ag-st-t-ag-st-owner:hover {
  box-shadow: 0 16px 36px -14px rgba(255, 122, 24, 0.3);
  border-color: rgba(255, 122, 24, 0.35);
}
.ag-st-t-ag-st-mgr:hover {
  box-shadow: 0 16px 36px -14px rgba(139, 92, 246, 0.28);
  border-color: rgba(139, 92, 246, 0.32);
}
.ag-st-ring {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04));
  display: inline-flex;
}
.ag-st-ring.ag-st-owner {
  background: linear-gradient(135deg, var(--orange, #ff7a18), #ffb066);
}
.ag-st-ring.ag-st-mgr {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.ag-st-ring img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: none !important;
}
.ag-st-ring > u {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c2c2c8;
  border: 2.5px solid #ffffff;
}
.ag-st-ring > u.is-on {
  background: #22c55e;
  animation: ag-cc-blip 2.2s ease-in-out infinite;
}
.ag-st-rich > b {
  margin-top: 4px;
  font-size: 12.5px;
}
.ag-st-sub {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: #9b9ba3;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-st-mini {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.ag-st-mini i {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 700;
  color: #5f5f66;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.5px 8px;
  white-space: nowrap;
}
.ag-st-joined {
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 20px;
  padding: 2.5px 9px;
}
/* usage bar: animated shimmer over the fill */
.ag-st-bar u {
  position: relative;
  overflow: hidden;
}
.ag-st-bar u::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: ag-st-shimmer 2.6s ease-in-out infinite;
}
@keyframes ag-st-shimmer {
  0% {
    background-position: 130% 0;
  }
  100% {
    background-position: -130% 0;
  }
}
/* add-seat tile invites the click */
.ag-st-empty {
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.ag-st-empty > i {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    border-color 0.3s ease;
}
.ag-st-empty:hover {
  border-color: rgba(255, 122, 24, 0.5);
  background: rgba(255, 122, 24, 0.04);
  transform: translateY(-4px);
}
.ag-st-empty:hover > i {
  transform: rotate(90deg);
  color: var(--orange, #ff7a18);
  border-color: rgba(255, 122, 24, 0.5);
}
.ag-st-empty:hover > b {
  color: var(--orange, #ff7a18);
}

/* ---- team & seats table (dashboard language) ---- */
.ag-tm-table {
  flex: 1;
  min-height: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 4px 16px 10px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ag-tm-th,
.ag-tm-tr {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1.1fr 0.8fr 0.7fr;
  gap: 10px;
  align-items: center;
  padding: 10px 4px;
}
.ag-tm-th {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b6b6bd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ag-tm-tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.25s ease;
}
.ag-tm-tr:hover {
  background: rgba(0, 0, 0, 0.016);
}
.ag-tm-id {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.ag-tm-id img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.ag-tm-id b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.25;
}
.ag-tm-id em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #9b9ba3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-tm-role {
  text-decoration: none;
  font-size: 9.5px;
  font-weight: 800;
  color: #5f5f66;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 3px 11px;
}
.ag-tm-owner {
  color: var(--orange, #ff7a18);
  background: rgba(255, 122, 24, 0.12);
}
.ag-tm-mgr {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.12);
}
.ag-tm-inv {
  color: #d97706;
  background: rgba(234, 179, 8, 0.14);
}
.ag-tm-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 600;
  color: #5f5f66;
}
.ag-tm-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c2c2c8;
  flex: none;
}
.ag-tm-status i.is-on {
  background: #22c55e;
  animation: ag-cc-blip 2.2s ease-in-out infinite;
}
.ag-tm-status i.is-wait {
  background: #eab308;
  animation: ag-live-pulse 1.6s ease-in-out infinite;
}
.ag-tm-num {
  font-size: 11.5px;
  font-weight: 700;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}
.ag-tm-resend {
  color: var(--orange, #ff7a18);
  font-size: 10.5px;
  cursor: pointer;
}
.ag-tm-invited {
  background: rgba(234, 179, 8, 0.035);
}
.ag-tm-add {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 4px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #9b9ba3;
  cursor: pointer;
  transition: color 0.3s ease;
}
.ag-tm-add i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    color 0.3s ease;
}
.ag-tm-add:hover {
  color: var(--orange, #ff7a18);
}
.ag-tm-add:hover i {
  transform: rotate(90deg);
  color: var(--orange, #ff7a18);
  border-color: rgba(255, 122, 24, 0.5);
}

/* ---- agency members view replica ---- */
.ag-osd-blue > b {
  color: #2563eb;
}
.ag-us-hero {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.05);
}
.ag-us-hero b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
}
.ag-us-hero em {
  display: block;
  font-style: normal;
  margin-top: 3px;
  font-size: 11px;
  color: #9b9ba3;
  font-weight: 500;
}
.ag-us-tabs {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.ag-us-tabs b {
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  padding-bottom: 7px;
  border-bottom: 2px solid #0a0a0a;
}
.ag-us-tabs span {
  font-size: 12px;
  font-weight: 600;
  color: #9b9ba3;
  padding-bottom: 7px;
}
.ag-us-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.ag-us-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-right: 4px;
  white-space: nowrap;
}
.ag-us-count b {
  font-size: 14px;
  font-weight: 800;
  color: #0a0a0a;
}
.ag-us-count em {
  font-style: normal;
  font-size: 10.5px;
  color: #9b9ba3;
  font-weight: 600;
}
.ag-us-search {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: #b6b6bd;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 7px 12px;
  white-space: nowrap;
  overflow: hidden;
}
.ag-us-pill {
  font-size: 10px;
  font-weight: 700;
  color: #3c3c43;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 6.5px 13px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.ag-us-pill.is-on {
  color: #ffffff;
  background: #0a0a0a;
  border-color: #0a0a0a;
}
.ag-us-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ag-us-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-us-card:hover {
  transform: translateY(-4px);
}
.ag-us-name {
  flex: none;
  padding: 0 2px 7px;
}
.ag-us-name b {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-us-name em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #9b9ba3;
  font-weight: 600;
}
.ag-us-photo {
  flex: 1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.08);
}
.ag-us-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-us-card:hover .ag-us-photo img {
  transform: scale(1.05);
}
.ag-us-acts {
  flex: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}
.ag-us-acts i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f5f66;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.ag-us-acts i:hover {
  color: var(--orange, #ff7a18);
  background: rgba(255, 122, 24, 0.08);
  border-color: rgba(255, 122, 24, 0.3);
}

/* ---- sequential glow trace around the creator frames ---- */
@property --agang {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.ag-us-photo {
  position: relative;
}
.ag-us-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: conic-gradient(
    from var(--agang),
    transparent 0deg 252deg,
    rgba(255, 122, 24, 0.25) 288deg,
    var(--orange, #ff7a18) 324deg,
    #ffd9b8 348deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
}
.ag-us-card:nth-child(1) .ag-us-photo::after {
  animation: ag-us-g1 7.5s linear infinite;
}
.ag-us-card:nth-child(2) .ag-us-photo::after {
  animation: ag-us-g2 7.5s linear infinite;
}
.ag-us-card:nth-child(3) .ag-us-photo::after {
  animation: ag-us-g3 7.5s linear infinite;
}
.ag-us-card:nth-child(4) .ag-us-photo::after {
  animation: ag-us-g4 7.5s linear infinite;
}
.ag-us-card:nth-child(5) .ag-us-photo::after {
  animation: ag-us-g5 7.5s linear infinite;
}
@keyframes ag-us-g1 {
  0% {
    --agang: 0deg;
    opacity: 0;
  }
  1.5% {
    opacity: 1;
  }
  18.5% {
    opacity: 1;
  }
  20%,
  100% {
    --agang: 360deg;
    opacity: 0;
  }
}
@keyframes ag-us-g2 {
  0%,
  20% {
    --agang: 0deg;
    opacity: 0;
  }
  21.5% {
    opacity: 1;
  }
  38.5% {
    opacity: 1;
  }
  40%,
  100% {
    --agang: 360deg;
    opacity: 0;
  }
}
@keyframes ag-us-g3 {
  0%,
  40% {
    --agang: 0deg;
    opacity: 0;
  }
  41.5% {
    opacity: 1;
  }
  58.5% {
    opacity: 1;
  }
  60%,
  100% {
    --agang: 360deg;
    opacity: 0;
  }
}
@keyframes ag-us-g4 {
  0%,
  60% {
    --agang: 0deg;
    opacity: 0;
  }
  61.5% {
    opacity: 1;
  }
  78.5% {
    opacity: 1;
  }
  80%,
  100% {
    --agang: 360deg;
    opacity: 0;
  }
}
@keyframes ag-us-g5 {
  0%,
  80% {
    --agang: 0deg;
    opacity: 0;
  }
  81.5% {
    opacity: 1;
  }
  98.5% {
    opacity: 1;
  }
  100% {
    --agang: 360deg;
    opacity: 0;
  }
}

/* ---- cards pop out in sync with their glow lap ---- */
.ag-us-card {
  will-change: transform;
}
.ag-us-card:nth-child(1) {
  animation: ag-us-p1 7.5s ease-in-out infinite;
}
.ag-us-card:nth-child(2) {
  animation: ag-us-p2 7.5s ease-in-out infinite;
}
.ag-us-card:nth-child(3) {
  animation: ag-us-p3 7.5s ease-in-out infinite;
}
.ag-us-card:nth-child(4) {
  animation: ag-us-p4 7.5s ease-in-out infinite;
}
.ag-us-card:nth-child(5) {
  animation: ag-us-p5 7.5s ease-in-out infinite;
}
@keyframes ag-us-p1 {
  0% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  5% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  15% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  20%,
  100% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@keyframes ag-us-p2 {
  0%,
  20% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  25% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  35% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  40%,
  100% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@keyframes ag-us-p3 {
  0%,
  40% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  45% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  55% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  60%,
  100% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@keyframes ag-us-p4 {
  0%,
  60% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  65% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  75% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  80%,
  100% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@keyframes ag-us-p5 {
  0%,
  80% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  85% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  95% {
    transform: scale(1.055) translateY(-5px);
    z-index: 2;
    filter: drop-shadow(0 18px 26px rgba(255, 122, 24, 0.18));
  }
  100% {
    transform: scale(1) translateY(0);
    z-index: 1;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}

/* living gradient on the claim panel */
@keyframes ag-ch-grad {
  0% {
    background-position:
      0% 0%,
      100% 100%,
      0% 50%;
  }
  33% {
    background-position:
      55% 35%,
      45% 65%,
      65% 30%;
  }
  66% {
    background-position:
      25% 80%,
      75% 20%,
      100% 75%;
  }
  100% {
    background-position:
      0% 0%,
      100% 100%,
      0% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ag-ch-panel {
    animation: none;
  }
}

/* aurora must self-clip: preserve-3d on the window disables its
   overflow clipping, so the oversized blobs leaked past the page */
.ag-cc-aurora {
  inset: 0;
  overflow: hidden;
  animation: none;
  background: none;
  filter: none;
}
.ag-cc-aurora::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      34% 42% at 24% 30%,
      rgba(255, 122, 24, 0.06),
      transparent 70%
    ),
    radial-gradient(
      30% 38% at 78% 72%,
      rgba(99, 102, 241, 0.05),
      transparent 70%
    );
  filter: blur(40px);
  animation: ag-cc-aurora 26s ease-in-out infinite alternate;
}

/* hero header video */
.ag-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ag-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ag-hero-video-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

/* split hero: copy left, video panel right */
.ag-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.92fr;
  gap: 56px;
  align-items: center;
  min-height: 88vh;
  padding-top: 96px;
}
.ag-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 26px;
}
.ag-hero-h1 {
  text-align: left;
  max-width: 620px;
}
.ag-hero-copy .ag-hero-sub {
  text-align: left;
  max-width: 460px;
  margin: 0;
}
.ag-hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
  width: 100%;
  overflow: hidden;
  background: transparent;
  animation: ag-hero-float 7s ease-in-out infinite;
}
.ag-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}
/* feather every edge so the footage melts into the page —
   kills the visible crop rectangle */
.ag-hero-media {
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}
@keyframes ag-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 992px) {
  .ag-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding-top: 96px;
  }
  .ag-hero-media {
    max-height: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ag-hero-media {
    animation: none;
  }
}

.ag-hero-h1 .hero-subline {
  display: block;
}
.ag-hero-h1 .rotating-text-wrapper {
  display: inline-block;
  min-height: 1.1em;
}

/* stacked fallback (mobile / reduced motion) — stays light */
.ag-cc-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  text-align: left;
}
.ag-cc-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 16px 16px 22px;
}
.ag-cc-card-vis {
  position: relative;
  height: 230px;
}
.ag-cc-card-vis .ag-cc-demo {
  position: absolute !important;
  inset: 0;
}
.ag-cc-card h3 {
  margin: 14px 8px 0;
  font-size: 17px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-cc-card p {
  margin: 6px 8px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5f5f66;
}
.ag-cc-card .ag-cc-step {
  display: block;
  margin: 16px 8px 0;
}
.ag-cc-card .ag-cc-ghost,
.ag-cc-card .ag-cc-more {
  display: none;
}
@media (max-width: 992px) {
  .ag-cc {
    height: auto;
  }
  .ag-cc-pin {
    position: static;
    height: auto;
  }
}

.ag-bn {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  text-align: left;
}
.ag-bn-cell {
  display: flex;
}
.ag-bn-cell-tall {
  grid-row: span 2;
}
.ag-bn-cell-wide {
  grid-column: span 3;
}
.ag-bn-tile {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 16px 16px 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transform: translateY(var(--py, 0px));
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    opacity 0.45s ease;
}
.ag-bn-tile:hover {
  transform: translateY(calc(var(--py, 0px) - 5px)) scale(1.012);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, 0.22);
  border-color: rgba(0, 0, 0, 0.2);
}
/* stage-light focus: hovering one tile recedes the other five */
.ag-bn-online:has(.ag-bn-cell:hover) .ag-bn-cell:not(:hover) .ag-bn-tile {
  opacity: 0.55;
  transform: translateY(var(--py, 0px)) scale(0.985);
}
.ag-bn-online:has(.ag-bn-cell:hover)
  .ag-bn-cell:not(:hover)
  .ag-bn-tile::before {
  opacity: 0;
}
.ag-bn-online .ag-bn-cell:hover .ag-bn-tile::before {
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 122, 24, 0.12),
    transparent 70%
  );
}
.ag-bn-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 122, 24, 0.07),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.ag-bn-tile:hover::before {
  opacity: 1;
}
/* system-online finale: orange energy sweep + border glint, in
   landing order, the moment the last puzzle piece settles */
.ag-bn-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 122, 24, 0.14) 49%,
    rgba(255, 255, 255, 0.55) 53%,
    transparent 62%
  );
  background-size: 280% 100%;
  background-position: 135% 0;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.ag-bn-online .ag-bn-cell:nth-of-type(1) .ag-bn-tile::after {
  animation: ag-bn-sweep 1s ease-out 0.05s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(2) .ag-bn-tile::after {
  animation: ag-bn-sweep 1s ease-out 0.19s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(3) .ag-bn-tile::after {
  animation: ag-bn-sweep 1s ease-out 0.33s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(4) .ag-bn-tile::after {
  animation: ag-bn-sweep 1s ease-out 0.47s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(5) .ag-bn-tile::after {
  animation: ag-bn-sweep 1s ease-out 0.61s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(6) .ag-bn-tile::after {
  animation: ag-bn-sweep 1s ease-out 0.75s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(1) .ag-bn-tile {
  animation: ag-bn-glint 0.95s ease 0.05s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(2) .ag-bn-tile {
  animation: ag-bn-glint 0.95s ease 0.19s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(3) .ag-bn-tile {
  animation: ag-bn-glint 0.95s ease 0.33s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(4) .ag-bn-tile {
  animation: ag-bn-glint 0.95s ease 0.47s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(5) .ag-bn-tile {
  animation: ag-bn-glint 0.95s ease 0.61s 1;
}
.ag-bn-online .ag-bn-cell:nth-of-type(6) .ag-bn-tile {
  animation: ag-bn-glint 0.95s ease 0.75s 1;
}
@keyframes ag-bn-sweep {
  0% {
    opacity: 1;
    background-position: 135% 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: -150% 0;
  }
}
@keyframes ag-bn-glint {
  0%,
  100% {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
  }
  35% {
    box-shadow:
      0 0 0 1.5px rgba(255, 122, 24, 0.55),
      0 14px 34px -14px rgba(255, 122, 24, 0.3);
    border-color: rgba(255, 122, 24, 0.5);
  }
}
/* living wires through the gutters */
.ag-bn-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.ag-bn-wire {
  fill: none;
  stroke: rgba(10, 10, 10, 0.13);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: ag-bn-wire-draw 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes ag-bn-wire-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.ag-bn-pulse {
  fill: #ff7a18;
  opacity: 0;
  animation: ag-bn-pulse-on 0.25s linear forwards;
  filter: drop-shadow(0 0 6px rgba(255, 122, 24, 0.8));
}
@keyframes ag-bn-pulse-on {
  to {
    opacity: 1;
  }
}
.ag-bn-tile h3 {
  margin: 16px 8px 0;
  font-size: 17px;
  font-weight: 600;
  color: #0a0a0a;
}
.ag-bn-tile p {
  margin: 6px 8px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5f5f66;
}
.ag-bn-demo {
  position: relative;
  height: 190px;
  border-radius: 16px;
  background: #f7f7f8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.ag-bn-demo-tall {
  height: 100%;
  min-height: 420px;
  flex: 1;
}

/* shared: value swap (stacked spans crossfade) */
.ag-bn-swap {
  position: relative;
  display: inline-block;
}
.ag-bn-swap > span {
  display: block;
}
.ag-bn-swap > span:last-child {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: ag-bn-swapb 9s ease-in-out infinite;
}
.ag-bn-swap > span:first-child {
  animation: ag-bn-swapa 9s ease-in-out infinite;
}
@keyframes ag-bn-swapa {
  0%,
  44% {
    opacity: 1;
  }
  50%,
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ag-bn-swapb {
  0%,
  44% {
    opacity: 0;
  }
  50%,
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ag-bn-swap-2 > span {
  animation-delay: 1s !important;
}
.ag-bn-swap-3 > span {
  animation-delay: 2.2s !important;
}
.ag-bn-swap-4 > span {
  animation-delay: 3.1s !important;
}
.ag-bn-swap-5 > span {
  animation-delay: 4.3s !important;
}

/* A — workspace table */
.ag-bn-ws {
  position: absolute;
  inset: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
}
.ag-bn-ws-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 10px;
}
.ag-bn-ws-crumb {
  font-size: 11px;
  color: #9b9ba3;
}
.ag-bn-ws-crumb b {
  color: #0a0a0a;
  font-weight: 700;
}
.ag-bn-ws-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 20px;
  padding: 2px 8px;
}
.ag-bn-ws-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: ag-live-pulse 1.8s ease-in-out infinite;
}
.ag-bn-ws-head {
  display: grid;
  grid-template-columns: 1fr 52px 56px 48px;
  gap: 8px;
  padding: 0 6px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b6b6bd;
}
.ag-bn-ws-row {
  display: grid;
  grid-template-columns: 24px 1fr 52px 56px 48px;
  gap: 8px;
  align-items: center;
  padding: 7px 6px;
  border-radius: 9px;
  margin-bottom: 2px;
}
.ag-bn-ws-row img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.ag-bn-ws-id b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
}
.ag-bn-ws-id em {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  color: #9b9ba3;
}
.ag-bn-ws-num {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}
.ag-bn-ws-status {
  font-size: 9px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 20px;
  padding: 2.5px 0;
  text-align: center;
}
@keyframes ag-bn-flash {
  0%,
  100% {
    background: transparent;
  }
  50% {
    background: rgba(255, 122, 24, 0.09);
  }
}
.ag-bn-flash-1 {
  animation: ag-bn-flash 9s ease-in-out infinite;
}
.ag-bn-flash-2 {
  animation: ag-bn-flash 9s ease-in-out 1s infinite;
}
.ag-bn-flash-3 {
  animation: ag-bn-flash 9s ease-in-out 2.2s infinite;
}
.ag-bn-flash-4 {
  animation: ag-bn-flash 9s ease-in-out 3.1s infinite;
}
.ag-bn-flash-5 {
  animation: ag-bn-flash 9s ease-in-out 4.3s infinite;
}
.ag-bn-ws-note {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f7f7f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: #3a3a40;
  opacity: 0;
  animation: ag-bn-note 9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.ag-bn-ws-note i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  flex: none;
}
.ag-bn-ws-note b {
  color: #16a34a;
  margin-left: auto;
}
@keyframes ag-bn-note {
  0%,
  28% {
    opacity: 0;
    transform: translateY(8px);
  }
  34%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }
  95%,
  100% {
    opacity: 0;
  }
}
.ag-bn-cursor {
  position: absolute;
  z-index: 2;
  color: #0a0a0a;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}
.ag-bn-cursor i {
  position: absolute;
  left: 12px;
  top: 12px;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: #0a0a0a;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.ag-bn-cur-3 {
  color: var(--orange, #ff7a18);
}
.ag-bn-cur-3 i {
  background: var(--orange, #ff7a18);
}
.ag-bn-cursor.manual {
  animation: none !important;
  transition: transform 0.12s ease-out;
}
@keyframes ag-bn-cur-a {
  0%,
  100% {
    transform: translate(30px, 70px);
  }
  30% {
    transform: translate(180px, 130px);
  }
  60% {
    transform: translate(80px, 260px);
  }
  80% {
    transform: translate(220px, 190px);
  }
}
@keyframes ag-bn-cur-b {
  0%,
  100% {
    transform: translate(220px, 240px);
  }
  35% {
    transform: translate(70px, 150px);
  }
  70% {
    transform: translate(250px, 80px);
  }
}
@keyframes ag-bn-cur-c {
  0%,
  100% {
    transform: translate(140px, 320px);
  }
  40% {
    transform: translate(240px, 160px);
  }
  75% {
    transform: translate(50px, 210px);
  }
}
.ag-bn-cur-1 {
  animation: ag-bn-cur-a 12s ease-in-out infinite;
}
.ag-bn-cur-2 {
  animation: ag-bn-cur-b 14s ease-in-out infinite;
}
.ag-bn-cur-3 {
  animation: ag-bn-cur-c 10s ease-in-out infinite;
}

/* B — profile switcher */
.ag-bn-switch {
  position: absolute;
  inset: 0;
}
.ag-bn-prof {
  position: absolute;
  inset: 16px 46px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
  opacity: 0;
}
.ag-bn-prof img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.ag-bn-prof b {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
}
.ag-bn-prof em {
  font-style: normal;
  font-size: 10px;
  color: #9b9ba3;
}
.ag-bn-prof-pill {
  width: 70%;
  height: 11px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.06);
  margin-top: 7px;
}
@keyframes ag-bn-prof-cycle {
  0%,
  27% {
    opacity: 1;
    transform: translateX(0);
  }
  33%,
  94% {
    opacity: 0;
    transform: translateX(-14px);
  }
  95% {
    opacity: 0;
    transform: translateX(14px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.ag-bn-prof-1 {
  animation: ag-bn-prof-cycle 9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.ag-bn-prof-2 {
  animation: ag-bn-prof-cycle 9s cubic-bezier(0.16, 1, 0.3, 1) 3s infinite;
}
.ag-bn-prof-3 {
  animation: ag-bn-prof-cycle 9s cubic-bezier(0.16, 1, 0.3, 1) 6s infinite;
}
.ag-bn-switch-chip {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* C — analytics */
.ag-bn-an {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
}
.ag-bn-an-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ag-bn-an-total {
  font-size: 11px;
  color: #5f5f66;
}
.ag-bn-an-total b {
  font-size: 15px;
  font-weight: 800;
  color: #0a0a0a;
  margin-right: 4px;
}
.ag-bn-growth {
  background: rgba(255, 122, 24, 0.12);
  border: 1px solid rgba(255, 122, 24, 0.3);
  color: var(--orange, #ff7a18);
  font-size: 10.5px;
  font-weight: 800;
  border-radius: 20px;
  padding: 2px 9px;
}
.ag-bn-an-plot {
  position: relative;
  flex: 1;
  margin-top: 8px;
}
.ag-bn-an-plot svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ag-bn-an-area {
  fill: rgba(255, 122, 24, 0.1);
  stroke: none;
}
.ag-bn-an-line {
  fill: none;
  stroke: var(--orange, #ff7a18);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 320;
  animation: ag-bn-an-draw 9s ease-in-out infinite;
}
@keyframes ag-bn-an-draw {
  0% {
    stroke-dashoffset: 320;
  }
  30%,
  92% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.ag-bn-an-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange, #ff7a18);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  animation: ag-bn-an-dotmove 9s ease-in-out infinite;
}
@keyframes ag-bn-an-dotmove {
  0%,
  6% {
    left: 0%;
    top: 78%;
  }
  18% {
    left: 19%;
    top: 66%;
  }
  34% {
    left: 39%;
    top: 69%;
  }
  52% {
    left: 59%;
    top: 44%;
  }
  72% {
    left: 79%;
    top: 25%;
  }
  88%,
  100% {
    left: 97%;
    top: 9%;
  }
}
.ag-bn-an-tip {
  position: absolute;
  top: -4px;
  width: 74px;
  height: 22px;
  background: #0a0a0a;
  border-radius: 7px;
  animation: ag-bn-an-tipmove 9s ease-in-out infinite;
  transform: translateX(-50%);
}
@keyframes ag-bn-an-tipmove {
  0%,
  6% {
    left: 8%;
    top: 56%;
  }
  18% {
    left: 23%;
    top: 44%;
  }
  34% {
    left: 41%;
    top: 47%;
  }
  52% {
    left: 59%;
    top: 22%;
  }
  72% {
    left: 76%;
    top: 3%;
  }
  88%,
  100% {
    left: 86%;
    top: -10%;
  }
}
.ag-bn-an-tip span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
}
.ag-bn-an-tip span:nth-child(1) {
  animation: ag-bn-tipword 9s infinite;
}
.ag-bn-an-tip span:nth-child(2) {
  animation: ag-bn-tipword 9s 1.4s infinite;
}
.ag-bn-an-tip span:nth-child(3) {
  animation: ag-bn-tipword 9s 2.8s infinite;
}
.ag-bn-an-tip span:nth-child(4) {
  animation: ag-bn-tipword 9s 4.4s infinite;
}
.ag-bn-an-tip span:nth-child(5) {
  animation: ag-bn-tipword 9s 6s infinite;
}
.ag-bn-an-tip span:nth-child(6) {
  animation: ag-bn-tipword 9s 7.6s infinite;
}
@keyframes ag-bn-tipword {
  0%,
  2% {
    opacity: 0;
  }
  4%,
  15% {
    opacity: 1;
  }
  17%,
  100% {
    opacity: 0;
  }
}
.ag-bn-an-x {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #b6b6bd;
  padding-top: 6px;
}

/* D — export */
.ag-bn-ex {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ag-bn-ex-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 7px 11px;
}
.ag-bn-ex-row b {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
}
.ag-bn-ex-row em {
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9.5px;
  color: #9b9ba3;
  margin-left: auto;
}
.ag-bn-check {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: none;
}
.ag-bn-check svg {
  opacity: 0;
}
@keyframes ag-bn-checkin {
  0%,
  4% {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.2);
  }
  10%,
  88% {
    background: var(--orange, #ff7a18);
    border-color: var(--orange, #ff7a18);
  }
  94%,
  100% {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.2);
  }
}
@keyframes ag-bn-checksvg {
  0%,
  4% {
    opacity: 0;
    transform: scale(0.4);
  }
  10%,
  88% {
    opacity: 1;
    transform: scale(1);
  }
  94%,
  100% {
    opacity: 0;
  }
}
.ag-bn-check-1 {
  animation: ag-bn-checkin 8s ease infinite;
}
.ag-bn-check-1 svg {
  animation: ag-bn-checksvg 8s ease infinite;
}
.ag-bn-check-2 {
  animation: ag-bn-checkin 8s ease 0.5s infinite;
}
.ag-bn-check-2 svg {
  animation: ag-bn-checksvg 8s ease 0.5s infinite;
}
.ag-bn-check-3 {
  animation: ag-bn-checkin 8s ease 1s infinite;
}
.ag-bn-check-3 svg {
  animation: ag-bn-checksvg 8s ease 1s infinite;
}
.ag-bn-ex-btn {
  position: relative;
  margin-top: auto;
  background: #0a0a0a;
  border-radius: 12px;
  height: 36px;
  overflow: hidden;
}
.ag-bn-ex-fill {
  position: absolute;
  inset: 0;
  background: var(--orange, #ff7a18);
  transform-origin: left;
  transform: scaleX(0);
  animation: ag-bn-ex-fill 8s ease infinite;
}
@keyframes ag-bn-ex-fill {
  0%,
  25% {
    transform: scaleX(0);
  }
  45% {
    transform: scaleX(1);
  }
  88% {
    transform: scaleX(1);
  }
  94%,
  100% {
    transform: scaleX(0);
  }
}
.ag-bn-ex-label {
  position: absolute;
  inset: 0;
}
.ag-bn-ex-label span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
  opacity: 0;
}
.ag-bn-ex-label span:nth-child(1) {
  animation: ag-bn-exw1 8s infinite;
}
.ag-bn-ex-label span:nth-child(2) {
  animation: ag-bn-exw2 8s infinite;
}
.ag-bn-ex-label span:nth-child(3) {
  animation: ag-bn-exw3 8s infinite;
}
@keyframes ag-bn-exw1 {
  0%,
  25% {
    opacity: 1;
  }
  28%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-bn-exw2 {
  0%,
  27% {
    opacity: 0;
  }
  30%,
  44% {
    opacity: 1;
  }
  47%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-bn-exw3 {
  0%,
  46% {
    opacity: 0;
  }
  50%,
  88% {
    opacity: 1;
  }
  93%,
  100% {
    opacity: 0;
  }
}

/* E — support chat */
.ag-bn-chat {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ag-bn-chat-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ag-bn-chat-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: ag-live-pulse 1.8s ease-in-out infinite;
}
.ag-bn-chat-head b {
  font-size: 11px;
  font-weight: 800;
  color: #0a0a0a;
}
.ag-bn-chat-head em {
  font-style: normal;
  font-size: 9.5px;
  color: #16a34a;
  margin-left: auto;
}
.ag-bn-msg {
  max-width: 86%;
  border-radius: 12px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  position: relative;
}
.ag-bn-msg time {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  opacity: 0.55;
  margin-top: 2px;
}
.ag-bn-msg-q {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #3a3a40;
  border-bottom-left-radius: 4px;
  animation: ag-bn-msgq 9s ease infinite;
}
.ag-bn-msg-typing {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.06);
  border-bottom-right-radius: 4px;
  display: inline-flex;
  gap: 4px;
  padding: 10px 13px;
  animation: ag-bn-msgt 9s ease infinite;
}
.ag-bn-msg-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  animation: ag-bn-blink 1s ease-in-out infinite;
}
.ag-bn-msg-typing i:nth-child(2) {
  animation-delay: 0.18s;
}
.ag-bn-msg-typing i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes ag-bn-blink {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.ag-bn-msg-a {
  align-self: flex-end;
  background: #0a0a0a;
  color: #ffffff;
  border-bottom-right-radius: 4px;
  animation: ag-bn-msga 9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.ag-bn-resolved {
  align-self: center;
  font-size: 9.5px;
  font-weight: 800;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 3px 11px;
  opacity: 0;
  animation: ag-bn-stamp 9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes ag-bn-msgq {
  0%,
  3% {
    opacity: 0;
    transform: translateY(6px);
  }
  8%,
  93% {
    opacity: 1;
    transform: translateY(0);
  }
  98%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-bn-msgt {
  0%,
  14% {
    opacity: 0;
  }
  19%,
  40% {
    opacity: 1;
  }
  44%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-bn-msga {
  0%,
  44% {
    opacity: 0;
    transform: translateY(6px) scale(0.94);
  }
  50%,
  93% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  98%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-bn-stamp {
  0%,
  60% {
    opacity: 0;
    transform: scale(0.7);
  }
  66%,
  93% {
    opacity: 1;
    transform: scale(1);
  }
  98%,
  100% {
    opacity: 0;
  }
}

/* F — org growth (wide) */
.ag-bn-tile-wide {
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.ag-bn-tile-wide .ag-bn-demo {
  flex: 1;
  height: 150px;
}
.ag-bn-wide-copy {
  flex: 1;
  padding-right: 12px;
}
.ag-bn-wide-copy h3 {
  margin: 0;
}
.ag-bn-wide-copy p {
  margin: 6px 0 0;
}
.ag-bn-org {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ag-bn-org-hub {
  background: #0a0a0a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  padding: 5px 14px;
}
.ag-bn-org-row {
  display: flex;
  align-items: center;
}
.ag-bn-org-row img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffffff;
  margin-left: -9px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}
.ag-bn-org-row img:first-child {
  margin-left: 0;
}
.ag-bn-org-new {
  opacity: 0;
}
@keyframes ag-bn-join {
  0%,
  10% {
    opacity: 0;
    transform: scale(0.3);
  }
  16% {
    opacity: 1;
    transform: scale(1.15);
  }
  20%,
  88% {
    opacity: 1;
    transform: scale(1);
  }
  95%,
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.ag-bn-org-new-1 {
  animation: ag-bn-join 9s cubic-bezier(0.16, 1, 0.3, 1) 1s infinite;
}
.ag-bn-org-new-2 {
  animation: ag-bn-join 9s cubic-bezier(0.16, 1, 0.3, 1) 2.6s infinite;
}
.ag-bn-org-new-3 {
  animation: ag-bn-join 9s cubic-bezier(0.16, 1, 0.3, 1) 4.2s infinite;
}
.ag-bn-org-meta {
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  height: 18px;
}
.ag-bn-swap-seat {
  position: relative;
  display: block;
  width: 170px;
  height: 18px;
  text-align: center;
}
.ag-bn-swap-seat span {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.ag-bn-swap-seat span:nth-child(1) {
  animation: ag-bn-seatw 9s infinite;
}
.ag-bn-swap-seat span:nth-child(2) {
  animation: ag-bn-seatw 9s 1.16s infinite;
}
.ag-bn-swap-seat span:nth-child(3) {
  animation: ag-bn-seatw 9s 2.76s infinite;
}
.ag-bn-swap-seat span:nth-child(4) {
  animation: ag-bn-seatw2 9s 4.36s infinite;
}
@keyframes ag-bn-seatw {
  0%,
  1% {
    opacity: 0;
  }
  3%,
  16% {
    opacity: 1;
  }
  18%,
  100% {
    opacity: 0;
  }
}
@keyframes ag-bn-seatw2 {
  0%,
  1% {
    opacity: 0;
  }
  3%,
  50% {
    opacity: 1;
  }
  53%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .ag-bn {
    grid-template-columns: 1fr;
  }
  .ag-bn-cell-tall,
  .ag-bn-cell-wide {
    grid-row: auto;
    grid-column: auto;
  }
  .ag-bn-demo-tall {
    min-height: 300px;
  }
  .ag-bn-tile-wide {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==================== NEW: hero roster float ==================== */
.ag-hr {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ag-hr-card {
  position: absolute;
  border-radius: 18px;
  will-change: transform, opacity;
}
.ag-hr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.ag-hr-bob {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 4px;
  border-radius: 18px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.07),
    0 24px 60px -20px rgba(0, 0, 0, 0.3);
}
.ag-hr-bob-0 {
  animation: ag-hr-bob 6s ease-in-out infinite;
}
.ag-hr-bob-1 {
  animation: ag-hr-bob 7.4s ease-in-out infinite reverse;
}
.ag-hr-bob-2 {
  animation: ag-hr-bob 8.6s ease-in-out infinite;
}
@keyframes ag-hr-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.4deg);
  }
}
@media (max-width: 1100px) {
  .ag-hr {
    display: none;
  }
}

/* ==================== NEW: ticker interlude ==================== */
.ag-tk {
  background: #0a0a0a;
  padding: 64px 0 72px;
  overflow: hidden;
}
.ag-tk-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.ag-tk-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ag-tk-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: ag-live-pulse 1.8s ease-in-out infinite;
}
.ag-tk-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.ag-tk-row {
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}
.ag-tk-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ag-tk-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: ag-tk-scroll linear infinite;
  will-change: transform;
}
@keyframes ag-tk-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
.ag-tk-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.ag-tk-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex: none;
}
.ag-tk-item em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.38);
}
.ag-tk-item.cash {
  color: var(--orange, #ff7a18);
}
.ag-tk-item.cash i {
  background: var(--orange, #ff7a18);
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.8);
}

/* ==================== NEW: seat slider pricing ==================== */
.pricing-calculator-wrapper {
  margin-left: auto !important;
  margin-right: auto !important;
}
.ag-seats {
  row-gap: 14px;
}
.ag-seat-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.ag-seat-slider {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
}
.ag-seat-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.2),
    0 8px 20px -6px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-seat-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.ag-seat-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.2);
}
.ag-seat-num {
  min-width: 52px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}
.ag-seat-grid {
  display: grid;
  grid-template-columns: repeat(25, 1fr);
  gap: 6px;
  width: 100%;
}
.ag-seat-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-seat-cell.on {
  background: var(--orange, #ff7a18);
  transform: scale(1.12);
}
@media (max-width: 768px) {
  .ag-seat-grid {
    grid-template-columns: repeat(10, 1fr);
  }
}

/* ==================== NEW: finale wordmark ==================== */
.ag-fin {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 20px 150px;
  overflow: hidden;
}
.ag-fin-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ag-fin-face {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 26px;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.35);
  z-index: 0;
  pointer-events: none;
}
.ag-fin-word {
  position: relative;
  z-index: 1;
  display: flex;
  font-size: clamp(72px, 13vw, 210px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: #0a0a0a;
}
.ag-fin-mask {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.ag-fin-mask > span {
  display: inline-block;
  will-change: transform;
}
.ag-fin-dot {
  color: var(--orange, #ff7a18);
}
.ag-fin-sub {
  margin-top: 18px;
  font-size: 19px;
  color: #5f5f66;
  text-align: center;
}
.ag-fin-cta {
  margin-top: 34px;
}
