/* ===============================================================
   AdminDroid 365 vs Competitors — comparison page
   Ported from the source comparison .html (single source of truth).
   All rules are scoped under #adcmp-root so the page's generic
   selectors (*, body, section, a, .btn, .modal, .close, .reveal,
   .wrap, .legend, .stars) cannot leak into the shared header/footer.
   Brand tokens kept (already AdminDroid magenta + blue). Font vars
   remapped to the AdminDroid-registered families; JetBrains Mono
   dependency dropped in favour of a system monospace stack.
   =============================================================== */

:root {
  --ink: #0f1626;
  --ink-soft: #4a5468;
  --ink-faint: #8a93a6;
  --line: #e7eaf1;
  --line-soft: #f0f2f7;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-tint: #eef3ff;
  --brand: #2a5bff;
  --brand-ink: #1640c4;
  --brand-deep: #020613;
  --brand-tint: rgba(42, 91, 255, 0.07);
  --ad: #b51bc4;
  --ad2: #e3338a;
  --ad-ink: #a21caf;
  --yes: #16a06a;
  --warn: #e08a26;
  --no: #cdd2e0;
  --no-ink: #c14d63;
  --gold: #f4b740;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm:
    0 1px 2px rgba(15, 22, 38, 0.06), 0 2px 6px rgba(15, 22, 38, 0.04);
  --shadow-md:
    0 8px 24px rgba(15, 22, 38, 0.08), 0 2px 6px rgba(15, 22, 38, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 22, 38, 0.16);
  /* AdminDroid-registered font families — each weight is its own family (no weight axis) */
  --poppins-light: poppins-light, "Poppins", Arial, Helvetica, sans-serif;
  --poppins-regular: poppins-regular, "Poppins", Arial, Helvetica, sans-serif;
  --poppins-medium: poppins-medium, "Poppins", Arial, Helvetica, sans-serif;
  --poppins-semibold: poppins-semibold, "Poppins", Arial, Helvetica, sans-serif;
  --poppins-bold: poppins-bold, "Poppins", Arial, Helvetica, sans-serif;
  --worksans-regular:
    work-sans-regular, "Work Sans", Arial, Helvetica, sans-serif;
  --worksans-medium:
    work-sans-medium, "Work Sans", Arial, Helvetica, sans-serif;
  /* back-compat aliases for call sites that set no explicit weight */
  --display: var(--poppins-semibold);
  --body: var(--worksans-regular);
  --poppins: var(--poppins-regular);
  --maxw: 1400px;
}

/* No CSS scroll-behavior:smooth — it fights DroidNavigation's jQuery scrollTop animation
   (the browser keeps smooth-scrolling after the animation ends, sweeping the scrollspy across
   every panel and making the active tab hop). The hero anchor scrolls smoothly via JS instead. */
html {
  scroll-padding-top: 96px;
}

/* Dark spacer behind the fixed AdminDroid header (mirrors sibling comparison pages) */
#adcmp-static-nav-bar {
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0a2334;
  z-index: 999;
}

/* No overflow/transform on the main container — it would make #adcmp-root the sticky
   scroll-container and stop the in-page nav (#droid-sticky-navigation) from sticking.
   Decorative overflow is clipped per-section (.hero-editorial, .numbers, etc.) instead. */
#adcmp-root {
  font-size: 13px;
  box-sizing: border-box;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
#adcmp-root * {
  box-sizing: border-box;
}
/* droid-* title classes set font-size on the wrapper; let the inner heading inherit it
   (general.css forces heading font-family/weight to inherit, so poppins flows from the wrapper) */
#adcmp-root .droid-banner-title h1,
#adcmp-root .droid-section-main-title h2,
#adcmp-root .droid-section-sub-title h3 {
  font-size: inherit;
}
#adcmp-root a {
  color: inherit;
  text-decoration: none;
}
#adcmp-root img {
  max-width: 100%;
  display: block;
}
#adcmp-root em {
  font-style: italic;
}
#adcmp-root .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
#adcmp-root .narrow {
  max-width: 880px;
}
#adcmp-root .eyebrow {
  font-family: var(--poppins-semibold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--brand);
}
#adcmp-root .muted {
  color: var(--ink-soft);
}
#adcmp-root .nowrap {
  white-space: nowrap;
}

/* buttons */
#adcmp-root .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--worksans-medium);
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.12s,
    box-shadow 0.2s,
    background 0.2s;
  white-space: nowrap;
}
#adcmp-root .btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(42, 91, 255, 0.32);
}
#adcmp-root .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(42, 91, 255, 0.42);
}
#adcmp-root .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
#adcmp-root .btn-ghost:hover {
  border-color: #cbd2e0;
  background: var(--bg-soft);
}
#adcmp-root .btn-light {
  background: #fff;
  color: var(--brand-deep);
}
#adcmp-root .btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
#adcmp-root .btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
#adcmp-root .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Logo-row scoreboard hero */
#adcmp-root .hero-editorial {
  position: relative;
  background: linear-gradient(135deg, #f4f6fc 0%, #eaf0ff 100%);
  color: var(--ink);
  padding: 104px 0 52px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: left;
}
#adcmp-root .hero-editorial::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -160px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(42, 91, 255, 0.09),
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
}
#adcmp-root .hero-editorial::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(181, 27, 196, 0.05),
    transparent 65%
  );
  pointer-events: none;
}
#adcmp-root .hero-editorial .wrap {
  max-width: 1140px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
#adcmp-root .he-text-col {
  min-width: 0;
}
#adcmp-root .he-visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#adcmp-root .he-banner-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
#adcmp-root .he-headline-wrap {
  padding: 0 0 6px;
}
#adcmp-root .he-headline {
  color: var(--ink);
  max-width: none;
  margin: 0 0 14px;
  text-wrap: balance;
}
#adcmp-root .he-dek {
  color: var(--ink-soft);
  max-width: 72ch;
  margin: 0 0 12px;
}
#adcmp-root .he-dek-grad {
  font-family: var(--worksans-medium);
  background: linear-gradient(
    120deg,
    var(--ad) 0%,
    var(--ad2) 50%,
    var(--brand) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.005em;
}
#adcmp-root .he-dek:last-of-type {
  margin-bottom: 24px;
}
#adcmp-root .he-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #a040b0, #4b6dd3);
  color: #fff;
  font-family: var(--body);
  font-size: 1.1em;
  padding: 13px 26px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 10px 26px -10px rgba(160, 64, 176, 0.32);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
#adcmp-root .he-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(160, 64, 176, 0.42);
}
#adcmp-root .he-cta-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
#adcmp-root .he-cta-btn:hover .he-cta-arrow {
  transform: translateY(3px);
}
#adcmp-root .he-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
#adcmp-root .he-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 22, 38, 0.08);
  border-radius: 18px;
  padding: 24px 22px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
#adcmp-root .he-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(15, 22, 38, 0.2);
}
#adcmp-root .he-card-ad {
  background: linear-gradient(180deg, #fff 0%, rgba(181, 27, 196, 0.05) 100%);
  border-color: rgba(181, 27, 196, 0.35);
  box-shadow:
    0 22px 50px -18px rgba(181, 27, 196, 0.4),
    0 2px 8px rgba(15, 22, 38, 0.06);
  transform: translateY(-6px);
}
#adcmp-root .he-card-ad:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 60px -18px rgba(181, 27, 196, 0.5),
    0 2px 8px rgba(15, 22, 38, 0.06);
}
#adcmp-root .he-card-ad::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--ad), var(--ad2));
}
#adcmp-root .he-card-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--ad), var(--ad2));
  color: #fff;
  font-family: var(--poppins-bold);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 99px;
  box-shadow: 0 6px 14px -4px rgba(181, 27, 196, 0.55);
  white-space: nowrap;
}
#adcmp-root .he-card-name {
  font-family: var(--poppins-bold);
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  margin-top: 6px;
}
#adcmp-root .he-card-ad .he-card-name {
  background: linear-gradient(120deg, var(--ad), var(--ad2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#adcmp-root .he-card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#adcmp-root .he-card-stat {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
#adcmp-root .he-card-stat b {
  font-family: var(--poppins-bold);
  font-size: 1.04rem;
  color: var(--ink);
  margin-right: 4px;
  letter-spacing: -0.01em;
}
#adcmp-root .he-card-ad .he-card-stat b {
  color: var(--ad-ink);
}
@media (max-width: 780px) {
  #adcmp-root .hero-editorial {
    padding: 84px 0 42px;
  }
  #adcmp-root .hero-editorial .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #adcmp-root .he-visual {
    justify-content: center;
  }
  #adcmp-root .he-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
    max-width: 360px;
  }
  #adcmp-root .he-card-ad {
    transform: none;
    order: -1;
  }
  #adcmp-root .he-card-ad:hover {
    transform: translateY(-3px);
  }
  #adcmp-root .he-card-pill {
    font-size: 0.6rem;
    padding: 4px 12px;
    top: -11px;
  }
}

#adcmp-root .numbers {
  position: relative;
  background: #fff;
  overflow: hidden;
}
#adcmp-root .numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    55% 90% at 50% -20%,
    rgba(42, 91, 255, 0.07),
    transparent 60%
  );
  pointer-events: none;
}
#adcmp-root .numbers .wrap {
  position: relative;
  z-index: 2;
}
#adcmp-root .num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#adcmp-root .num-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
#adcmp-root .num-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #19a6b4);
}
#adcmp-root .num-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
#adcmp-root .num-ic {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  color: var(--brand);
}
#adcmp-root .num-ic svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#adcmp-root .num-l {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* section frame */
#adcmp-root section {
  padding: 34px 0;
}
#adcmp-root .sec-head {
  max-width: 1200px;
  margin: 0 auto 46px;
  text-align: center;
}
#adcmp-root .sec-head .droid-section-main-title {
  padding-left: 20px;
}
@media (max-width: 680px) {
  #adcmp-root .sec-head .droid-section-main-title {
    padding-left: 0;
  }
}
#adcmp-root .sec-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--worksans-medium);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--brand);
}
#adcmp-root .sec-head .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  flex: none;
}
#adcmp-root .sec-head p {
  color: var(--ink-soft);
  max-width: 1200px;
}
#adcmp-root .cmp-note {
  color: var(--ink-faint);
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  font-family: var(--worksans-regular);
  font-size: 1.15em;
  line-height: 1.5;
}
#adcmp-root .cmp-note *,
#adcmp-root .disclaimer * {
  font-family: var(--worksans-regular);
}
#adcmp-root .note-bar {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 0.84rem;
  color: #8a6320;
  background: #fff8ea;
  border: 1px solid #f1dca8;
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
}

/* scorecard */
#adcmp-root .scorecard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
#adcmp-root .sc-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
#adcmp-root .sc-row:last-child {
  border-bottom: 0;
}
#adcmp-root .sc-head {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  color: var(--ink);
  border-bottom: 2px solid var(--line);
}
#adcmp-root .sc-head .sc-cell {
  padding: 16px 18px;
  font-family: var(--poppins-bold);
  font-size: 1rem;
  text-align: center;
}
#adcmp-root .sc-head .sc-cell:first-child {
  text-align: left;
  font-family: var(--worksans-medium);
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
#adcmp-root .sc-head .sc-cell.ad {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--ad), var(--ad2));
  box-shadow: 0 10px 22px -10px rgba(181, 27, 196, 0.55);
}
#adcmp-root .sc-cell {
  padding: 16px 18px;
}
#adcmp-root .sc-cat {
  font-family: var(--worksans-medium);
  font-size: 0.96rem;
}
#adcmp-root .sc-cell.ad {
  box-shadow:
    inset 1.5px 0 0 rgba(181, 27, 196, 0.32),
    inset -1.5px 0 0 rgba(181, 27, 196, 0.32);
}
#adcmp-root .sc-row[data-jump] {
  cursor: pointer;
  transition:
    background 0.15s,
    box-shadow 0.15s;
}
#adcmp-root .sc-row[data-jump]:hover {
  background: #f4f7ff;
  box-shadow: inset 3px 0 0 var(--brand);
}
#adcmp-root .sc-row[data-jump]:hover .sc-cell.ad {
  background: #fbeffb;
}
#adcmp-root .sc-row[data-jump] .sc-cat::after {
  content: "\2192";
  margin-left: 9px;
  color: var(--brand);
  font-family: var(--worksans-medium);
  opacity: 0.4;
  display: inline-block;
  transform: translateX(0);
  transition:
    opacity 0.15s,
    transform 0.15s;
}
#adcmp-root .sc-row[data-jump]:hover .sc-cat::after {
  opacity: 1;
  transform: translateX(3px);
}
#adcmp-root .meter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
#adcmp-root .meter .frac {
  font-family: var(--poppins-bold);
  font-size: 1.1rem;
}
#adcmp-root .meter .bar {
  width: 100%;
  max-width: 120px;
  height: 6px;
  border-radius: 99px;
  background: #eceef5;
  overflow: hidden;
}
#adcmp-root .meter .bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--no);
}
#adcmp-root .sc-cell.ad .meter .bar i {
  background: linear-gradient(90deg, var(--ad), var(--ad2));
}
#adcmp-root .sc-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
#adcmp-root .cal-ico {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e08a26' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3.5' y='5' width='17' height='15' rx='2'/><line x1='3.5' y1='10' x2='20.5' y2='10'/><line x1='8' y1='3' x2='8' y2='7'/><line x1='16' y1='3' x2='16' y2='7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: none;
}
#adcmp-root .sc-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
#adcmp-root .sc-note {
  margin: 14px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-faint);
}
#adcmp-root .sc-note b {
  color: var(--ink-soft);
  font-family: var(--worksans-medium);
}
#adcmp-root .scm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
#adcmp-root .kc {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.25;
}
#adcmp-root .kc b {
  font-family: var(--poppins-bold);
  font-size: 1rem;
  color: var(--ink);
  margin-right: 1px;
}
#adcmp-root .sc-cell.ad .kc b {
  color: var(--ad-ink);
}

/* interactive comparison */
#adcmp-root .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
#adcmp-root .legend {
  display: flex;
  gap: 8px 10px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.74rem;
  color: var(--ink-soft);
  font-family: var(--worksans-medium);
}
#adcmp-root .legend i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border-radius: 99px;
  line-height: 1;
}
#adcmp-root .legend .ic {
  background: transparent;
  width: 15px;
  height: 15px;
  font-size: 0.82rem;
  opacity: 1;
}
/* ===== Dark comparison-table section: the table card stays white and pops against
   the dark band; the nav, legend, and note flip to light text. ===== */
#adcmp-root #compare-table.cmp-dark {
  background: #0a2334;
  padding: 40px 0 56px;
}
#adcmp-root .cmp-table-head {
  text-align: center;
  margin: 0 auto 30px;
}
#adcmp-root .cmp-table-head h2 {
  color: #fff;
}
#adcmp-root .cmp-table-head .droid-section-main-title-desc {
  color: rgba(255, 255, 255, 0.72);
}
#adcmp-root .cmp-dark .legend {
  color: rgba(255, 255, 255, 0.85);
}
#adcmp-root .cmp-dark .legend i {
  background: transparent;
}
#adcmp-root .cmp-dark .cmp-note {
  color: rgba(255, 255, 255, 0.6);
}
#adcmp-root .cmp-note .cmp-note-fb {
  color: #6ea8ff;
  font-family: var(--worksans-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#adcmp-root .cmp-note .cmp-note-fb:hover {
  color: #9cc3ff;
}
#adcmp-root .cmp-tabs {
  position: sticky;
  top: 84px;
  z-index: 25;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  margin: 0 0 18px;
  scrollbar-width: none;
  background: linear-gradient(180deg, #ffffff, #f2f5fc);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px -14px rgba(15, 22, 38, 0.32);
  width: 100%;
  box-sizing: border-box;
}
#adcmp-root .cmp-tabs::-webkit-scrollbar {
  display: none;
}
#adcmp-root .cmp-tab {
  flex: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--worksans-medium);
  font-size: 0.8rem;
  padding: 7px 12px;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
}
#adcmp-root .cmp-tab:hover {
  border-color: #cbd2e0;
  color: var(--ink);
}
#adcmp-root .cmp-tab.active {
  background: linear-gradient(135deg, #2a5bff, #16b6c4);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(42, 91, 255, 0.32);
}
#adcmp-root .cmp-panel {
  display: block;
  margin: 0 auto 48px;
  max-width: 1200px;
}
#adcmp-root .cmp-panel:last-child {
  margin: 0 auto 18px;
}

#adcmp-root .svc-orbit-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#adcmp-root .svc-orbit-stage {
  position: relative;
  width: 240px;
  height: 240px;
  flex: none;
}
#adcmp-root .svc-orbit-stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(42, 91, 255, 0.07) 0%,
    transparent 68%
  );
  z-index: 0;
  transition: background 0.6s ease;
}
#adcmp-root .svc-orbit-stage[data-tool="0"]::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(181, 27, 196, 0.08) 0%,
    transparent 68%
  );
}
#adcmp-root .svc-orbit-stage[data-tool="2"]::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(13, 148, 136, 0.08) 0%,
    transparent 68%
  );
}
#adcmp-root .svc-orbit-stage::after {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(42, 91, 255, 0.18);
  z-index: 0;
}
#adcmp-root .svc-orbit-ring {
  position: absolute;
  inset: 0;
  animation: svc-spin 32s linear infinite;
}
#adcmp-root .svc-orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateY(-100px)
    rotate(calc(-1 * var(--angle)));
}
#adcmp-root .svc-orbit-icon {
  position: absolute;
  top: -19px;
  left: -19px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px -8px rgba(15, 22, 38, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: svc-spin-back 32s linear infinite;
  transition:
    background 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease;
}
#adcmp-root .svc-orbit-icon i {
  width: 22px;
  height: 22px;
  font-size: 20px;
  line-height: 1;
  color: #7719aa;
  transition:
    opacity 0.6s ease,
    filter 0.6s ease,
    transform 0.6s ease;
}
#adcmp-root .svc-orbit-icon i::before {
  display: block;
  max-width: 22px;
  max-height: 22px;
  width: auto;
  height: auto;
}
#adcmp-root .svc-orbit-icon::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e23b40
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12'><path d='M3.2 3.2l5.6 5.6M8.8 3.2l-5.6 5.6' stroke='%23fff' stroke-width='1.9' stroke-linecap='round'/></svg>")
    center/12px 12px no-repeat;
  box-shadow:
    0 3px 8px rgba(226, 59, 64, 0.45),
    0 0 0 2px #fff;
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
#adcmp-root .svc-orbit-slot.faded .svc-orbit-icon {
  background: #fafbfd;
  border-color: #edeff5;
  box-shadow: none;
}
#adcmp-root .svc-orbit-slot.faded .svc-orbit-icon i {
  opacity: 0.32;
  filter: grayscale(1) brightness(1.05);
  transform: scale(0.88);
}
#adcmp-root .svc-orbit-slot.faded .svc-orbit-icon::after {
  opacity: 1;
  transform: scale(1);
}
#adcmp-root .svc-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow:
    0 12px 32px -12px rgba(15, 22, 38, 0.22),
    0 2px 6px rgba(15, 22, 38, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#adcmp-root .svc-orbit-center::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(15, 22, 38, 0.09);
  pointer-events: none;
}
#adcmp-root .svc-orbit-wordmark {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
#adcmp-root .svc-orbit-wordmark.active {
  opacity: 1;
  transform: scale(1);
}
#adcmp-root .svc-orbit-wordmark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}
@keyframes svc-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes svc-spin-back {
  to {
    transform: rotate(-360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  #adcmp-root .svc-orbit-ring,
  #adcmp-root .svc-orbit-icon {
    animation: none !important;
  }
}
@media (max-width: 880px) {
  #adcmp-root .scorecard-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #adcmp-root .svc-orbit-stage {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  #adcmp-root .svc-orbit-slot {
    transform: rotate(var(--angle)) translateY(-92px)
      rotate(calc(-1 * var(--angle)));
  }
  #adcmp-root .svc-orbit-icon {
    width: 34px;
    height: 34px;
    top: -17px;
    left: -17px;
  }
  #adcmp-root .svc-orbit-icon i {
    width: 20px;
    height: 20px;
    font-size: 18px;
  }
  #adcmp-root .svc-orbit-center {
    width: 82px;
    height: 82px;
  }
  #adcmp-root .svc-orbit-wordmark {
    font-size: 0.74rem;
  }
}
@keyframes cmpfade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#adcmp-root .panel-title {
  font-family: var(--poppins-semibold);
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: 0;
  /* brightened for the dark section so it reads clearly */
  background: linear-gradient(115deg, #e081ff 0%, #5aa6ff 72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
#adcmp-root .tab-scorecard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
#adcmp-root .tab-sc-item {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
#adcmp-root .tab-sc-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(15, 22, 38, 0.18);
}
#adcmp-root .tab-sc-item.tab-sc-ad {
  border-color: rgba(181, 27, 196, 0.35);
  background: linear-gradient(180deg, rgba(181, 27, 196, 0.05), transparent);
  box-shadow:
    0 8px 20px -10px rgba(181, 27, 196, 0.32),
    0 1px 3px rgba(15, 22, 38, 0.04);
}
#adcmp-root .tab-sc-name {
  font-family: var(--poppins-semibold);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
#adcmp-root .tab-sc-ad .tab-sc-name {
  color: var(--ad-ink);
}
#adcmp-root .tab-sc-score {
  font-family: var(--poppins-bold);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
#adcmp-root .tab-sc-ad .tab-sc-score {
  background: linear-gradient(120deg, var(--ad), var(--ad2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 680px) {
  #adcmp-root .tab-scorecard {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }
  #adcmp-root .tab-sc-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
  }
}
#adcmp-root .cmp-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: visible;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px !important;  background: #fff;
  margin-top: 24px;
  position: relative;
}
#adcmp-root .col-head {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    270deg,
    rgb(13 0 211 / 11%),
    rgba(10, 149, 181, 0.11)
  );
  border-radius: 20px 20px 0 0;
}
#adcmp-root .col-head .ch-feat {
  padding: 20px 18px;
  font-family: var(--poppins-semibold);
  color: var(--ink-soft);
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  text-transform: none;
  align-self: center;
}
#adcmp-root .col-head .ch-tools {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
#adcmp-root .col-head .ch-tool {
  padding: 20px 14px 12px;
  text-align: center;
  border-left: 1px solid var(--line-soft);
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#adcmp-root .col-head .ch-tool.ad {
  background: linear-gradient(
    180deg,
    rgba(181, 27, 196, 0.13),
    rgba(227, 51, 138, 0.05)
  ) !important;
  box-shadow:
    inset 3px 0 0 rgba(181, 27, 196, 0.55),
    inset -3px 0 0 rgba(181, 27, 196, 0.55),
    0 -8px 24px -8px rgba(181, 27, 196, 0.45),
    0 12px 28px -16px rgba(181, 27, 196, 0.4);
}
#adcmp-root .col-head .ch-tool.ad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ad), var(--ad2));
}
#adcmp-root .cht-name {
  font-family: var(--poppins-regular);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  display: block;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: break-word;
  min-width: 0;
  text-align: center;
}
#adcmp-root .col-head .ch-tool.ad .cht-name {
  color: var(--ad-ink);
}
#adcmp-root .cht-desc {
  display: block;
  font-size: 0.78rem;
  font-family: var(--worksans-regular);
  color: var(--ink-soft);
  margin: 9px auto 0;
  line-height: 1.55;
  max-width: 230px;
}
#adcmp-root .frow2 {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  border-bottom: 1px solid rgb(15 22 38 / 8%);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
#adcmp-root .frow2:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 20px;
}
/* The expandable parent row is the last visible row while collapsed (its sub-rows are
   hidden), so it shouldn't show a divider; the divider appears only once expanded. */
#adcmp-root .frow2:has(.fn-expand) {
  border-bottom: 0;
  border-bottom-left-radius: 20px;
}
#adcmp-root .frow2:has(.fn-expand).toggle-parent-active {
  border-bottom: 1px solid rgba(15, 22, 38, 0.05);
  border-bottom-left-radius: 0;
}
#adcmp-root .feat-cell {
  padding: 20px 24px;
  align-self: center;
  position: relative;
}
#adcmp-root .feat-cell .fn {
  font-size: 1.1em;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: inline-block;
  font-family: var(--poppins);
}
#adcmp-root .feat-cell .fn-nowrap {
  white-space: nowrap;
}
#adcmp-root .feat-cell .fn-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  color: var(--ink-faint);
  cursor: pointer;
  font-size: 0.9em;
  vertical-align: middle;
  transition: color 0.15s ease;
}
#adcmp-root .feat-cell .fn-info:hover,
#adcmp-root .feat-cell .fn-info:focus-visible {
  color: var(--brand);
  outline: none;
}
/* Tooltip is anchored to the feature cell (not the icon) and width-capped to the
   viewport, so it never spills past the screen edge on the stacked mobile layout. */
#adcmp-root .feat-cell .fn-info[data-desc]::after,
#adcmp-root .feat-cell .viz-bulb[data-desc]::after {
  content: attr(data-desc);
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--worksans-regular);
  font-size: 0.78rem;
  line-height: 1.45;
  padding: 9px 12px;
  border-radius: 8px;
  width: max-content;
  max-width: min(300px, calc(100vw - 56px));
  white-space: normal;
  text-align: left;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 30;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.32);
}
/* The bulb sits at the right end of the feature name, so its tooltip opens
   leftward (right-aligned) to avoid spilling past the cell / viewport edge. */
#adcmp-root .feat-cell .viz-bulb[data-desc]::after {
  left: auto;
  right: 0;
}
#adcmp-root .feat-cell .fn-info[data-desc]:hover::after,
#adcmp-root .feat-cell .fn-info[data-desc]:focus-visible::after,
#adcmp-root .feat-cell .viz-bulb[data-desc]:hover::after,
#adcmp-root .feat-cell .viz-bulb[data-desc]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
#adcmp-root .fn-expand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--worksans-medium);
  font-size: 0.84rem;
  color: var(--brand-ink);
  letter-spacing: -0.005em;
}
#adcmp-root .fn-expand .fn-expand-label {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
#adcmp-root .fn-expand:hover .fn-expand-label {
  text-decoration-thickness: 2px;
}
#adcmp-root .fn-expand .fn-expand-chev {
  font-size: 1.4em;
  transition: transform 0.25s ease;
}
#adcmp-root .fn-expand.open .fn-expand-chev {
  transform: rotate(180deg);
}
#adcmp-root .frow2.toggle-parent-active {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.08),
    rgba(99, 102, 241, 0.02) 60%,
    transparent
  );
  box-shadow: inset 4px 0 0 rgba(99, 102, 241, 0.55);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
#adcmp-root .frow2-sub {
  display: none;
  background: linear-gradient(90deg, rgba(42, 91, 255, 0.025), transparent 70%);
}
#adcmp-root .frow2-sub .feat-cell {
  padding-left: 46px;
  position: relative;
}
#adcmp-root .frow2-sub .feat-cell::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: rgba(42, 91, 255, 0.35);
}
#adcmp-root .frow2-sub .fn {
  font-size: 0.88rem;
  font-family: var(--poppins-medium);
  color: var(--ink-soft);
}
#adcmp-root .frow2-sub.open {
  display: grid;
  box-shadow: inset 4px 0 0 rgba(99, 102, 241, 0.22);
}
#adcmp-root .viz-bulb {
  position: relative;
  margin-left: 7px;
  font-size: 0.82rem;
  line-height: 1;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  color: var(--warn);
  background: rgba(244, 183, 64, 0.16);
  box-shadow: 0 0 0 1px rgba(244, 183, 64, 0.3);
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
  animation: vizBulbGlow 3s ease-in-out infinite;
}
#adcmp-root .viz-bulb:hover {
  background: rgba(244, 183, 64, 0.28);
  box-shadow: 0 0 0 1px rgba(244, 183, 64, 0.45);
}
@keyframes vizBulbGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 1px rgba(244, 183, 64, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(244, 183, 64, 0.45));
  }
}
#adcmp-root .cht-desc a {
  color: var(--brand-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#adcmp-root .col-head .ch-tool.ad .cht-desc a {
  color: var(--ad-ink);
}
#adcmp-root .cht-name {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  cursor: default;
}
#adcmp-root .cht-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82em;
  color: var(--ink-faint);
  font-style: normal;
  font-family: var(--poppins-medium);
  transition: color 0.15s ease;
  line-height: 1;
  cursor: pointer;
}
#adcmp-root .cht-info:hover {
  color: var(--brand);
}
#adcmp-root .col-head .ch-tool.ad .cht-info:hover {
  color: var(--ad-ink);
}
#adcmp-root .cht-name[data-desc]::after {
  content: attr(data-desc);
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-family: var(--worksans-regular);
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  padding: 9px 12px;
  border-radius: 8px;
  width: max-content;
  max-width: 240px;
  white-space: normal;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 30;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.32);
}
#adcmp-root .cht-name[data-desc]::before {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}
#adcmp-root .cht-name[data-desc]:has(.cht-info:hover)::after,
#adcmp-root .cht-name[data-desc]:has(.cht-info:hover)::before,
#adcmp-root .cht-name[data-desc]:focus-within::after,
#adcmp-root .cht-name[data-desc]:focus-within::before {
  opacity: 1;
}
#adcmp-root .cht-summary {
  margin-top: 8px;
}
#adcmp-root .cht-summary .scm {
  align-items: center;
}
/* Compact score chip — the "Key Capabilities" label lives in the left column
   header, so each tool only needs its fraction as a small pill. */
#adcmp-root .kc-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  margin-top: 4px;
  gap: 0 4px;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(15, 22, 38, 0.05);
  font-family: var(--worksans-medium);
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.2;
  text-align: center;
}
/* Keep the fraction (count + total) on one line so it never splits between
   the number and "/N"; only "capabilities" wraps to a centered second line. */
#adcmp-root .kc-frac {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  white-space: nowrap;
}
#adcmp-root .kc-pill p {
  margin: 0;
  font-family: var(--worksans-medium);
  font-size: 1.2em;
  color: var(--ink);
}
#adcmp-root .ch-tool.ad .kc-pill {
  background: linear-gradient(
    120deg,
    rgba(42, 91, 255, 0.12),
    rgba(25, 166, 180, 0.1)
  );
  color: var(--brand-ink);
}
#adcmp-root .ch-tool.ad .kc-pill p {
  color: var(--brand-ink);
}
#adcmp-root .vals {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#adcmp-root .vc {
  padding: 20px 16px;
  border-left: 1px solid rgba(15, 22, 38, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#adcmp-root .vc.ad {
  background: linear-gradient(
    180deg,
    rgba(181, 27, 196, 0.07),
    rgba(181, 27, 196, 0.025)
  );
  box-shadow:
    inset 3px 0 0 rgba(181, 27, 196, 0.5),
    inset -3px 0 0 rgba(181, 27, 196, 0.5);
}
#adcmp-root .vlabel {
  display: none;
}
#adcmp-root .vbody {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
#adcmp-root .ic {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.65em;
  flex: none;
}
#adcmp-root .ic.yes {
  /* background: rgba(13, 166, 96, 0.16); */
  color: #0c9a58;
}
#adcmp-root .ic.partial {
  /* background: rgba(224, 138, 38, 0.18); */
  color: #e08a26;
  font-size: 1.95em;
}
#adcmp-root .ic.low {
  /* background: rgba(224, 138, 38, 0.12); */
  color: #d2974a;
  font-size: 1.95em;
}
#adcmp-root .ic.no {
  /* background: rgba(228, 60, 64, 0.12); */
  color: #e23b40;
}
#adcmp-root .cell-note {
  font-size: 0.82rem;
  font-family: var(--poppins-regular);
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.5;
}
#adcmp-root .cell-strong {
  font-size: 0.82rem;
  font-family: var(--poppins-regular);
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.5;
}
#adcmp-root .cell-strong a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#adcmp-root .cell-note a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#adcmp-root .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.05rem;
}
#adcmp-root .stars .off {
  color: #e2e5ee;
}
#adcmp-root .stars .half {
  color: #e2e5ee;
  position: relative;
  display: inline-block;
}
#adcmp-root .stars .half::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}
#adcmp-root .up-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(42, 91, 255, 0.12);
  color: #1640c4;
  font-family: var(--poppins-semibold);
  font-size: 0.72rem;
  padding: 4px 9px;
  border-radius: 99px;
}
#adcmp-root .up-badge i {
  font-size: 1.15em;
}
#adcmp-root .lg-viz i {
  color: var(--gold);
  font-size: 1.55em;
}
#adcmp-root .ic.upcoming i {
  color: #2a5bff;
  font-size: 1.35em;
}
#adcmp-root .vbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(120deg, var(--brand), #19a6b4);
  color: #fff;
  font-family: var(--poppins-bold);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 99px;
  margin-left: 8px;
  vertical-align: middle;
}
#adcmp-root .svc {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px;
  margin: 4px;
  cursor: default;
  transition:
    border-color 0.15s,
    transform 0.12s;
}
#adcmp-root .svc:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}
#adcmp-root .svc svg {
  flex: 0 0 auto;
  display: block;
}
#adcmp-root .svc::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-family: var(--worksans-medium);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 6;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
#adcmp-root .svc::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
#adcmp-root .svc:hover::after,
#adcmp-root .svc:hover::before {
  opacity: 1;
}
#adcmp-root .svc-col.ad .svc {
  border-color: rgba(181, 27, 196, 0.25);
}
#adcmp-root .frow2.has-desc {
  position: relative;
}
#adcmp-root .col-head .ch-tool.ad {
  position: relative;
  z-index: 2;
}

/* visionary cards */
#adcmp-root .vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#adcmp-root .vcard2 {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
#adcmp-root .vcard2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #19a6b4);
}
#adcmp-root .vcard2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
#adcmp-root .vcard2 .vi {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
#adcmp-root .vcard2 h4 {
  font-size: 1.04rem;
  margin-bottom: 8px;
  font-family: var(--display);
}
#adcmp-root .vcard2 p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* overall coverage panel */
#adcmp-root .ov {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: 36px auto 0;
}
#adcmp-root .ov-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
#adcmp-root .ov-q {
  font-family: var(--poppins-bold);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
  line-height: 1.25;
}
#adcmp-root .ov-pick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
#adcmp-root .ov-pick select {
  font-family: var(--worksans-medium);
  font-size: 0.85rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 7px 32px 7px 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' stroke='%236b7280' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 13px center;
}
#adcmp-root .ov-pick select:hover {
  border-color: #cbd2e0;
}
#adcmp-root .ov-bars {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#adcmp-root .ov-row {
  display: grid;
  grid-template-columns: 108px 1fr 46px;
  align-items: center;
  gap: 14px;
}
#adcmp-root .ov-name {
  font-size: 0.9rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#adcmp-root .ov-row.ad .ov-name {
  color: var(--ad-ink);
  font-family: var(--worksans-medium);
}
#adcmp-root .ov-track {
  height: 12px;
  border-radius: 99px;
  background: #eef1f7;
  overflow: hidden;
}
#adcmp-root .ov-track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: #c2cadb;
  transition: width 1.05s cubic-bezier(0.2, 0.7, 0.3, 1);
}
#adcmp-root .ov-row.ad .ov-track i {
  background: linear-gradient(90deg, var(--ad), var(--ad2));
}
#adcmp-root .ov-pct {
  font-family: var(--poppins-bold);
  font-size: 0.95rem;
  color: var(--ink);
  text-align: right;
}
#adcmp-root .ov-row.ad .ov-pct {
  color: var(--ad-ink);
}
#adcmp-root .ov-foot {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 20px 0 0;
  line-height: 1.5;
}
@media (max-width: 560px) {
  #adcmp-root .ov {
    padding: 22px 18px;
  }
  #adcmp-root .ov-row {
    grid-template-columns: 84px 1fr 42px;
    gap: 10px;
  }
  #adcmp-root .ov-name {
    font-size: 0.84rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  #adcmp-root .ov-track i {
    transition: none;
  }
}

/* Stack wrapper: race + tabs */
#adcmp-root .cmp-sticky-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}
#adcmp-root .cmp-sticky-stack .race-inline {
  margin-bottom: 0;
}

/* Inline race */
#adcmp-root .race-inline {
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 28px 20px;
  width: 100%;
  box-sizing: border-box;
  max-width: 1050px;
}
#adcmp-root .race-inline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 18px;
  flex-wrap: wrap;
}
#adcmp-root .race-inline-q {
  font-family: var(--poppins-regular) !important;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  max-width: 60ch;
  flex: 1;
  min-width: 0;
}
#adcmp-root .race-inline-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
/* Small screens: let the racing picker fill the row and shrink so it can't overflow */
@media (max-width: 380px) {
  #adcmp-root .adcmp-rv {
    flex: 1;
    min-width: 0;
  }
  #adcmp-root .adcmp-rv-toggle {
    min-width: 0;
    width: 100%;
    font-size: 0.82rem;
    padding: 6px 9px;
    gap: 6px;
  }
}
#adcmp-root .race-view-select {
  font-family: var(--worksans-medium);
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px 28px 7px 12px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%23b51bc4' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 9px center;
  background-size: 11px 11px;
  min-width: 170px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
#adcmp-root .race-view-select:hover {
  border-color: rgba(181, 27, 196, 0.4);
}
#adcmp-root .race-view-select:focus {
  outline: none;
  border-color: var(--ad);
  box-shadow: 0 0 0 3px rgba(181, 27, 196, 0.15);
}
#adcmp-root .race-view-select option {
  font-family: var(--worksans-medium);
  font-size: 0.95rem;
  padding: 6px 8px;
}
#adcmp-root .race-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, var(--ad), var(--brand));
  color: #fff;
  font-family: var(--worksans-medium);
  font-size: 0.86rem;
  padding: 8px 16px;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: 0 8px 18px -6px rgba(181, 27, 196, 0.4);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}
#adcmp-root .race-inline-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -6px rgba(181, 27, 196, 0.5);
}
#adcmp-root .race-inline-btn .race-icon {
  font-size: 1rem;
  line-height: 1;
}
#adcmp-root .race-inline-lanes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#adcmp-root .race-inline-lane {
  display: grid;
  grid-template-columns: 150px 1fr 86px;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
}
#adcmp-root .race-inline-tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-family: var(--poppins-semibold);
  font-size: 0.94rem;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
#adcmp-root .race-tool-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: none;
  border-radius: 4px;
}
#adcmp-root .race-tool-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#adcmp-root .race-inline-track {
  position: relative;
  height: 5px;
  background: linear-gradient(
    180deg,
    rgba(15, 22, 38, 0.05),
    rgba(15, 22, 38, 0.085)
  );
  border-radius: 99px;
  overflow: visible;
  box-shadow: inset 0 1px 2px rgba(15, 22, 38, 0.09);
}
#adcmp-root .race-inline-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 27px,
    rgba(15, 22, 38, 0.05) 27px 28px
  );
  pointer-events: none;
}
#adcmp-root .race-inline-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #aeb6c4, #c6ccd8);
  border-radius: 99px;
  transition: width 4s cubic-bezier(0.18, 0.92, 0.32, 1);
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
#adcmp-root .race-inline-fill.ad {
  background: linear-gradient(90deg, #9ce333, #1bc490);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 10px -2px rgba(27, 196, 144, 0.5);
}
#adcmp-root .race-inline-fill.ad::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: raceShimmer 3s linear infinite;
  pointer-events: none;
}
#adcmp-root .race-inline-fill.me {
  background: linear-gradient(90deg, #aeb6c4, #c6ccd8);
}
#adcmp-root .race-inline-fill.cv {
  background: linear-gradient(90deg, #aeb6c4, #c6ccd8);
}
@keyframes raceShimmer {
  0% {
    background-position: 220% 0;
  }
  100% {
    background-position: -220% 0;
  }
}
/* AdminDroid bot riding the leading edge of its bar */
#adcmp-root .race-inline-runner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  transition: left 4s cubic-bezier(0.18, 0.92, 0.32, 1);
}
#adcmp-root .race-inline-runner img {
  height: 36px;
  width: auto;
  max-width: none;
  display: block;
  animation: raceBotFloat 2.2s ease-in-out infinite;
}
@keyframes raceBotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
#adcmp-root .race-inline-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
#adcmp-root .race-inline-pct {
  font-family: var(--poppins-bold);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: right;
}
#adcmp-root .race-inline-pct.ad {
  color: #0f9d68;
  font-family: var(--poppins-bold);
}
#adcmp-root .race-inline-detail {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--poppins);
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  line-height: 1.3;
  min-height: 14px;
}
#adcmp-root .race-inline-lane.is-winner .race-inline-detail {
  color: #0f9d68;
  font-family: var(--poppins-semibold);
}
#adcmp-root .race-inline-ticker {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15, 22, 38, 0.1);
  font-family: var(--poppins-medium);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-align: center;
  min-height: 18px;
  transition: color 0.25s ease;
}
#adcmp-root .race-inline-ticker b {
  font-family: var(--poppins-bold);
  color: var(--ink-soft);
  margin-right: 1px;
}
#adcmp-root .race-inline-ticker .ticker-cap {
  color: var(--brand-ink);
  font-family: var(--poppins-semibold);
}
#adcmp-root .race-inline-ticker .ticker-winner {
  color: #0f9d68;
  font-family: var(--poppins-bold);
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #6cc72a, #12b083);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#adcmp-root .race-inline-ticker .ticker-oneliner {
  color: var(--ink-soft);
  font-family: var(--poppins-medium);
}
#adcmp-root .race-inline-lane.is-winner .race-inline-pct {
  position: relative;
  color: #0f9d68;
}
@media (prefers-reduced-motion: reduce) {
  #adcmp-root .race-inline-fill.ad::after,
  #adcmp-root .race-inline-runner img {
    animation: none;
  }
}
@media (max-width: 680px) {
  #adcmp-root .race-inline {
    padding: 18px 18px 16px;
  }
  #adcmp-root .race-inline-controls {
    width: 100%;
    justify-content: space-between;
  }
  #adcmp-root .race-inline-lane {
    grid-template-columns: 112px 1fr auto;
    gap: 10px;
  }
  #adcmp-root .race-inline-tool {
    font-size: 0.85rem;
    gap: 6px;
  }
  #adcmp-root .race-tool-logo {
    width: 16px;
    height: 16px;
  }
  #adcmp-root .race-inline-pct {
    font-size: 0.78rem;
  }
  #adcmp-root .race-inline-runner img {
    height: 22px;
  }
}

/* Floating leader pointer */
#adcmp-root .lead-pointer {
  position: fixed;
  right: 22px;
  bottom: 100px;
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--body);
}
#adcmp-root .lead-pointer.is-visible {
  display: flex;
  animation: lp-fade-in 0.3s ease both;
}
@keyframes lp-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#adcmp-root .lead-pointer-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: 210px;
  padding: 11px 14px 10px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(15, 22, 38, 0.08);
  border-radius: 14px;
  font-family: var(--worksans-medium);
  font-size: 0.78rem;
  cursor: pointer;
  text-align: left;
  box-shadow:
    0 14px 32px -12px rgba(15, 22, 38, 0.28),
    0 4px 10px -3px rgba(15, 22, 38, 0.1);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  position: relative;
}
#adcmp-root .lead-pointer-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px -12px rgba(15, 22, 38, 0.32),
    0 6px 14px -3px rgba(15, 22, 38, 0.14);
  border-color: rgba(15, 22, 38, 0.16);
}
#adcmp-root .lead-pointer-btn .lp-section-name {
  font-family: var(--worksans-medium);
  font-size: 0.78rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
  padding-right: 14px;
}
#adcmp-root .lead-pointer-btn .lp-mini-bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}
#adcmp-root .lead-pointer-btn .lp-mb-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
#adcmp-root .lead-pointer-btn .lp-mb-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 14px;
  flex: none;
  color: var(--ink-faint);
}
#adcmp-root .lead-pointer-btn .lp-mb-tag svg {
  width: 13px;
  height: 13px;
  display: block;
}
#adcmp-root .lead-pointer-btn .lp-mb-tag img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}
#adcmp-root .lead-pointer-btn .lp-mb-tag.ad {
  color: var(--ad);
}
#adcmp-root .lead-pointer-btn .lp-mb-tag.me {
  color: #aab3c0;
}
#adcmp-root .lead-pointer-btn .lp-mb-tag.cv {
  color: #aab3c0;
}
#adcmp-root .lead-pointer-btn .lp-mb-track {
  position: relative;
  flex: 1;
  height: 5px;
  background: rgba(15, 22, 38, 0.07);
  border-radius: 99px;
  overflow: hidden;
}
#adcmp-root .lead-pointer-btn .lp-mb-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.18, 0.92, 0.32, 1);
}
#adcmp-root .lead-pointer-btn .lp-mb-fill.ad {
  background: var(--ad);
}
#adcmp-root .lead-pointer-btn .lp-mb-fill.me {
  background: #aab3c0;
}
#adcmp-root .lead-pointer-btn .lp-mb-fill.cv {
  background: #aab3c0;
}
#adcmp-root .lead-pointer-btn .lp-chev {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.7rem;
  color: var(--ink-faint);
  opacity: 0.6;
  transition: transform 0.25s ease;
}
#adcmp-root .lead-pointer.is-open .lead-pointer-btn .lp-chev {
  transform: rotate(180deg);
  opacity: 1;
}
#adcmp-root .lead-pointer-pop {
  display: none;
  width: 340px;
  max-width: calc(100vw - 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow:
    0 22px 50px -16px rgba(15, 22, 38, 0.32),
    0 6px 14px -4px rgba(15, 22, 38, 0.12);
}
#adcmp-root .lead-pointer.is-open .lead-pointer-pop {
  display: block;
  animation: lp-pop-in 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes lp-pop-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#adcmp-root .lp-pop-eyebrow {
  font-family: var(--poppins-bold);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
#adcmp-root .lp-pop-title {
  font-family: var(--poppins-bold);
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 14px;
}
#adcmp-root .lp-lane {
  display: grid;
  grid-template-columns: 96px 1fr 56px;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 9px;
}
#adcmp-root .lp-lane:last-child {
  margin-bottom: 0;
}
#adcmp-root .lp-lane-tool {
  font-family: var(--poppins-bold);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#adcmp-root .lp-lane-tool.ad {
  background: linear-gradient(120deg, var(--ad), var(--ad2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#adcmp-root .lp-lane-track {
  position: relative;
  height: 3px;
  background: rgba(15, 22, 38, 0.06);
  border-radius: 99px;
  overflow: visible;
}
#adcmp-root .lp-lane-runner {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#adcmp-root .lp-lane-runner img {
  height: 18px;
  width: auto;
  max-width: none;
  display: block;
}
#adcmp-root .lp-lane-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 99px;
  background: rgba(15, 22, 38, 0.32);
  transition: width 0.55s cubic-bezier(0.18, 0.92, 0.32, 1);
}
#adcmp-root .lp-lane-fill.ad {
  background: var(--ad);
}
#adcmp-root .lp-lane-fill.me {
  background: #aab3c0;
}
#adcmp-root .lp-lane-fill.cv {
  background: #aab3c0;
}
#adcmp-root .lp-lane-score {
  font-family: var(--poppins-semibold);
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}
#adcmp-root .lp-lane.is-winner .lp-lane-score {
  color: var(--ad-ink);
  font-family: var(--poppins-bold);
}
#adcmp-root .lp-pop-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.74rem;
  color: var(--ink-faint);
  line-height: 1.4;
}
@media (max-width: 640px) {
  #adcmp-root .lead-pointer {
    right: 14px;
    bottom: 18px;
  }
  #adcmp-root .lead-pointer-btn {
    padding: 9px 14px 9px 12px;
    font-size: 0.78rem;
  }
  #adcmp-root .lead-pointer-pop {
    width: 300px;
    padding: 14px;
  }
}

/* who-wins */
#adcmp-root .who-wins {
  background: linear-gradient(180deg, #f6f8fc 0%, #ecf2fa 100%);
  padding: 46px 0 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
#adcmp-root .who-wins .wrap {
  max-width: 760px;
}
#adcmp-root .ww-eyebrow {
  display: block;
  font-family: var(--poppins-bold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--ad-ink);
  margin: 0 0 14px;
}
#adcmp-root .who-wins h2 {
  font-size: clamp(1.6rem, 2.9vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.25;
  font-family: var(--poppins-bold);
}
#adcmp-root .who-wins p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* feedbacks */
#adcmp-root .feedbacks {
  background: linear-gradient(180deg, #fdf9f1 0%, #f8f0df 100%);
  padding: 54px 0 60px;
  border-top: 1px solid var(--line);
}
#adcmp-root .feedbacks .sec-head {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
#adcmp-root .feedbacks .sec-head h2 {
  color: var(--ink);
  margin: 0 0 12px;
}
#adcmp-root .feedbacks .sec-head p {
  color: var(--ink-soft);
}
#adcmp-root .feedbacks .vc-card {
  background: #fff;
}

/* G2 reviews carousel */
#adcmp-root .g2-marquee {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 8px 0 4px;
}
#adcmp-root .g2-track {
  position: relative;
  height: auto;
  min-height: 260px;
  perspective: 1200px;
}
#adcmp-root .g2-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(440px, 86%);
  transform: translate(-50%, 0);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  box-shadow: 0 14px 32px -18px rgba(15, 22, 38, 0.22);
  min-height: 200px;
  box-sizing: border-box;
  transition:
    transform 0.55s cubic-bezier(0.22, 0.9, 0.32, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  cursor: pointer;
  will-change: transform, opacity;
}
#adcmp-root .g2-card[data-offset="0"] {
  z-index: 5;
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  filter: none;
  cursor: default;
}
#adcmp-root .g2-card[data-offset="1"] {
  z-index: 4;
  transform: translate(calc(-50% + 130px), 14px) scale(0.84);
  opacity: 0.4;
  filter: blur(3px);
}
#adcmp-root .g2-card[data-offset="-1"] {
  z-index: 4;
  transform: translate(calc(-50% - 130px), 14px) scale(0.84);
  opacity: 0.4;
  filter: blur(3px);
}
#adcmp-root .g2-card[data-offset="2"] {
  z-index: 3;
  transform: translate(calc(-50% + 260px), 26px) scale(0.7);
  opacity: 0.18;
  filter: blur(5px);
}
#adcmp-root .g2-card[data-offset="-2"] {
  z-index: 3;
  transform: translate(calc(-50% - 260px), 26px) scale(0.7);
  opacity: 0.18;
  filter: blur(5px);
}
#adcmp-root .g2-card[data-hidden] {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0) scale(0.5);
}
#adcmp-root .g2-card-avatar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6px;
  min-width: 64px;
}
#adcmp-root .g2-quote-mark {
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: var(--poppins-bold);
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(160, 64, 176, 0.22);
  pointer-events: none;
  user-select: none;
}
#adcmp-root .g2-av {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--poppins-bold);
  font-size: 1.05em;
  color: #fff;
  background: linear-gradient(135deg, #a040b0, #4b6dd3);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 14px -6px rgba(160, 64, 176, 0.45);
}
#adcmp-root .g2-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  align-self: stretch;
}
#adcmp-root .g2-stars {
  color: #f4b740;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}
#adcmp-root .g2-star-half {
  position: relative;
  display: inline-block;
  color: #d6d8de;
}
#adcmp-root .g2-star-half::before {
  content: "\2605";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  color: #f4b740;
}
#adcmp-root .g2-card blockquote {
  font-family: var(--worksans-regular);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-style: normal;
  flex: 1;
  display: flex;
  align-items: center;
}
#adcmp-root .g2-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
#adcmp-root .g2-card figcaption b {
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--poppins-bold);
}
#adcmp-root .g2-card figcaption span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  margin-top: 2px;
}
#adcmp-root .g2-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
  padding-right: 0;
}
#adcmp-root .g2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 22, 38, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    width 0.2s ease,
    transform 0.2s ease;
}
#adcmp-root .g2-dot:hover {
  background: rgba(15, 22, 38, 0.32);
}
#adcmp-root .g2-dot.is-active {
  background: linear-gradient(90deg, #a040b0, #4b6dd3);
  width: 22px;
  border-radius: 99px;
}
@media (max-width: 780px) {
  #adcmp-root .g2-marquee {
    max-width: 100%;
    margin-top: 36px;
  }
  #adcmp-root .g2-track {
    min-height: 240px;
  }
  #adcmp-root .g2-card {
    padding: 20px 18px 16px;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    width: min(86%, 360px);
  }
  #adcmp-root .g2-card[data-offset="1"],
  #adcmp-root .g2-card[data-offset="-1"],
  #adcmp-root .g2-card[data-offset="2"],
  #adcmp-root .g2-card[data-offset="-2"] {
    opacity: 0;
    pointer-events: none;
  }
  #adcmp-root .g2-card-avatar {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    min-width: 0;
  }
  #adcmp-root .g2-quote-mark {
    position: static;
    font-size: 2.6rem;
    margin-right: 8px;
  }
  #adcmp-root .g2-av {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  #adcmp-root .g2-card figcaption {
    align-items: flex-start;
    text-align: left;
  }
  #adcmp-root .g2-dots {
    justify-content: center;
    padding-right: 0;
  }
}

/* firsts */
#adcmp-root .firsts {
  background: linear-gradient(180deg, #eff8f5 0%, #e1efea 100%);
  padding: 54px 0 60px;
  border-top: 1px solid var(--line);
}
#adcmp-root .firsts .sec-head {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 36px;
}
#adcmp-root .firsts .sec-head p {
  display: inline-block;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 980px) {
  #adcmp-root .firsts .sec-head p {
    display: block;
    max-width: 660px;
    white-space: normal;
  }
}
#adcmp-root .firsts .sec-head h2 {
  color: var(--ink);
  margin: 0 0 14px;
}
#adcmp-root .firsts .sec-head p {
  color: var(--ink-soft);
  margin: 0;
}
#adcmp-root .firsts .sec-head p strong {
  color: var(--ad-ink);
  font-family: var(--worksans-medium);
}
#adcmp-root .firsts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
#adcmp-root .first-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  text-align: left;
  box-shadow: 0 4px 14px -8px rgba(15, 22, 38, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}
#adcmp-root .first-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(15, 22, 38, 0.16);
}
#adcmp-root .first-card:nth-child(1) {
  background: linear-gradient(180deg, #eff5fc 0%, #fafcfe 100%);
  border-color: rgba(58, 108, 217, 0.18);
}
#adcmp-root .first-card:nth-child(1) .first-badge {
  background: rgba(58, 108, 217, 0.1);
  color: #2849b8;
  border-color: rgba(58, 108, 217, 0.28);
}
#adcmp-root .first-card:nth-child(2) {
  background: linear-gradient(180deg, #f3effa 0%, #fbfafe 100%);
  border-color: rgba(112, 84, 200, 0.18);
}
#adcmp-root .first-card:nth-child(2) .first-badge {
  background: rgba(112, 84, 200, 0.1);
  color: #5840b0;
  border-color: rgba(112, 84, 200, 0.28);
}
#adcmp-root .first-card:nth-child(3) {
  background: linear-gradient(180deg, #fbeef6 0%, #fefafd 100%);
  border-color: rgba(160, 64, 176, 0.18);
}
#adcmp-root .first-card:nth-child(3) .first-badge {
  background: rgba(160, 64, 176, 0.1);
  color: var(--ad-ink);
  border-color: rgba(160, 64, 176, 0.28);
}
#adcmp-root .first-badge {
  display: inline-block;
  background: rgba(181, 27, 196, 0.1);
  color: var(--ad-ink);
  font-family: var(--poppins-medium);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 99px;
  margin-bottom: 14px;
  border: 1px solid rgba(181, 27, 196, 0.22);
}
#adcmp-root .first-card h3 {
  color: var(--ink);
}
#adcmp-root .first-card .droid-section-sub-title {
  margin-bottom: 8px;
}
#adcmp-root .first-card p {
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 780px) {
  #adcmp-root .firsts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* support */
#adcmp-root .support {
  background: radial-gradient(
    60% 80% at 50% 0%,
    #eef3fc 0%,
    #f4f7fc 58%,
    #edf2f9 100%
  ) !important;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#adcmp-root .support::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      45% 70% at 95% 105%,
      rgba(181, 27, 196, 0.07),
      transparent 60%
    ),
    radial-gradient(40% 60% at 5% 0%, rgba(42, 91, 255, 0.06), transparent 60%);
  pointer-events: none;
}
#adcmp-root .support .wrap {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}
#adcmp-root .support h2 {
  color: var(--ink);
  margin: 14px 0 18px;
  text-align: center;
}
#adcmp-root .support .sup-intro {
  color: var(--ink-soft);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 36px;
}
#adcmp-root .support .sup-intro strong {
  color: var(--ad-ink);
  font-family: var(--worksans-medium);
}
#adcmp-root .support .sup-intro a {
  color: var(--brand-ink);
  font-family: var(--worksans-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#adcmp-root .support .sup-intro a:hover {
  color: var(--brand);
}
#adcmp-root .sup-vlist {
  list-style: none;
  max-width: 980px;
  margin: 0 auto 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
}
#adcmp-root .sup-vlist li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
  flex: 0 0 calc(50% - 22px);
}
@media (max-width: 720px) {
  #adcmp-root .sup-vlist li {
    flex: 0 0 100%;
  }
}
#adcmp-root .sup-vlist-ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(181, 27, 196, 0.12),
    rgba(42, 91, 255, 0.1)
  );
  border: 1px solid rgba(42, 91, 255, 0.18);
  color: var(--brand-ink);
}
#adcmp-root .sup-vlist-ic i {
  font-size: 20px;
  line-height: 1;
}
#adcmp-root .sup-vlist-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#adcmp-root .sup-vlist-body .droid-section-sub-title {
  color: var(--ink);
  margin-bottom: 0;
}
#adcmp-root .sup-vlist-body .droid-section-sub-title-desc {
  color: var(--ink-soft);
}
#adcmp-root .sup-pull-quote {
  margin: 30px auto 0;
  text-align: center;
  font-family: var(--worksans-medium);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.55;
  font-style: normal;
  max-width: 740px;
  padding: 26px 46px 22px;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(181, 27, 196, 0.08) 0%,
    rgba(42, 91, 255, 0.07) 100%
  );
  border: 1px solid rgba(42, 91, 255, 0.14);
  color: #2b2b2b;
}
#adcmp-root .sup-pull-quote::before {
  content: "\201C";
  font-family: var(--poppins-bold);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--ad2);
  opacity: 0.7;
  position: absolute;
  top: 10px;
  left: 18px;
  pointer-events: none;
}

/* demo */
#adcmp-root .demo-cta {
  max-width: 1200px;
  margin: 60px auto 0;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  padding: 40px 44px 46px;
  position: relative;
  overflow: hidden;
}
/* subtle dot texture, fading toward the bottom, for a polished product feel */
#adcmp-root .demo-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.11) 1px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(
    130% 110% at 50% 0%,
    #000 28%,
    transparent 76%
  );
  mask-image: radial-gradient(130% 110% at 50% 0%, #000 28%, transparent 76%);
  pointer-events: none;
  z-index: 1;
}
#adcmp-root .demo-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 70% at 50% -20%,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    );
  pointer-events: none;
}
#adcmp-root .demo-cta > * {
  position: relative;
  z-index: 2;
}
#adcmp-root .demo-cta h2,
#adcmp-root .demo-cta h3 {
  color: #fff;
}
#adcmp-root .demo-cta .droid-section-main-title {
  margin: 0 0 14px;
}
#adcmp-root .demo-cta .droid-section-sub-title {
  margin: 0 0 18px;
}
#adcmp-root .demo-cta > p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto 24px;
  max-width: 860px;
  text-wrap: pretty;
}
#adcmp-root .demo-cta .hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
#adcmp-root .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
#adcmp-root .btn-cta-primary {
  background: linear-gradient(120deg, var(--ad), var(--ad2), var(--brand));
  color: #fff;
  border: none;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-family: var(--worksans-medium);
  box-shadow: 0 12px 24px -10px rgba(181, 27, 196, 0.5);
}
#adcmp-root .btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(181, 27, 196, 0.6);
  color: #fff;
}
#adcmp-root .btn-cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 11px 22px;
  font-size: 0.95rem;
  font-family: var(--worksans-medium);
}
#adcmp-root .btn-cta-secondary:hover {
  background: var(--bg-soft);
  border-color: #cbd2e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -8px rgba(15, 22, 38, 0.2);
  color: var(--ink);
}
#adcmp-root .demo-footnote {
  max-width: 580px;
  margin: 22px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
#adcmp-root .demo-footnote p {
  margin: 0;
}
#adcmp-root .demo-footnote a {
  color: #6ea8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: var(--worksans-medium);
}
#adcmp-root .demo-footnote strong {
  color: #fff;
  font-family: var(--worksans-medium);
}
@media (max-width: 780px) {
  #adcmp-root .demo-cta {
    padding: 34px 20px 28px;
  }
}

/* resources */
#adcmp-root .resources {
  /* background: linear-gradient(160deg, #eaf1fb 0%, #edf5f2 55%, #f1f4f8 100%); */
  background: radial-gradient(
    60% 80% at 50% 0%,
    #eef3fc 0%,
    #f4f7fc 58%,
    #edf2f9 100%
  ) !important;
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
}
/* faq */
#adcmp-root #faq .sec-head {
  text-align: center;
  margin: 0 auto;
}
#adcmp-root #faq .sec-head h2 {
  margin: 12px 0 14px;
}
#adcmp-root .faq {
  max-width: 1060px;
  margin: 40px auto 0;
}
/* Resources heading + intro centered */
#adcmp-root .resources .sec-head {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 36px;
}
#adcmp-root .resources .sec-head .droid-section-main-title-desc {
  padding-left: 0;
}
#adcmp-root .qa {
  border-bottom: 1px solid var(--line);
}
#adcmp-root .qa button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: var(--poppins-regular);
  font-size: 1.04rem;
  color: var(--ink);
}
#adcmp-root .qa .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brand);
  transition:
    transform 0.25s,
    background 0.2s;
  font-size: 1.1rem;
}
#adcmp-root .qa.open .plus {
  background: var(--brand-tint);
  font-size: 1.4rem;
  font-family: var(--poppins-medium);
  line-height: 1;
}
#adcmp-root .qa .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--ink-soft);
}
#adcmp-root .qa .ans .inner {
  padding: 0 4px 20px;
  font-size: 0.96rem;
}
#adcmp-root .qa .ans .inner a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-family: var(--worksans-medium);
}
#adcmp-root .qa .ans .inner a:hover {
  color: var(--brand-ink);
  text-decoration-thickness: 2px;
}
#adcmp-root .qa .ans .chain {
  margin-top: 10px;
  font-family: var(--poppins);
  font-size: 0.85rem;
  color: var(--brand);
}

/* final cta */
#adcmp-root .cta {
  background: linear-gradient(160deg, #020613, #0c1f4e);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px;
}
#adcmp-root .cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 50% 0%, rgba(42, 91, 255, 0.5), transparent 60%),
    radial-gradient(
      40% 60% at 85% 100%,
      rgba(24, 160, 180, 0.3),
      transparent 60%
    );
  pointer-events: none;
}
#adcmp-root .cta .wrap {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  background: #ffffff0f;
  padding: 30px 30px 40px;
  border: 1px solid #ffffff24;
  border-radius: 10px;
}
#adcmp-root .cta h2 {
  margin-bottom: 16px;
}
#adcmp-root .cta p {
  color: #c3cce2;
  margin-bottom: 30px;
}
#adcmp-root .cta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 30px;
}
#adcmp-root .cta-stat {
  background: #ffffff0d;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.55);
}
#adcmp-root .cta-stat-num {
  display: block;
  font-family: var(--poppins-medium);
  font-size: 1.85rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #849dfd;
}
#adcmp-root .cta-stat-label {
  display: block;
  margin-top: 5px;
  font-family: var(--worksans-medium);
  font-size: 0.82rem;
}
@media (max-width: 600px) {
  #adcmp-root .cta-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* reveal */
#adcmp-root .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
#adcmp-root .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  #adcmp-root .vgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  #adcmp-root .num-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  #adcmp-root section {
    padding: 60px 0;
  }
  #adcmp-root .vgrid {
    grid-template-columns: 1fr;
  }
  #adcmp-root .sc-row {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
  #adcmp-root .sc-cat {
    font-size: 0.84rem;
  }
  #adcmp-root .svc-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  #adcmp-root .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  #adcmp-root .btn {
    justify-content: center;
  }
}

/* ===== AdminDroid column emphasis: mild teal palette + elevation (overrides) ===== */
#adcmp-root .col-head .ch-tool.ad {
  background: linear-gradient(180deg, rgb(42 91 255 / 16%), rgb(25 166 180 / 12%)) !important;
  box-shadow:
    inset 3px 0 0 rgba(13, 148, 136, 0.5),
    inset -3px 0 0 rgba(13, 148, 136, 0.5),
    0 -8px 24px -8px rgba(13, 148, 136, 0.32),
    0 12px 28px -16px rgba(13, 148, 136, 0.28);
}
#adcmp-root .col-head .ch-tool.ad::before {
  background: linear-gradient(90deg, #0d9488, #14b8a6) !important;
}
#adcmp-root .col-head .ch-tool.ad .cht-name {
  color: #0d9488;
}
#adcmp-root .col-head .ch-tool.ad .cht-desc a {
  color: var(--brand-ink);
}
#adcmp-root .col-head .ch-tool.ad .cht-info:hover {
  color: var(--brand-ink);
}
#adcmp-root .vc.ad {
  background: linear-gradient(
    180deg,
    rgba(13, 148, 136, 0.07),
    rgba(13, 148, 136, 0.025)
  );
  box-shadow:
    inset 3px 0 0 rgba(13, 148, 136, 0.45),
    inset -3px 0 0 rgba(13, 148, 136, 0.45);
}

/* AdminDroid column emphasis: soft highlighted column (community-table style) */
#adcmp-root .col-head .ch-tool.ad {
  position: relative;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(42, 91, 255, 0.1),
    rgba(25, 166, 180, 0.04)
  ) !important;
  box-shadow: none !important;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  margin-top: 6px;
}
#adcmp-root .col-head .ch-tool.ad::before {
  display: none;
}
#adcmp-root .col-head .ch-tool.ad .cht-name {
  color: var(--brand-ink);
  font-family: var(--poppins-semibold);
}
#adcmp-root .col-head .ch-tool .cht-name {
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Name wrapper: a single inline-block so a block sub-line can break cleanly
   inside the flex-centered .cht-name (e.g. ManageEngine on two lines). */
#adcmp-root .cht-tn {
  display: inline-block;
  text-align: center;
  line-height: 1.2;
}
#adcmp-root .cht-name-sub {
  display: block;
  font-size: 0.9em;
}
#adcmp-root .vc.ad {
  background: rgba(42, 91, 255, 0.06) !important;
  box-shadow: none !important;
}
#adcmp-root .frow2:last-child .vc.ad {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin-bottom: 6px;
}
/* While collapsed, the expandable parent row is the last visible row, so its
   AdminDroid cell gets the rounded bottom. Once expanded, the rounding moves to
   the real last sub-row (handled by the :last-child rule above). */
#adcmp-root .frow2:has(.fn-expand) .vc.ad {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin-bottom: 6px;
}
#adcmp-root .frow2:has(.fn-expand).toggle-parent-active .vc.ad {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
#adcmp-root .vc.ad .vlabel {
  color: var(--brand-ink);
}

/* ===== Table responsive (<=720px): stack each feature into a block. The feature
   cell becomes the title (bg-highlighted); the three tools list below it. The
   AdminDroid column highlight is dropped here since there are no columns. ===== */
@media (max-width: 720px) {
  #adcmp-root .col-head {
    display: none;
  }
  #adcmp-root .frow2 {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(15, 22, 38, 0.08);
  }
  #adcmp-root .feat-cell {
    padding: 12px 16px;
    align-self: auto;
    background: rgba(42, 91, 255, 0.06);
  }
  #adcmp-root .feat-cell .fn {
    font-family: var(--poppins-medium);
  }
  #adcmp-root .feat-cell .fn-info,
  #adcmp-root .feat-cell .viz-bulb {
    position: static;
  }
  #adcmp-root .vals {
    grid-template-columns: 1fr;
  }
  #adcmp-root .vc,
  #adcmp-root .vc.ad {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 11px 16px;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  #adcmp-root .vbody {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    gap: 8px;
    max-width: 62%;
  }
  #adcmp-root .vlabel {
    display: inline-flex;
    font-family: var(--worksans-medium);
    color: var(--ink-soft);
    font-size: 0.86rem;
  }
  #adcmp-root .vc.ad .vlabel {
    color: var(--brand-ink);
  }
}

/* ========== In-Page Sticky Navigation (home-style engine, restyled as the draft's pill strip) ==========
   DESKTOP ONLY (>=1025px): single-row, text-only pill strip matching the original draft's cmp-tabs.
   At <=1024px the override is dropped entirely so DroidNavigation.css's native mobile layout takes
   over (the engine pins the nav vertically on the left as an icon strip, shown/hidden by its own JS) —
   identical to the home / active-directory-all-in-one pages.
   `position` / `top` / `z-index` come from DroidNavigation.css + the stickyPosition init param. */
@media (min-width: 1025px) {
  #adcmp-root #droid-sticky-navigation {
    margin: 0 0 38px;
    background: transparent;
    max-width: 1400px;
  }
  #adcmp-root .home-nav-tab-container {
    position: relative;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 8px;
    margin: 0 auto;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 30px;
    box-shadow: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    font-family: var(--poppins);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  /* opaque dark bar once the nav is pinned to the top (covers content scrolling under it) */
  #adcmp-root #droid-sticky-navigation.is-stuck .home-nav-tab-container {
    background: #0c2643;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px -14px rgba(8, 17, 30, 0.55);
  }
  #adcmp-root .home-nav-tab-container::-webkit-scrollbar {
    display: none;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-tab {
    flex: none;
    width: auto !important;
    min-width: 0 !important;
    margin: 0;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    border-radius: 99px;
    cursor: pointer;
    white-space: nowrap;
    transition:
      background-color 0.4s ease,
      color 0.25s ease,
      border-color 0.15s;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: visible;
  }
  #adcmp-root .home-nav-tab-container .nav-tab-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: auto;
    line-height: 1;
    color: inherit;
  }
  #adcmp-root .home-nav-tab-container .nav-tab-icon i {
    color: inherit;
  }
  #adcmp-root .home-nav-tab-container .droid-tab-label {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0;
    white-space: nowrap;
    color: inherit;
  }
  /* active highlight: one consistent gradient for every tab (matches the table title
     text gradient — no per-category colors) */
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .droid-nav-tab.active,
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .tab-cyan.active,
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .tab-lightblue.active,
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .tab-indigo.active,
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .tab-purple.active {
    border-color: transparent;
    color: #fff;
    background: #474ea9;
  }
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .droid-nav-tab.active .droid-tab-label {
    color: #fff;
  }
}

/* white hover pill only on hover-capable devices (on touch, :hover sticks on the
   tapped tab after scrolling changes the active tab) */
@media (min-width: 1025px) and (hover: hover) {
  #adcmp-root .home-nav-tab-container .droid-nav-tab:hover {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
  }
}

/* Narrow desktop (1025–1280px): shrink the tabs so all 7 fit on one row instead of scrolling/clipping */
@media (min-width: 1025px) and (max-width: 1280px) {
  #adcmp-root .home-nav-tab-container {
    gap: 5px;
    padding: 7px;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-tab {
    padding: 6px 9px;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-item {
    gap: 5px;
  }
  #adcmp-root .home-nav-tab-container .nav-tab-icon {
    font-size: 0.85rem;
  }
  #adcmp-root .home-nav-tab-container .droid-tab-label {
    font-size: 0.72rem;
  }
}

/* Tight desktop (1025–1148px): only the active tab shows its label (as a pill); the rest are icon-only with no border */
@media (min-width: 1025px) and (max-width: 1148px) {
  #adcmp-root .home-nav-tab-container .droid-nav-tab {
    border-color: transparent;
  }
  #adcmp-root .home-nav-tab-container .droid-tab-label {
    display: none !important;
  }
  #adcmp-root #droid-sticky-navigation .home-nav-tab-container .droid-nav-tab.active .droid-tab-label {
    display: inline-block !important;
  }
}

/* ===== Mobile/tablet (<=1024px): DroidNavigation pins the nav vertically on the left as an
   icon strip. Style it as gradient icon tiles in a clean floating card (the engine shows/hides
   it via JS). Labels stay hidden. ===== */
@media (max-width: 1024px) {
  #adcmp-root .home-nav-tab-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px -8px rgba(15, 22, 38, 0.28);
    overflow: visible;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-tab {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 8px;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Inactive = icon only (no tile), colored by tab; active = filled gradient tile with white icon */
  #adcmp-root .home-nav-tab-container .nav-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 1.15em;
    background: transparent;
    color: var(--ad-ink);
    transition:
      transform 0.15s ease,
      background 0.15s ease,
      color 0.15s ease;
  }
  #adcmp-root .home-nav-tab-container .nav-tab-icon i {
    color: inherit;
    line-height: 1;
  }
  #adcmp-root .home-nav-tab-container .droid-tab-label {
    display: none;
  }
  #adcmp-root .home-nav-tab-container .tab-cyan .nav-tab-icon {
    color: #0e9bb0;
  }
  #adcmp-root .home-nav-tab-container .tab-lightblue .nav-tab-icon {
    color: #1287ec;
  }
  #adcmp-root .home-nav-tab-container .tab-indigo .nav-tab-icon {
    color: #4b56d6;
  }
  #adcmp-root .home-nav-tab-container .tab-purple .nav-tab-icon {
    color: #822ed7;
  }
  #adcmp-root .home-nav-tab-container .droid-nav-tab.active .nav-tab-icon {
    color: #fff;
  }
  #adcmp-root .home-nav-tab-container .tab-cyan.active .nav-tab-icon {
    background: linear-gradient(315deg, #3ce5a1 0%, #10a8c4 74%);
  }
  #adcmp-root .home-nav-tab-container .tab-lightblue.active .nav-tab-icon {
    background: linear-gradient(315deg, #35afdb 0%, #1287ec 74%);
  }
  #adcmp-root .home-nav-tab-container .tab-indigo.active .nav-tab-icon {
    background: linear-gradient(315deg, #8b8bf3 0%, #4b56d6 74%);
  }
  #adcmp-root .home-nav-tab-container .tab-purple.active .nav-tab-icon {
    background: linear-gradient(315deg, #ac6ff2 0%, #822ed7 74%);
  }
  #adcmp-root .home-nav-tab-container .droid-nav-tab:hover .nav-tab-icon {
    transform: translateY(-1px);
  }
}

/* hide the in-page sticky nav once the comparison table is fully scrolled past
   (so it doesn't linger over the demo CTA that follows the table) */
#adcmp-root #droid-sticky-navigation {
  transition:
    opacity 0.25s ease,
    visibility 0.25s;
}
#adcmp-root #droid-sticky-navigation.nav-past-table {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ========== Materialize (Compliance) carousel — testimonials + resources ==========
   Ported Materialize .carousel base (coverflow), scoped to the page. Each testimonial /
   resource card is a .carousel-item; Materialize positions them in 3D and shows numVisible. */
#adcmp-root .adcmp-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-perspective: 760px;
  perspective: 760px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
#adcmp-root .adcmp-carousel .carousel-item {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
#adcmp-root .adcmp-carousel .indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 2;
}
#adcmp-root .adcmp-carousel .indicators .indicator-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: rgba(15, 22, 38, 0.18);
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
#adcmp-root .adcmp-carousel .indicators .indicator-item.active {
  background: linear-gradient(90deg, #a040b0, #4b6dd3);
  width: 22px;
  border-radius: 99px;
}

/* Testimonials */
#adcmp-root .adcmp-g2-carousel {
  height: 365px;
}
#adcmp-root .adcmp-g2-carousel .carousel-item {
  width: 540px;
  max-width: 86vw;
  height: 272px;
  cursor: pointer;
}
/* the centered/active card isn't a nav target — only the side cards advance the carousel */
#adcmp-root .adcmp-g2-carousel .carousel-item.active {
  cursor: text;
}
#adcmp-root .adcmp-g2-carousel .carousel-item:not(.active) {
  -webkit-user-select: none;
  user-select: none;
}
#adcmp-root .g2-cv {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 32px -18px rgba(15, 22, 38, 0.22);
  box-sizing: border-box;
  overflow: hidden;
}
#adcmp-root .g2-cv .g2-quote-mark {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--poppins-bold);
  font-size: 3rem;
  line-height: 1;
  color: rgba(160, 64, 176, 0.18);
  pointer-events: none;
}
#adcmp-root .g2-cv blockquote {
  font-family: var(--worksans-regular);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  padding-top: 15px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#adcmp-root .g2-cv blockquote .g2-hl {
  font-family: var(--worksans-medium);
  color: #6e5ac4;
}
#adcmp-root .g2-cv figcaption {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
#adcmp-root .g2-cv figcaption .g2-av {
  flex: none;
}
#adcmp-root .g2-cv-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}
#adcmp-root .g2-cv-meta p {
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--poppins-medium);
}
#adcmp-root .g2-cv-meta span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Resources */
#adcmp-root .res-cv {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
#adcmp-root .res-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}
#adcmp-root .res-cv .ri {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
#adcmp-root .res-cv .droid-section-sub-title {
  margin-bottom: 0;
  min-width: 0;
  overflow-wrap: break-word;
}
/* the description is hidden in the card and surfaced as a custom hover tooltip (.res-tip) */
#adcmp-root .res-cv p {
  display: none;
}
#adcmp-root .res-tip {
  position: fixed;
  z-index: 80;
  width: max-content;
  max-width: 280px;
  background: var(--ink);
  color: #fff;
  font-family: var(--worksans-regular);
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
#adcmp-root .res-tip.show {
  opacity: 1;
}
/* On mobile, show the description inside the card (no hover tooltip). */
@media (max-width: 768px) {
  #adcmp-root .res-cv {
    flex-direction: column;
    align-items: flex-start;
  }
  #adcmp-root .res-cv p {
    display: block;
    color: var(--ink-soft);
    margin: 0;
  }
  #adcmp-root .res-go {
    align-self: flex-end;
    margin-top: 10px;
  }
}
/* Resources carousel: side padding reserves gutters for the arrows so they
   never overlap the edge cards. */
#adcmp-root .res-carousel {
  position: relative;
  padding: 0 50px;
}
#adcmp-root .res-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 4px;
  margin: 0 -4px;
}
#adcmp-root .res-track::-webkit-scrollbar {
  display: none;
}
#adcmp-root .res-track .res-cv {
  flex: 0 0 calc((100% - 52px) / 4);
  scroll-snap-align: start;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
#adcmp-root .res-track .res-cv:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
#adcmp-root .res-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -8px rgba(15, 22, 38, 0.28);
  color: var(--ink-soft);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}
#adcmp-root .res-arrow:hover {
  color: var(--brand);
  border-color: #cbd2e0;
  box-shadow: 0 10px 24px -8px rgba(15, 22, 38, 0.34);
}
#adcmp-root .res-prev {
  left: 2px;
}
#adcmp-root .res-next {
  right: 2px;
}
#adcmp-root .res-arrow[disabled] {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
#adcmp-root .res-go {
  flex: none;
  color: var(--brand);
  line-height: 0;
  opacity: 0.55;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
#adcmp-root .res-go .clickable-arrow {
  display: block;
}
#adcmp-root .res-track .res-cv:hover .res-go {
  opacity: 1;
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  #adcmp-root .res-track .res-cv {
    flex-basis: calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  #adcmp-root .res-track .res-cv {
    flex-basis: calc((100% - 20px) / 2);
  }
}
/* Mobile: one full-width centered card; move the arrows below so they don't
   overlap the card content. */
@media (max-width: 560px) {
  #adcmp-root .res-track {
    scroll-snap-type: x mandatory;
  }
  #adcmp-root .res-track .res-cv {
    flex-basis: 100%;
    scroll-snap-align: center;
  }
  #adcmp-root .res-carousel {
    padding: 0 0 56px;
  }
  #adcmp-root .res-arrow {
    top: auto;
    bottom: 4px;
    transform: none;
  }
  #adcmp-root .res-prev {
    left: calc(50% - 46px);
    right: auto;
  }
  #adcmp-root .res-next {
    left: calc(50% + 6px);
    right: auto;
  }
}

/* Mobile (<=480px): carousel runs in Materialize fullWidth (single slide) — item fills the width.
   481px and up keeps the coverflow. */
@media (max-width: 480px) {
  #adcmp-root .adcmp-g2-carousel {
    height: 390px !important;
  }
  /* card is shorter than the carousel so the indicator dots sit in the gap below it, not on the card */
  #adcmp-root .adcmp-g2-carousel .carousel-item {
    width: 100% !important;
    max-width: 100%;
    height: 345px !important;
  }
  #adcmp-root .adcmp-g2-carousel .indicators {
    bottom: 6px;
  }
}

/* ===== Custom icon dropdown for the race "Racing" selector =====
   Native <select> options can't render icon fonts, so the <select> is hidden and this
   custom dropdown (icon + label per option) drives it. */
#adcmp-root .race-view-select {
  display: none;
}
#adcmp-root .adcmp-rv {
  position: relative;
}
#adcmp-root .adcmp-rv-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  font-family: var(--poppins-semibold);
  font-size: 0.92rem;
  color: var(--ink);
  background: linear-gradient(
    135deg,
    rgba(42, 91, 255, 0.06),
    rgba(181, 27, 196, 0.04)
  );
  border: 1px solid rgba(42, 91, 255, 0.18);
  border-radius: 12px;
  padding: 9px 14px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
#adcmp-root .adcmp-rv-toggle:hover {
  border-color: rgba(181, 27, 196, 0.4);
}
#adcmp-root .adcmp-rv.is-open .adcmp-rv-toggle {
  border-color: var(--ad);
  box-shadow: 0 0 0 3px rgba(181, 27, 196, 0.15);
}
#adcmp-root .adcmp-rv-ic {
  font-size: 1rem;
  line-height: 1;
  color: var(--ad-ink);
}
#adcmp-root .adcmp-rv-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#adcmp-root .adcmp-rv-chev {
  font-size: 0.62rem;
  color: var(--ad-ink);
  transition: transform 0.2s ease;
}
#adcmp-root .adcmp-rv.is-open .adcmp-rv-chev {
  transform: rotate(180deg);
}
#adcmp-root .adcmp-rv-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px -14px rgba(15, 22, 38, 0.3);
  padding: 6px;
  margin: 0;
  list-style: none;
  z-index: 40;
  max-height: 340px;
  display: none;
}
#adcmp-root .adcmp-rv.is-open .adcmp-rv-menu {
  display: block;
}
#adcmp-root .adcmp-rv-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--poppins);
  font-size: 0.9rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
#adcmp-root .adcmp-rv-opt:hover {
  background: var(--bg-tint);
  color: var(--ink);
}
#adcmp-root .adcmp-rv-opt > i {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--ad-ink);
  width: 20px;
  text-align: center;
  flex: none;
}
#adcmp-root .adcmp-rv-opt.is-active {
  background: linear-gradient(
    120deg,
    rgba(181, 27, 196, 0.1),
    rgba(42, 91, 255, 0.06)
  );
  color: var(--ink);
  font-family: var(--poppins-semibold);
}

/* ===== Tablet/mobile: hide the comparison hover-tooltips (useless on touch). They're
   absolute + 240px wide and stay in layout at opacity:0, so on the rightmost column they
   stick out past the overflow:visible .cmp-card and cause horizontal overflow (~768px). ===== */
@media (max-width: 1024px) {
  #adcmp-root .cht-name[data-desc]::after,
  #adcmp-root .cht-name[data-desc]::before,
  #adcmp-root .svc::after,
  #adcmp-root .svc::before {
    display: none !important;
  }
}

/* ===== Phone: smaller section titles + left-aligned headings/descriptions ===== */
@media (max-width: 600px) {
  #adcmp-root .droid-banner-title {
    font-size: 1.75em;
  }
  #adcmp-root .droid-section-main-title {
    font-size: 1.55em;
  }
  #adcmp-root .sec-head,
  #adcmp-root .feedbacks .sec-head,
  #adcmp-root .firsts .sec-head,
  #adcmp-root .resources .sec-head,
  #adcmp-root .cmp-table-head {
    text-align: left;
  }
  #adcmp-root .firsts .sec-head p {
    text-align: left;
  }
  #adcmp-root .support h2,
  #adcmp-root .support .sup-intro {
    text-align: left;
  }
  #adcmp-root .he-cta-btn {
    padding: 10px 18px;
    font-size: 0.86rem;
    gap: 8px;
  }
  #adcmp-root .he-cta-arrow {
    font-size: 1rem;
  }
}

/* ===== Feedback widget (fixed, bottom-left) ===== */
#adcmp-root .cmp-fb {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}
#adcmp-root .cmp-fb.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
#adcmp-root .cmp-fb-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #474ea9;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--poppins-medium);
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 12px 28px -12px rgba(22, 64, 196, 0.55);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}
#adcmp-root .cmp-fb-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(22, 64, 196, 0.65);
}
#adcmp-root .cmp-fb-toggle i {
  font-size: 1rem;
  line-height: 1;
}
#adcmp-root .cmp-fb-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: min(360px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 52px -18px rgba(15, 22, 38, 0.4);
  padding: 22px 22px 18px;
  transform-origin: bottom left;
  will-change: transform, opacity;
  animation: cmpFbIn 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}
#adcmp-root .cmp-fb-panel[hidden] {
  display: none;
}
@keyframes cmpFbIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* gentle staggered reveal of the panel contents */
#adcmp-root .cmp-fb-panel:not([hidden]) .cmp-fb-body > * {
  animation: cmpFbItem 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
#adcmp-root .cmp-fb-body > *:nth-child(1) {
  animation-delay: 0.06s;
}
#adcmp-root .cmp-fb-body > *:nth-child(2) {
  animation-delay: 0.1s;
}
#adcmp-root .cmp-fb-body > *:nth-child(3) {
  animation-delay: 0.14s;
}
#adcmp-root .cmp-fb-body > *:nth-child(4) {
  animation-delay: 0.18s;
}
#adcmp-root .cmp-fb-body > *:nth-child(5) {
  animation-delay: 0.22s;
}
@keyframes cmpFbItem {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  #adcmp-root .cmp-fb-panel,
  #adcmp-root .cmp-fb-panel:not([hidden]) .cmp-fb-body > * {
    animation: none;
  }
}
#adcmp-root .cmp-fb-x {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-faint);
  cursor: pointer;
}
#adcmp-root .cmp-fb-x:hover {
  color: var(--ink);
}
#adcmp-root .cmp-fb-title {
  font-family: var(--poppins-semibold);
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 22px 8px 0;
}
#adcmp-root .cmp-fb-desc {
  font-family: var(--worksans-regular);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 14px;
}
#adcmp-root .cmp-fb-opts {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
#adcmp-root .cmp-fb-opt {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--worksans-regular);
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.35;
  cursor: pointer;
}
#adcmp-root .cmp-fb-opt input {
  margin: 2px 0 0;
  accent-color: var(--brand);
  flex: none;
  cursor: pointer;
}
#adcmp-root .cmp-fb-lbl {
  display: block;
  font-family: var(--poppins-medium);
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 6px;
}
#adcmp-root .cmp-fb-text {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--worksans-regular);
  font-size: 0.86rem;
  color: var(--ink);
  resize: vertical;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}
#adcmp-root .cmp-fb-text:focus {
  border-color: var(--brand);
}
#adcmp-root .cmp-fb-warn {
  color: var(--no-ink);
  font-family: var(--worksans-medium);
  font-size: 0.76rem;
  margin: 8px 0 0;
}
#adcmp-root .cmp-fb-warn:empty {
  margin: 0;
}
#adcmp-root .cmp-fb-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
#adcmp-root .cmp-fb-cancel {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--worksans-medium);
  font-size: 0.86rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s;
}
#adcmp-root .cmp-fb-cancel:hover {
  border-color: #cbd2e0;
  color: var(--ink);
}
#adcmp-root .cmp-fb-submit {
  background: #474ea9;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-family: var(--worksans-medium);
  font-size: 0.86rem;
  color: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
#adcmp-root .cmp-fb-submit:hover {
  box-shadow: 0 10px 20px -8px rgba(22, 64, 196, 0.5);
}
#adcmp-root .cmp-fb-done {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--yes);
  font-family: var(--worksans-medium);
  font-size: 0.9rem;
  padding: 10px 0;
}
#adcmp-root .cmp-fb-done[hidden] {
  display: none;
}
#adcmp-root .cmp-fb-done i {
  color: var(--yes);
  font-size: 1.15rem;
}
#adcmp-root .cmp-fb-done i.custom-icon-cross-solid {
  color: var(--no-ink);
}
@media (max-width: 560px) {
  #adcmp-root .cmp-fb {
    left: 12px;
    bottom: 12px;
  }
  #adcmp-root .cmp-fb-toggle {
    padding: 5px 10px;
    font-size: 0.7rem;
    gap: 5px;
    border-radius: 8px;
  }
  #adcmp-root .cmp-fb-toggle i {
    font-size: 0.82rem;
  }
}
