@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("editorial-data.css");
@import url("editorial-tools.css");

/*
 * CourtsideIQ editorial system
 * Public-site foundation, shared navigation, and homepage.
 */

:root {
  --ed-bg: #0d100e;
  --ed-surface: #151a16;
  --ed-surface-raised: #1b211c;
  --ed-paper: #f3f1e8;
  --ed-text: #f4f2e9;
  --ed-muted: #a5aca6;
  --ed-line: rgba(244, 242, 233, .14);
  --ed-accent: #67e545;
  --ed-accent-deep: #3f9f2a;
  --ed-blue: #7ba9c9;
  --ed-danger: #ef766f;
  --ed-cyan: #45b8d8;
  --ed-gold: #e8b84a;
  --ed-coral: #ee7768;
  --ed-purple: #9874e8;
  --ed-sage: #8bb093;
  --ed-court-line: rgba(244, 242, 233, .032);
  --ed-court-accent: rgba(139, 176, 147, .055);
  --ed-radius: 10px;
  --ed-shadow: 0 18px 50px rgba(0, 0, 0, .16);
  --ed-font: "Manrope", sans-serif;
  --ed-data: "IBM Plex Mono", monospace;

  /* Legacy aliases keep older public components on the same visual system. */
  --bg: var(--ed-bg);
  --surface: var(--ed-surface);
  --surface-2: var(--ed-surface);
  --surface-3: var(--ed-surface-raised);
  --surface-raised: var(--ed-surface-raised);
  --text: var(--ed-text);
  --paper: var(--ed-paper);
  --muted: var(--ed-muted);
  --muted-strong: #c8cbc4;
  --green: var(--ed-accent);
  --green-soft: rgba(103, 229, 69, .1);
  --green-line: rgba(103, 229, 69, .44);
  --line: var(--ed-line);
  --line-strong: rgba(244, 242, 233, .24);
  --font-display: var(--ed-font);
  --font-body: var(--ed-font);
  --font-data: var(--ed-data);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: var(--ed-radius);
  --radius-lg: var(--ed-radius);
  --shadow-low: none;
  --shadow-high: var(--ed-shadow);
  --page-max: 1540px;
  font-family: var(--ed-font);
}

html {
  background: var(--ed-bg);
  color-scheme: dark;
  font-size: 17px;
  scroll-padding-top: 84px;
  scrollbar-color: rgba(103, 229, 69, .45) var(--ed-bg);
}

body {
  background: var(--ed-bg);
  color: var(--ed-text);
  font-family: var(--ed-font);
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body::after {
  display: none;
}

::selection {
  background: var(--ed-accent);
  color: #0b130c;
}

:focus-visible {
  outline: 2px solid var(--ed-accent) !important;
  outline-offset: 3px;
}

body,
button,
input,
select,
textarea,
summary {
  font-family: var(--ed-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: none;
}

h1 {
  font-size: clamp(3.5rem, 6vw, 6.75rem);
  line-height: .95;
}

h2 {
  line-height: 1;
}

h3 {
  line-height: 1.15;
}

a {
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a,
button,
summary {
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

button,
.button,
.primary-button,
.secondary-button {
  border-radius: 6px;
}

input,
select,
textarea {
  background-color: var(--ed-surface) !important;
  border: 1px solid var(--ed-line) !important;
  border-radius: 6px !important;
  color: var(--ed-text) !important;
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(103, 229, 69, .58) !important;
  box-shadow: none !important;
}

.eyebrow,
.section-label,
.ciq-kicker,
th,
label {
  font-family: var(--ed-font);
  letter-spacing: .01em;
  text-transform: none;
}

strong,
b,
td,
th,
[class*="score"] {
  font-variant-numeric: tabular-nums;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--ed-line);
  padding: .65rem .76rem;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--ed-muted);
  font-family: var(--ed-font);
  font-size: .78rem;
  font-weight: 700;
}

td {
  border-color: var(--ed-line) !important;
  font-size: .94rem;
}

tbody tr {
  transition: background-color 120ms ease;
}

tbody tr:hover {
  background: rgba(244, 242, 233, .035);
}

/* Shared public navigation */
.global-site-nav {
  align-items: center;
  background: var(--ed-bg);
  backdrop-filter: none;
  border-bottom: 1px solid var(--ed-line);
  box-shadow: none;
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 72px;
  padding: .65rem clamp(1rem, 2.5vw, 2.5rem);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.global-nav-brand {
  align-items: start;
  display: grid;
  gap: 0;
}

.global-nav-brand img {
  display: block;
  filter: none;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  width: 210px;
}

.global-nav-brand > span {
  color: var(--ed-muted);
  font-family: var(--ed-font);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding-left: 42px;
  text-transform: none;
  white-space: nowrap;
}

.global-nav-menu {
  align-items: center;
  display: grid;
  gap: clamp(.75rem, 1.4vw, 1.35rem);
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px) auto;
  min-width: 0;
}

.global-nav-links {
  align-items: center;
  display: flex;
  gap: clamp(.7rem, 1.2vw, 1.25rem);
  min-width: 0;
}

.global-nav-links > a,
.global-tools-menu > summary {
  color: #c8ccc6;
  cursor: pointer;
  font-family: var(--ed-font);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: 0;
  list-style: none;
  padding: .95rem 0;
  position: relative;
  text-transform: none;
  white-space: nowrap;
}

.global-tools-menu > summary {
  align-items: center;
  display: flex;
  gap: .28rem;
}

.global-tools-menu > summary::-webkit-details-marker {
  display: none;
}

.global-tools-menu > summary svg {
  fill: none;
  height: 13px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 13px;
}

.global-nav-links > a:hover,
.global-nav-links > a.active,
.global-tools-menu > summary:hover,
.global-tools-menu.active > summary {
  color: var(--ed-paper);
}

.global-nav-links > a.active::after,
.global-tools-menu.active > summary::after {
  background: var(--ed-accent);
  bottom: .35rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.global-tools-menu {
  position: relative;
}

.global-tools-panel {
  background: var(--ed-surface-raised);
  border: 1px solid rgba(244, 242, 233, .2);
  border-radius: var(--ed-radius);
  box-shadow: var(--ed-shadow);
  display: grid;
  gap: .45rem;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  left: 50%;
  min-width: 780px;
  overflow: hidden;
  padding: .6rem;
  position: absolute;
  top: calc(100% + .4rem);
  transform: translateX(-55%);
  width: min(880px, calc(100vw - 3rem));
  z-index: 1100;
}

.global-tools-panel::before {
  display: none;
}

.global-tool-group {
  align-content: start;
  border-left: 1px solid var(--ed-line);
  display: grid;
  gap: .08rem;
  min-width: 0;
  padding: .25rem .35rem .35rem .7rem;
}

.global-tool-group:first-child {
  border-left: 0;
  padding-left: .35rem;
}

.global-tool-group > p {
  color: var(--ed-muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0 0 .3rem;
  padding: 0 .78rem;
  text-transform: none;
}

.global-tools-panel a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ed-text);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .72rem .78rem;
}

.global-tools-panel a:hover {
  background: rgba(244, 242, 233, .05);
  border-color: var(--ed-line);
}

.global-tools-panel a > span {
  display: grid;
  gap: .08rem;
}

.global-tools-panel b {
  color: var(--ed-paper);
  font-size: .84rem;
  font-weight: 700;
}

.global-tools-panel em {
  color: var(--ed-muted);
  font-size: .7rem;
  font-style: normal;
  font-weight: 500;
}

.global-tools-panel small {
  align-items: center;
  color: var(--ed-accent);
  display: flex;
  flex: 0 0 auto;
  font-size: .68rem;
  font-weight: 700;
  gap: .28rem;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.global-tools-panel small svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-width: 1.25;
  width: 12px;
}

.global-tools-panel a:not(:first-child) small::before {
  content: none;
}

.global-player-search {
  align-items: center;
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  display: flex;
  min-width: 0;
  position: relative;
}

.global-player-search > svg {
  fill: none;
  height: 16px;
  margin-left: .68rem;
  stroke: var(--ed-muted);
  stroke-linecap: round;
  stroke-width: 1.5;
  width: 16px;
}

.global-player-search input {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--ed-paper) !important;
  font-size: .78rem;
  min-width: 0;
  outline: 0;
  padding: .62rem .7rem;
  width: 100%;
}

.global-player-search:focus-within {
  border-color: rgba(103, 229, 69, .62);
}

.global-player-results {
  background: var(--ed-surface-raised);
  border: 1px solid rgba(244, 242, 233, .2);
  border-radius: var(--ed-radius);
  box-shadow: var(--ed-shadow);
  left: 0;
  max-height: 360px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 1100;
}

.global-player-results[hidden] {
  display: none;
}

.global-player-results a {
  border-bottom: 1px solid var(--ed-line);
  display: grid;
  gap: .15rem;
  padding: .7rem .78rem;
}

.global-player-results a:hover {
  background: rgba(244, 242, 233, .05);
}

.global-player-results strong {
  color: var(--ed-paper);
  font-size: .82rem;
}

.global-player-results span,
.global-player-results p {
  color: var(--ed-muted);
  font-size: .7rem;
  margin: 0;
}

.global-player-results p {
  padding: .75rem;
}

.global-account-actions {
  align-items: center;
  display: flex;
  gap: .45rem;
}

.global-account-link,
.global-admin-link,
.global-subscribe-link {
  border-radius: 6px;
  font-family: var(--ed-font);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 38px;
  padding: .58rem .78rem;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.global-account-link,
.global-admin-link {
  background: transparent;
  border: 1px solid var(--ed-line);
  color: var(--ed-paper);
}

.global-account-link:hover,
.global-account-link.is-signed-in,
.global-admin-link:hover {
  border-color: rgba(103, 229, 69, .55);
  color: var(--ed-accent);
}

.global-admin-link {
  background: rgba(103, 229, 69, .08);
  color: var(--ed-accent);
}

.global-subscribe-link {
  background: var(--ed-accent);
  border: 1px solid var(--ed-accent);
  box-shadow: none;
  color: #0b130c;
}

.global-subscribe-link:hover {
  background: #7bea5f;
  border-color: #7bea5f;
}

.global-subscribe-link.is-plan {
  background: rgba(103, 229, 69, .08);
  color: var(--ed-accent);
}

.global-nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  justify-self: end;
  padding: .4rem;
}

.global-nav-toggle > span:not(.sr-only) {
  background: var(--ed-paper);
  display: block;
  height: 2px;
  margin: 4px 0;
  width: 23px;
}

/* No-JavaScript / pre-hydration homepage navigation. */
body.ciq-home:not(.has-global-nav) > .ciq-nav {
  align-items: center;
  background: var(--ed-bg);
  border-bottom: 1px solid var(--ed-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  justify-content: initial;
  min-height: 68px;
  padding: .55rem clamp(1rem, 2.5vw, 2.5rem);
}

body.ciq-home:not(.has-global-nav) .ciq-brand,
body.ciq-home:not(.has-global-nav) .ciq-nav-actions {
  align-items: center;
  display: flex;
}

body.ciq-home:not(.has-global-nav) .ciq-brand img {
  display: block;
  max-height: 36px;
  object-fit: contain;
  width: 156px;
}

body.ciq-home:not(.has-global-nav) .ciq-nav nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

body.ciq-home:not(.has-global-nav) .ciq-nav nav a {
  color: #c8ccc6;
  font-size: .76rem;
  font-weight: 650;
  text-transform: none;
  white-space: nowrap;
}

body.ciq-home:not(.has-global-nav) .ciq-nav nav a.active,
body.ciq-home:not(.has-global-nav) .ciq-nav nav a:hover {
  color: var(--ed-accent);
}

/* Homepage */
body.ciq-home {
  --green: var(--ed-accent);
  --line: var(--ed-line);
  --muted: var(--ed-muted);
  --surface: var(--ed-surface);
  --surface-2: var(--ed-surface);
  --surface-3: var(--ed-surface-raised);
  background: var(--ed-bg);
  color: var(--ed-text);
  min-height: 100vh;
}

.ciq-home .ciq-hidden {
  display: none !important;
}

.ciq-home .ciq-shell {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: var(--page-max);
  padding: clamp(1rem, 1.8vw, 1.6rem) clamp(1rem, 2.4vw, 2.25rem) 4rem;
}

.ciq-home .ciq-hero { order: 1; }
.ciq-home .ciq-visual-strip { order: 2; }
.ciq-home .ciq-role-map-section { order: 3; }
.ciq-home .ciq-product-directory { order: 4; }
.ciq-home .ciq-leaderboards { order: 5; }
.ciq-home .ciq-home-bottom { order: 6; }
.ciq-home .ciq-team-entry { order: 7; }
.ciq-home .ciq-research-band { order: 8; }
.ciq-home .ciq-subscribe { order: 9; }
.ciq-home > main > .ciq-hidden { order: 10; }

/* Keep the landing page focused; the full explanations live in Methodology. */
.ciq-home .ciq-explainer,
.ciq-home .ciq-stats,
.ciq-home .ciq-metric-system,
.ciq-home .ciq-role-pills,
.ciq-home .ciq-report-panel,
.ciq-home .ciq-bottom-heading:has(+ .ciq-metric-system),
.ciq-home .ciq-bottom-heading:has(+ .ciq-role-pills) {
  display: none !important;
}

.ciq-home .ciq-kicker {
  align-items: center;
  color: var(--ed-accent);
  display: flex;
  font-family: var(--ed-font);
  font-size: .76rem;
  font-weight: 700;
  gap: .55rem;
  letter-spacing: 0;
  margin: 0 0 .9rem;
  text-transform: none;
}

.ciq-home .ciq-kicker > span {
  background: var(--ed-accent);
  border-radius: 50%;
  box-shadow: none;
  height: 6px;
  width: 6px;
}

.ciq-home .ciq-hero {
  animation: none;
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
  box-shadow: none;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(400px, .86fr) minmax(560px, 1.14fr);
  min-height: clamp(620px, 45vw, 720px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.ciq-home .ciq-hero::before,
.ciq-home .ciq-hero::after {
  display: none;
}

.ciq-home .ciq-hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 4.5vw, 5rem) clamp(1.75rem, 3.6vw, 4rem);
  position: relative;
  z-index: 4;
}

.ciq-home .ciq-hero h1 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: clamp(3.9rem, 5.7vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
  margin: 0;
  max-width: 9ch;
  overflow-wrap: normal;
  text-transform: none;
  text-wrap: balance;
}

.ciq-home .ciq-hero p:not(.ciq-kicker) {
  color: #c5c9c2;
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  line-height: 1.62;
  margin: 1.25rem 0 0;
  max-width: 590px;
}

.ciq-home .ciq-hero-metric-pills {
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.5rem;
  max-width: 470px;
  overflow: hidden;
}

.ciq-home .ciq-hero-metric-pills a {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--ed-line);
  color: #c4c9c2;
  display: flex;
  font-family: var(--ed-data);
  font-size: .7rem;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  width: auto;
}

.ciq-home .ciq-hero-metric-pills a:last-child {
  border-right: 0;
}

.ciq-home .ciq-hero-metric-pills a:hover,
.ciq-home .ciq-hero-metric-pills a:focus-visible {
  background: var(--ed-accent);
  color: #0b130c;
  transform: none;
}

.ciq-home .ciq-hero-actions {
  align-items: center;
  display: flex;
  gap: .6rem;
  margin-top: 1.15rem;
}

.ciq-home .ciq-hero-actions a {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-family: var(--ed-font);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 44px;
  padding: 0 1.05rem;
  text-transform: none;
}

.ciq-home .ciq-hero-actions a:first-child {
  background: var(--ed-accent);
  box-shadow: none;
  color: #0b130c;
  gap: .75rem;
}

.ciq-home .ciq-hero-actions a:first-child:hover {
  background: #7bea5f;
  transform: none;
}

.ciq-home .ciq-hero-actions a:last-child {
  background: transparent;
  border: 1px solid rgba(244, 242, 233, .22);
  color: var(--ed-paper);
}

.ciq-home .ciq-hero-proof {
  border-top: 1px solid var(--ed-line);
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.8rem, 4vh, 3rem);
  max-width: 520px;
  padding-top: .9rem;
}

.ciq-home .ciq-hero-proof span {
  color: var(--ed-muted);
  display: grid;
  font-family: var(--ed-font);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.ciq-home .ciq-hero-proof b {
  color: var(--ed-paper);
  font-family: var(--ed-data);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.04em;
}

.ciq-home .ciq-hero-visual {
  align-items: stretch;
  border-left: 1px solid var(--ed-line);
  display: flex;
  justify-content: center;
  min-height: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.ciq-home .ciq-hero-stage {
  background: #101411;
  border: 0;
  border-radius: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ciq-home .ciq-hero-stage::before,
.ciq-home .ciq-hero-stage::after {
  display: none;
}

.ciq-home .ciq-feature-art {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(100%, 820px);
  z-index: 2;
}

.ciq-home .ciq-feature-art::before {
  align-items: center;
  background: var(--ed-surface-raised);
  border: 1px solid rgba(244, 242, 233, .2);
  border-radius: 50%;
  box-shadow: none;
  color: var(--ed-paper);
  content: attr(data-initials);
  display: flex;
  font-family: var(--ed-font);
  font-size: 4rem;
  font-weight: 700;
  height: 240px;
  justify-content: center;
  margin-bottom: 9rem;
  width: 240px;
}

.ciq-home .ciq-feature-art.has-photo::before {
  display: none;
}

.ciq-home .ciq-feature-art:not(.has-photo) {
  align-items: center;
  bottom: 0;
}

.ciq-home .ciq-feature-art img {
  filter: none;
  height: 96%;
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  transform-origin: center bottom;
  width: auto;
}

.ciq-home .ciq-feature-badge {
  background: rgba(13, 16, 14, .92);
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.4;
  padding: .48rem .65rem;
  position: absolute;
  right: 1.1rem;
  text-align: right;
  text-transform: none;
  top: 1.1rem;
  z-index: 7;
}

.ciq-home .ciq-hero-stage svg {
  display: none;
}

.ciq-home .ciq-hero-stat {
  backdrop-filter: none;
  background: rgba(21, 26, 22, .94);
  border: 1px solid rgba(244, 242, 233, .2);
  border-radius: 6px;
  box-shadow: none;
  min-width: 0;
  padding: .66rem .72rem;
  position: absolute;
  z-index: 4;
}

.ciq-home .ciq-hero-stat span,
.ciq-home .ciq-hero-stat small {
  font-family: var(--ed-font);
  letter-spacing: 0;
  text-transform: none;
}

.ciq-home .ciq-hero-stat span {
  color: var(--ed-muted);
  display: block;
  font-size: .68rem;
  font-weight: 700;
}

.ciq-home .ciq-hero-stat b {
  color: var(--ed-paper);
  display: block;
  font-family: var(--ed-data);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: 1.05;
  margin: .12rem 0;
}

.ciq-home .ciq-hero-stat small {
  color: var(--ed-muted);
  display: block;
  font-size: .64rem;
  line-height: 1.3;
}

.ciq-home .stat-rei {
  left: 1rem;
  top: 1rem;
  width: 180px;
}

.ciq-home .stat-rei b {
  color: var(--ed-accent);
  font-size: clamp(2.45rem, 3.4vw, 3.5rem);
  white-space: nowrap;
}

.ciq-home .stat-pfe,
.ciq-home .stat-piv,
.ciq-home .stat-vse,
.ciq-home .stat-cvr {
  bottom: 1rem;
  top: auto;
  width: calc(25% - 1.25rem);
}

.ciq-home .stat-pfe {
  left: 1rem;
  right: auto;
}

.ciq-home .stat-piv {
  left: calc(25% + .4rem);
}

.ciq-home .stat-vse {
  left: auto;
  right: calc(25% + .4rem);
}

.ciq-home .stat-cvr {
  right: 1rem;
}

.ciq-home .ciq-visual-strip {
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: .75rem;
  overflow: hidden;
}

.ciq-home .ciq-visual-strip > article {
  border-right: 1px solid var(--ed-line);
  min-width: 0;
}

.ciq-home .ciq-visual-strip > article:last-child {
  border-right: 0;
}

.ciq-home .ciq-visual-card,
.ciq-home .ciq-visual-card.purple,
.ciq-home .ciq-visual-card.blue,
.ciq-home .ciq-visual-card.gold,
.ciq-home .ciq-visual-card.cyan {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ed-text);
  display: grid;
  gap: .45rem;
  grid-template-columns: minmax(0, 1fr) minmax(76px, 38%);
  height: 158px;
  overflow: hidden;
  padding: .8rem .35rem .8rem .85rem;
}

.ciq-home .ciq-visual-card > div:last-child {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  order: initial;
  position: relative;
  z-index: 2;
}

.ciq-home .visual-photo {
  align-items: stretch;
  align-self: stretch;
  display: block;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  order: initial;
  overflow: hidden;
  position: relative;
}

.ciq-home .visual-photo img {
  bottom: -8%;
  filter: none;
  height: 112%;
  left: 50%;
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  position: absolute;
  transform: translateX(-50%);
  width: auto;
}

.ciq-home .visual-photo span {
  align-items: center;
  background: var(--ed-surface-raised);
  border: 1px solid var(--ed-line);
  border-radius: 50%;
  color: var(--ed-paper);
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  margin: 1.4rem auto 0;
  width: 58px;
}

.ciq-home .ciq-visual-card span,
.ciq-home .ciq-visual-card small {
  color: var(--ed-muted);
  display: block;
  font-size: .66rem;
  font-weight: 650;
  line-height: 1.3;
  text-transform: none;
}

.ciq-home .ciq-visual-card h3 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: .28rem 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-transform: none;
}

.ciq-home .ciq-visual-card strong {
  color: var(--ed-accent);
  display: block;
  font-family: var(--ed-data);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: 1;
}

.ciq-home .ciq-product-directory {
  border-top: 1px solid var(--ed-line);
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-top: 1.25rem;
}

.ciq-home .ciq-section-heading {
  align-items: end;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, .85fr);
  margin-bottom: 1rem;
}

.ciq-home .ciq-section-heading h2 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .98;
  margin: 0;
  max-width: 860px;
  text-transform: none;
  text-wrap: balance;
}

.ciq-home .ciq-section-heading > p {
  color: #c4c8c2;
  font-size: .96rem;
  justify-self: end;
  line-height: 1.55;
  margin: 0 0 .25rem;
  max-width: 520px;
}

.ciq-home .ciq-product-groups {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ciq-home .ciq-product-group {
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 1.1rem;
}

.ciq-home .ciq-product-index {
  color: var(--ed-accent);
  display: block;
  font-family: var(--ed-data);
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}

.ciq-home .ciq-product-label {
  color: var(--ed-muted);
  font-size: .7rem;
  font-weight: 700;
  margin: 0 0 .45rem;
}

.ciq-home .ciq-product-group h3 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 0 0 .7rem;
  max-width: 24ch;
  text-transform: none;
  text-wrap: balance;
}

.ciq-home .ciq-product-group > p:not(.ciq-product-label) {
  color: #bdc2bb;
  font-size: .84rem;
  line-height: 1.55;
  margin: 0 0 1.1rem;
  max-width: 52ch;
}

.ciq-home .ciq-product-links {
  border-top: 1px solid var(--ed-line);
  display: grid;
  margin-top: auto;
}

.ciq-home .ciq-product-links a {
  align-items: center;
  border-bottom: 1px solid var(--ed-line);
  color: var(--ed-paper);
  display: flex;
  font-size: .78rem;
  font-weight: 650;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 .15rem;
}

.ciq-home .ciq-product-links a:last-child {
  border-bottom: 0;
}

.ciq-home .ciq-product-links a:hover {
  color: var(--ed-accent);
}

.ciq-home .ciq-product-links span {
  color: var(--ed-accent);
  font-size: .9rem;
}

.ciq-home .ciq-role-map-section,
.ciq-home .ciq-rei-board,
.ciq-home .ciq-mini-board,
.ciq-home .ciq-explainer article,
.ciq-home .ciq-stats article,
.ciq-home .ciq-metric-system article,
.ciq-home .ciq-report-panel,
.ciq-home .ciq-subscribe {
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
  box-shadow: none;
}

.ciq-home .ciq-role-map-section,
.ciq-home .ciq-leaderboards,
.ciq-home .ciq-home-bottom,
.ciq-home .ciq-subscribe {
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
}

.ciq-home .ciq-role-map-section {
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.ciq-home .ciq-role-map-heading {
  align-items: end;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(260px, .9fr) minmax(280px, 1.1fr);
}

.ciq-home .ciq-role-map-heading h2,
.ciq-home .ciq-explainer > h2,
.ciq-home .ciq-leaderboards > h2,
.ciq-home .ciq-bottom-heading h2,
.ciq-home .ciq-subscribe h2 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .98;
  text-transform: none;
}

.ciq-home .ciq-role-map-heading h2 {
  margin: 0;
}

.ciq-home .ciq-role-map-heading p:last-child {
  color: #c4c8c2;
  font-size: .96rem;
  justify-self: end;
  line-height: 1.55;
  margin: 0 0 .25rem;
  max-width: 520px;
  text-align: left;
}

.ciq-home .ciq-role-map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 1.15rem 0;
  padding-bottom: .1rem;
}

.ciq-home .ciq-role-map-controls button,
.ciq-home .ciq-role-pills a {
  background: transparent;
  border: 1px solid rgba(244, 242, 233, .2);
  border-radius: 6px;
  color: #d6d8d2;
  font-family: var(--ed-font);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.ciq-home .ciq-role-map-controls button {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  flex: 0 1 auto;
  gap: .42rem;
  min-height: 34px;
  padding: 0 .72rem;
}

.ciq-home .ciq-role-map-controls button.active,
.ciq-home .ciq-role-map-controls button:hover {
  background: var(--ed-accent);
  border-color: var(--ed-accent);
  color: #0b130c;
}

.ciq-home .ciq-role-map-controls small {
  font-family: var(--ed-data);
  font-size: .65rem;
  opacity: .74;
}

.ciq-home .ciq-role-map-shell {
  display: grid;
  gap: .85rem;
  grid-template-columns: minmax(540px, 1fr) 300px;
  min-height: 500px;
  position: relative;
}

.ciq-home .ciq-role-map-stage {
  background: var(--ed-bg);
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.ciq-home .ciq-role-map-stage::before,
.ciq-home .ciq-role-map-stage::after {
  background: rgba(244, 242, 233, .13);
  content: "";
  position: absolute;
  z-index: 1;
}

.ciq-home .ciq-role-map-stage::before {
  bottom: 50%;
  height: 1px;
  left: 0;
  right: 0;
}

.ciq-home .ciq-role-map-stage::after {
  bottom: 0;
  left: 50%;
  top: 0;
  width: 1px;
}

.ciq-home .ciq-map-dot {
  align-items: center;
  border: 2px solid rgba(244, 242, 233, .7);
  border-radius: 50%;
  box-shadow: none;
  color: var(--ed-paper);
  display: flex;
  font-size: .56rem;
  font-weight: 700;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  transform: translate(-50%, 50%);
  transition: border-color 140ms ease, transform 140ms ease;
  z-index: 4;
}

.ciq-home .ciq-map-dot::after {
  display: none;
}

.ciq-home .ciq-map-dot.is-leader {
  outline: 2px solid var(--ed-accent);
  outline-offset: 2px;
}

.ciq-home .ciq-map-dot:hover,
.ciq-home .ciq-map-dot:focus {
  border-color: var(--ed-paper);
  box-shadow: none;
  outline: 2px solid var(--ed-accent);
  outline-offset: 2px;
  transform: translate(-50%, 50%) scale(1.12);
  z-index: 9;
}

.ciq-home .ciq-map-dot img {
  filter: none;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ciq-home .ciq-map-dot.creator {
  background: var(--ed-accent-deep);
  color: var(--ed-accent);
}

.ciq-home .ciq-map-dot.defender {
  background: #647985;
  color: #9ab6c4;
}

.ciq-home .ciq-map-dot.two-way {
  background: #827a62;
  color: #c8b986;
}

.ciq-home .ciq-map-dot.scorer {
  background: #716d7b;
  color: #aaa5b7;
}

.ciq-home .ciq-map-dot.big {
  background: #657567;
  color: #a5b8a7;
}

.ciq-home .ciq-map-dot.other {
  background: #676b67;
  color: #a7aaa7;
}

.ciq-home .ciq-role-map-card {
  background: var(--ed-surface-raised);
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  min-height: 500px;
  padding: 1rem;
}

.ciq-home .ciq-role-map-card > span {
  color: var(--ed-accent);
  display: block;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .75rem;
  text-transform: none;
}

.ciq-home .ciq-role-map-card > div {
  align-items: center;
  display: grid;
  gap: .72rem;
  grid-template-columns: 58px minmax(0, 1fr);
}

.ciq-home .ciq-role-map-card img,
.ciq-home .ciq-role-map-card > div > b {
  align-items: center;
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: 50%;
  color: var(--ed-paper);
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  object-fit: cover;
  width: 58px;
}

.ciq-home .ciq-role-map-card h3 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: 0;
  text-transform: none;
}

.ciq-home .ciq-role-map-card p {
  color: #c2c6c0;
  font-size: .84rem;
  line-height: 1.5;
  margin: .85rem 0;
}

.ciq-home .ciq-role-map-card dl {
  display: grid;
  gap: .4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: .9rem 0;
}

.ciq-home .ciq-role-map-card dl div {
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  display: block;
  padding: .58rem;
}

.ciq-home .ciq-role-map-card dt {
  color: var(--ed-muted);
  font-size: .65rem;
  font-weight: 650;
  text-transform: none;
}

.ciq-home .ciq-role-map-card dd {
  color: var(--ed-paper);
  font-family: var(--ed-data);
  font-size: 1.08rem;
  font-weight: 600;
  margin: .12rem 0 0;
}

.ciq-home .ciq-role-map-card a {
  align-items: center;
  background: var(--ed-accent);
  border-radius: 6px;
  color: #0b130c;
  display: flex;
  font-size: .78rem;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  padding: 0 .8rem;
}

.ciq-home .ciq-map-axis,
.ciq-home .ciq-map-label {
  color: var(--ed-muted);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.ciq-home .ciq-explainer {
  border-top: 1px solid var(--ed-line);
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-top: 1.25rem;
}

.ciq-home .ciq-explainer > div {
  align-self: end;
}

.ciq-home .ciq-explainer > h2 {
  grid-column: 2 / -1;
  margin: 0 0 .3rem;
  text-align: left;
}

.ciq-home .ciq-explainer article {
  border-radius: var(--ed-radius);
  padding: 1rem;
}

.ciq-home .ciq-explainer article span {
  color: var(--ed-accent);
  display: block;
  font-family: var(--ed-data);
  font-size: .7rem;
  font-weight: 600;
  margin-bottom: .9rem;
}

.ciq-home .ciq-explainer h3 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .45rem;
  text-transform: none;
}

.ciq-home .ciq-explainer p {
  color: #c1c5bf;
  font-size: .83rem;
  line-height: 1.55;
  margin: 0;
}

.ciq-home .ciq-stats {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: .75rem;
}

.ciq-home .ciq-stats article {
  padding: .9rem 1rem;
}

.ciq-home .ciq-stats span {
  color: var(--ed-muted);
  display: block;
  font-size: .68rem;
  font-weight: 650;
  text-transform: none;
}

.ciq-home .ciq-stats strong {
  color: var(--ed-paper);
  display: block;
  font-family: var(--ed-data);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1;
  margin: .22rem 0;
}

.ciq-home .ciq-stats p {
  color: var(--ed-muted);
  font-size: .76rem;
  margin: 0;
}

.ciq-home .ciq-leaderboards > h2 {
  margin: 0 0 1rem;
}

.ciq-home .ciq-board-layout {
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(620px, 1.3fr) minmax(390px, .7fr);
}

.ciq-home .ciq-rei-board,
.ciq-home .ciq-mini-board {
  padding: .9rem;
}

.ciq-home .ciq-rei-board {
  align-self: start;
  height: fit-content;
}

.ciq-home .ciq-rei-board header,
.ciq-home .ciq-mini-board h3 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.ciq-home .ciq-rei-board h3,
.ciq-home .ciq-mini-board h3 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 .65rem;
  text-transform: none;
}

.ciq-home .ciq-rei-board header a,
.ciq-home .ciq-mini-board h3 small {
  color: var(--ed-accent);
  font-family: var(--ed-font);
  font-size: .68rem;
  font-weight: 700;
  text-transform: none;
}

.ciq-home .ciq-rei-board table {
  table-layout: fixed;
}

.ciq-home .ciq-rei-board th,
.ciq-home .ciq-rei-board td {
  border-bottom: 1px solid var(--ed-line);
  font-size: .75rem;
  overflow: hidden;
  padding: .48rem .3rem;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.ciq-home .ciq-rei-board th {
  color: var(--ed-muted);
  font-size: .66rem;
  font-weight: 700;
  text-transform: none;
}

.ciq-home .ciq-rei-board a {
  color: var(--ed-paper);
  font-weight: 700;
}

.ciq-home .ciq-rei-board td:first-child,
.ciq-home .ciq-rei-board td:nth-child(5) {
  color: var(--ed-accent);
  font-family: var(--ed-data);
  font-weight: 600;
}

.ciq-home .ciq-rei-board td:nth-child(6) {
  color: #d6d8d2;
  font-weight: 650;
}

.ciq-home .ciq-side-boards {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ciq-home .ciq-mini-board ol {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ciq-home .ciq-mini-board li a {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ed-line);
  border-radius: 0;
  color: var(--ed-text);
  display: grid;
  gap: .5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 31px;
  padding: 0 .15rem;
}

.ciq-home .ciq-mini-board .ciq-empty-row {
  color: var(--ed-muted);
  font-size: .78rem;
  line-height: 1.45;
  padding: .8rem 0;
}

.ciq-home .ciq-mini-board li:last-child a {
  border-bottom: 0;
}

.ciq-home .ciq-mini-board li span {
  font-size: .74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ciq-home .ciq-mini-board li b {
  color: var(--ed-accent);
  font-family: var(--ed-data);
  font-size: .78rem;
  font-weight: 600;
}

.ciq-home .ciq-bottom-heading {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(150px, .3fr) minmax(0, 1fr);
  margin: 0 0 .9rem;
}

.ciq-home .ciq-bottom-heading h2 {
  margin: 0;
  text-align: left;
}

.ciq-home .ciq-insight-cards,
.ciq-home .ciq-metric-system {
  display: grid;
  gap: .75rem;
}

.ciq-home .ciq-insight-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.ciq-home .ciq-metric-system {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.ciq-home .ciq-insight-cards article,
.ciq-home .ciq-story-card,
.ciq-home .ciq-metric-system article,
.ciq-home .ciq-report-panel article,
.ciq-home .ciq-report-panel > div p {
  background: var(--ed-surface);
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
  box-shadow: none;
}

.ciq-home .ciq-insight-cards article,
.ciq-home .ciq-story-card {
  color: var(--ed-text);
  display: flex;
  flex-direction: column;
  min-height: 292px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  transition: background-color 140ms ease, border-color 140ms ease;
}

.ciq-home .ciq-story-card:hover {
  background: var(--ed-surface-raised);
  border-color: rgba(103, 229, 69, .48);
  transform: none;
}

.ciq-home .ciq-story-card.purple,
.ciq-home .ciq-story-card.gold,
.ciq-home .ciq-story-card.blue,
.ciq-home .ciq-story-card.cyan {
  border-color: var(--ed-line);
}

.ciq-home .ciq-story-thumb {
  align-items: flex-end;
  background: var(--ed-surface-raised);
  border: 1px solid var(--ed-line);
  border-radius: 50%;
  color: var(--ed-muted);
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 70px;
  justify-content: center;
  margin-bottom: .8rem;
  overflow: hidden;
  position: relative;
  width: 70px;
}

.ciq-home .ciq-story-thumb::before {
  content: attr(data-initials);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ciq-home .ciq-story-thumb img {
  display: block;
  filter: none;
  height: 90px;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  width: 90px;
  z-index: 1;
}

.ciq-home .ciq-insight-cards span,
.ciq-home .ciq-story-card span,
.ciq-home .ciq-report-panel span,
.ciq-home .ciq-metric-system h3 {
  color: var(--ed-accent);
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.ciq-home .ciq-insight-cards h3,
.ciq-home .ciq-story-card h3 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.18;
  margin: .55rem 0 .65rem;
  min-height: 0;
  overflow-wrap: normal;
  text-transform: none;
  text-wrap: balance;
}

.ciq-home .ciq-insight-cards p,
.ciq-home .ciq-metric-system p,
.ciq-home .ciq-report-panel p {
  color: #bec3bc;
  font-size: .79rem;
  line-height: 1.5;
  margin: 0;
}

.ciq-home .ciq-story-card small {
  color: var(--ed-muted);
  display: block;
  font-size: .64rem;
  font-weight: 600;
  margin-top: auto;
  text-transform: none;
}

.ciq-home .ciq-story-card b {
  color: var(--ed-accent);
  display: block;
  font-size: .68rem;
  font-weight: 700;
  margin-top: .45rem;
}

.ciq-home .ciq-metric-system article {
  min-height: 174px;
  padding: 1rem;
  transition: background-color 140ms ease, border-color 140ms ease;
}

.ciq-home .ciq-metric-system article:hover {
  background: var(--ed-surface-raised);
  border-color: rgba(103, 229, 69, .4);
  transform: none;
}

.ciq-home .ciq-metric-system i {
  align-items: center;
  border: 1px solid rgba(103, 229, 69, .54);
  border-radius: 5px;
  color: var(--ed-accent);
  display: inline-flex;
  font-family: var(--ed-data);
  font-size: .66rem;
  font-style: normal;
  font-weight: 600;
  height: 30px;
  justify-content: center;
  margin-bottom: .72rem;
  padding: 0 .5rem;
  width: auto;
}

.ciq-home .ciq-metric-system h3 {
  color: var(--ed-paper);
  font-size: .82rem;
  margin: 0 0 .4rem;
}

.ciq-home .ciq-role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: flex-start;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.ciq-home .ciq-role-pills a {
  padding: .42rem .68rem;
}

.ciq-home .ciq-role-pills a:hover {
  border-color: rgba(103, 229, 69, .64);
  color: var(--ed-accent);
}

.ciq-home .ciq-report-panel {
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 1fr);
  padding: .75rem;
}

.ciq-home .ciq-report-panel article {
  background: var(--ed-surface-raised);
  padding: 1.1rem;
}

.ciq-home .ciq-report-panel article h2 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: clamp(2.3rem, 3.8vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
  margin: .4rem 0 .8rem;
  max-width: 560px;
  text-transform: none;
}

.ciq-home .ciq-report-panel > div {
  display: grid;
  gap: .6rem;
}

.ciq-home .ciq-report-panel > div p {
  align-items: center;
  display: grid;
  gap: .7rem;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 72px;
  padding: .72rem;
}

.ciq-home .ciq-report-panel b {
  align-items: center;
  border: 1px solid rgba(103, 229, 69, .5);
  border-radius: 6px;
  color: var(--ed-accent);
  display: flex;
  font-size: .66rem;
  height: 38px;
  justify-content: center;
  width: 46px;
}

.ciq-home .ciq-report-panel > div span {
  color: var(--ed-text);
  font-size: .8rem;
  font-weight: 600;
  text-transform: none;
}

.ciq-home .ciq-research-band {
  align-items: end;
  background: var(--ed-surface-raised);
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
  display: grid;
  gap: clamp(1rem, 2.5vw, 2.4rem);
  grid-template-columns: minmax(360px, 1.2fr) minmax(260px, .8fr) auto;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.ciq-home .ciq-research-band h2,
.ciq-home .ciq-team-entry h2 {
  color: var(--ed-paper);
  font-family: var(--ed-font);
  font-size: clamp(2.25rem, 3.6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
  margin: 0;
  max-width: 720px;
  text-transform: none;
  text-wrap: balance;
}

.ciq-home .ciq-research-band > p {
  color: #c2c6c0;
  font-size: .88rem;
  line-height: 1.55;
  margin: 0 0 .2rem;
  max-width: 520px;
}

.ciq-home .ciq-research-band > a,
.ciq-home .ciq-team-entry > a {
  align-items: center;
  border: 1px solid rgba(244, 242, 233, .24);
  border-radius: 6px;
  color: var(--ed-paper);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .8rem;
  font-weight: 700;
  gap: .75rem;
  justify-content: center;
  min-height: 42px;
  padding: 0 .9rem;
  white-space: nowrap;
}

.ciq-home .ciq-research-band > a:hover,
.ciq-home .ciq-team-entry > a:hover {
  border-color: rgba(103, 229, 69, .58);
  color: var(--ed-accent);
}

.ciq-home .ciq-team-entry {
  align-items: center;
  border-bottom: 1px solid var(--ed-line);
  border-top: 1px solid var(--ed-line);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(.25rem, 1vw, .8rem);
}

.ciq-home .ciq-team-entry > div > p:last-child {
  color: #c2c6c0;
  font-size: .88rem;
  line-height: 1.55;
  margin: .7rem 0 0;
  max-width: 720px;
}

.ciq-home .ciq-subscribe {
  align-items: center;
  background: var(--ed-surface-raised);
  border: 1px solid var(--ed-line);
  border-top: 2px solid var(--ed-accent);
  border-radius: var(--ed-radius);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2.6rem);
}

.ciq-home .ciq-subscribe h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  margin: .25rem 0 .45rem;
}

.ciq-home .ciq-subscribe p {
  color: #c2c6c0;
  line-height: 1.55;
  margin: 0;
  max-width: 700px;
}

.ciq-home .ciq-subscribe-actions {
  display: flex;
  flex: 0 0 auto;
}

.ciq-home .ciq-subscribe-actions a {
  background: var(--ed-accent);
  border: 1px solid var(--ed-accent);
  border-radius: 6px;
  color: #0b130c;
  font-family: var(--ed-font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 44px;
  padding: .7rem 1rem;
  text-transform: none;
}

/* CourtsideIQ character pass: roomier reading, court cues, and metric identity. */
.global-site-nav {
  gap: clamp(1.15rem, 2.2vw, 2.25rem);
  min-height: 80px;
  padding: .78rem clamp(1.15rem, 2.7vw, 2.8rem);
}

.global-nav-brand img {
  height: 36px;
  width: 188px;
}

.global-nav-brand > span {
  font-size: .68rem;
  padding-left: 47px;
}

.global-nav-menu {
  gap: clamp(.9rem, 1.5vw, 1.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(210px, 285px) auto;
}

.global-nav-links {
  gap: clamp(.78rem, 1.3vw, 1.35rem);
}

.global-nav-links > a,
.global-tools-menu > summary {
  font-size: .84rem;
  padding: 1.05rem 0;
}

body.ciq-home:not(.has-global-nav) .ciq-nav nav a {
  font-size: .86rem;
}

.global-tools-panel {
  gap: .6rem;
  grid-template-columns: repeat(3, minmax(235px, 1fr));
  min-width: 830px;
  padding: .75rem;
  width: min(940px, calc(100vw - 3.5rem));
}

.global-tool-group {
  padding: .35rem .45rem .45rem .85rem;
}

.global-tool-group:first-child {
  padding-left: .45rem;
}

.global-tool-group > p {
  font-size: .72rem;
  margin-bottom: .4rem;
  padding-inline: .85rem;
}

.global-tools-panel a {
  gap: 1.1rem;
  padding: .82rem .85rem;
}

.global-tools-panel b {
  font-size: .92rem;
}

.global-tools-panel em {
  font-size: .77rem;
  line-height: 1.45;
}

.global-tools-panel small {
  font-size: .74rem;
}

.global-player-search input {
  font-size: .84rem;
  padding: .7rem .75rem;
}

.global-player-results a {
  padding: .82rem .88rem;
}

.global-player-results strong {
  font-size: .9rem;
}

.global-player-results span,
.global-player-results p {
  font-size: .77rem;
}

.global-account-link,
.global-admin-link,
.global-subscribe-link {
  font-size: .82rem;
  min-height: 42px;
  padding: .66rem .88rem;
}

body.ciq-home {
  --home-section-gap: clamp(1.6rem, 3.2vw, 3.25rem);
}

.ciq-home .ciq-shell {
  padding: clamp(1.25rem, 2.1vw, 1.9rem) clamp(1.15rem, 2.6vw, 2.5rem) 5rem;
}

.ciq-home .ciq-kicker {
  font-size: .84rem;
  gap: .65rem;
  margin-bottom: 1.05rem;
}

.ciq-home .ciq-hero {
  background:
    linear-gradient(var(--ed-court-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ed-court-line) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49.8%, var(--ed-court-accent) 50%, transparent 50.2%),
    var(--ed-surface);
  background-size: 96px 96px, 96px 96px, 100% 100%, auto;
  grid-template-columns: minmax(430px, .88fr) minmax(590px, 1.12fr);
  min-height: clamp(665px, 47vw, 770px);
}

.ciq-home .ciq-hero::after {
  border: 1px solid rgba(139, 176, 147, .075);
  border-radius: 50%;
  content: "";
  display: block;
  height: min(42vw, 600px);
  left: 52%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(42vw, 600px);
  z-index: 1;
}

.ciq-home .ciq-hero-copy {
  padding: clamp(2.7rem, 5vw, 5.6rem) clamp(2.1rem, 4vw, 4.6rem);
}

.ciq-home .ciq-hero h1 {
  font-size: clamp(4.25rem, 6vw, 7.35rem);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: .97;
}

.ciq-home .ciq-hero p:not(.ciq-kicker) {
  font-size: clamp(1.08rem, 1.25vw, 1.2rem);
  line-height: 1.68;
  margin-top: 1.4rem;
  max-width: 640px;
}

.ciq-home .ciq-hero-metric-pills {
  margin-top: 1.7rem;
  max-width: 510px;
}

.ciq-home .ciq-hero-metric-pills a {
  --metric-color: var(--ed-accent);
  color: var(--metric-color);
  font-size: .76rem;
  height: 45px;
}

.ciq-home .ciq-hero-metric-pills a:nth-child(1) { --metric-color: var(--ed-accent); }
.ciq-home .ciq-hero-metric-pills a:nth-child(2) { --metric-color: var(--ed-purple); }
.ciq-home .ciq-hero-metric-pills a:nth-child(3) { --metric-color: var(--ed-gold); }
.ciq-home .ciq-hero-metric-pills a:nth-child(4) { --metric-color: var(--ed-cyan); }
.ciq-home .ciq-hero-metric-pills a:nth-child(5) { --metric-color: var(--ed-coral); }

.ciq-home .ciq-hero-metric-pills a:hover,
.ciq-home .ciq-hero-metric-pills a:focus-visible {
  background: var(--metric-color);
  color: #0b100d;
}

.ciq-home .ciq-hero-actions {
  gap: .7rem;
  margin-top: 1.35rem;
}

.ciq-home .ciq-hero-actions a {
  font-size: .92rem;
  min-height: 50px;
  padding-inline: 1.2rem;
}

.ciq-home .ciq-hero-proof {
  gap: 1rem;
  margin-top: clamp(2.1rem, 4.5vh, 3.5rem);
  padding-top: 1.05rem;
}

.ciq-home .ciq-hero-proof span {
  font-size: .75rem;
}

.ciq-home .ciq-hero-proof b {
  font-size: 1.3rem;
}

.ciq-home .ciq-hero-stat {
  --metric-color: var(--ed-accent);
  border-left: 3px solid var(--metric-color);
  padding: .76rem .82rem;
}

.ciq-home .ciq-hero-stat span {
  color: var(--metric-color);
  font-size: .74rem;
}

.ciq-home .ciq-hero-stat b {
  color: var(--metric-color);
  font-size: clamp(1.55rem, 2.15vw, 2.2rem);
}

.ciq-home .ciq-hero-stat small {
  font-size: .7rem;
}

.ciq-home .stat-rei { --metric-color: var(--ed-accent); width: 196px; }
.ciq-home .stat-vse { --metric-color: var(--ed-purple); }
.ciq-home .stat-piv { --metric-color: var(--ed-gold); }
.ciq-home .stat-pfe { --metric-color: var(--ed-cyan); }
.ciq-home .stat-cvr { --metric-color: var(--ed-coral); }

.ciq-home .stat-rei b {
  font-size: clamp(2.75rem, 3.7vw, 3.85rem);
}

.ciq-home .ciq-visual-strip {
  margin-top: .9rem;
}

.ciq-home .ciq-visual-strip > article {
  --metric-color: var(--ed-accent);
  border-top: 3px solid var(--metric-color);
}

.ciq-home #visual-rei-card { --metric-color: var(--ed-accent); }
.ciq-home #visual-vse-card { --metric-color: var(--ed-purple); }
.ciq-home #visual-piv-card { --metric-color: var(--ed-gold); }
.ciq-home #visual-pfe-card { --metric-color: var(--ed-cyan); }
.ciq-home #visual-cvr-card { --metric-color: var(--ed-coral); }

.ciq-home .ciq-visual-card,
.ciq-home .ciq-visual-card.purple,
.ciq-home .ciq-visual-card.blue,
.ciq-home .ciq-visual-card.gold,
.ciq-home .ciq-visual-card.cyan {
  height: 178px;
  padding: .95rem .45rem .95rem 1rem;
}

.ciq-home .visual-photo span {
  border-color: var(--metric-color);
  color: var(--metric-color);
  font-size: 1.1rem;
  height: 66px;
  width: 66px;
}

.ciq-home .ciq-visual-card span,
.ciq-home .ciq-visual-card small {
  font-size: .73rem;
}

.ciq-home .ciq-visual-card span,
.ciq-home .ciq-visual-card strong {
  color: var(--metric-color);
}

.ciq-home .ciq-visual-card h3 {
  font-size: 1.05rem;
  line-height: 1.16;
  margin-block: .35rem;
}

.ciq-home .ciq-visual-card strong {
  font-size: clamp(1.75rem, 2.15vw, 2.25rem);
}

.ciq-home .ciq-product-directory,
.ciq-home .ciq-role-map-section,
.ciq-home .ciq-leaderboards,
.ciq-home .ciq-home-bottom,
.ciq-home .ciq-research-band,
.ciq-home .ciq-subscribe {
  margin-top: var(--home-section-gap);
}

.ciq-home .ciq-section-heading {
  background:
    linear-gradient(var(--ed-court-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ed-court-line) 1px, transparent 1px),
    var(--ed-surface);
  background-size: 84px 84px, 84px 84px, auto;
  border: 1px solid var(--ed-line);
  border-left: 3px solid var(--ed-accent);
  border-radius: var(--ed-radius);
  margin-bottom: 1.2rem;
  padding: 1.35rem 1.45rem;
}

.ciq-home .ciq-section-heading h2,
.ciq-home .ciq-role-map-heading h2,
.ciq-home .ciq-leaderboards > h2,
.ciq-home .ciq-bottom-heading h2,
.ciq-home .ciq-subscribe h2 {
  font-size: clamp(2.9rem, 4.7vw, 5.2rem);
  line-height: 1.02;
}

.ciq-home .ciq-section-heading > p,
.ciq-home .ciq-role-map-heading p:last-child {
  font-size: 1.06rem;
  line-height: 1.65;
}

.ciq-home .ciq-product-groups {
  gap: .9rem;
}

.ciq-home .ciq-product-group {
  --section-accent: var(--ed-accent);
  border-top: 3px solid var(--section-accent);
  min-height: 345px;
  padding: 1.3rem;
}

.ciq-home .ciq-product-group:nth-child(2) { --section-accent: var(--ed-cyan); }
.ciq-home .ciq-product-group:nth-child(3) { --section-accent: var(--ed-gold); }

.ciq-home .ciq-product-index,
.ciq-home .ciq-product-links span {
  color: var(--section-accent);
}

.ciq-home .ciq-product-index {
  font-size: .8rem;
  margin-bottom: 1.5rem;
}

.ciq-home .ciq-product-label {
  font-size: .78rem;
}

.ciq-home .ciq-product-group h3 {
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: .82rem;
}

.ciq-home .ciq-product-group > p:not(.ciq-product-label) {
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.ciq-home .ciq-product-links a {
  font-size: .86rem;
  min-height: 44px;
}

.ciq-home .ciq-role-map-section {
  background:
    linear-gradient(var(--ed-court-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ed-court-line) 1px, transparent 1px),
    var(--ed-surface);
  background-size: 110px 110px, 110px 110px, auto;
  border-top: 3px solid var(--ed-sage);
  padding: clamp(1.25rem, 2.3vw, 1.85rem);
}

.ciq-home .ciq-role-map-controls {
  gap: .5rem;
  margin-block: 1.35rem;
}

.ciq-home .ciq-role-map-controls button,
.ciq-home .ciq-role-pills a {
  font-size: .8rem;
}

.ciq-home .ciq-role-map-controls button {
  min-height: 40px;
  padding-inline: .85rem;
}

.ciq-home .ciq-role-map-controls small {
  font-size: .72rem;
}

.ciq-home .ciq-role-map-shell {
  gap: 1rem;
  grid-template-columns: minmax(570px, 1fr) 330px;
  min-height: 540px;
}

.ciq-home .ciq-role-map-stage {
  background:
    linear-gradient(rgba(244, 242, 233, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 233, .035) 1px, transparent 1px),
    var(--ed-bg);
  background-size: 64px 64px, 64px 64px, auto;
  min-height: 540px;
}

.ciq-home .ciq-map-dot {
  --role-color: var(--ed-sage);
  background: var(--ed-surface-raised);
  border-color: var(--role-color);
  color: var(--role-color);
  font-size: .62rem;
}

.ciq-home .ciq-map-dot.creator { --role-color: var(--ed-accent); }
.ciq-home .ciq-map-dot.defender { --role-color: var(--ed-cyan); }
.ciq-home .ciq-map-dot.two-way { --role-color: var(--ed-gold); }
.ciq-home .ciq-map-dot.scorer { --role-color: var(--ed-purple); }
.ciq-home .ciq-map-dot.big { --role-color: var(--ed-sage); }
.ciq-home .ciq-map-dot.other { --role-color: var(--ed-coral); }

.ciq-home .ciq-role-map-card {
  min-height: 540px;
  padding: 1.2rem;
}

.ciq-home .ciq-role-map-card > span {
  font-size: .8rem;
  margin-bottom: .9rem;
}

.ciq-home .ciq-role-map-card > div {
  gap: .85rem;
  grid-template-columns: 66px minmax(0, 1fr);
}

.ciq-home .ciq-role-map-card img,
.ciq-home .ciq-role-map-card > div > b {
  font-size: 1.1rem;
  height: 66px;
  width: 66px;
}

.ciq-home .ciq-role-map-card h3 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.ciq-home .ciq-role-map-card p {
  font-size: .94rem;
  line-height: 1.62;
  margin-block: 1rem;
}

.ciq-home .ciq-role-map-card dl {
  gap: .5rem;
  margin-block: 1.05rem;
}

.ciq-home .ciq-role-map-card dl div {
  --metric-color: var(--ed-accent);
  border-top: 2px solid var(--metric-color);
  padding: .68rem;
}

.ciq-home .ciq-role-map-card dl div:nth-child(1) { --metric-color: var(--ed-accent); }
.ciq-home .ciq-role-map-card dl div:nth-child(2) { --metric-color: var(--ed-purple); }
.ciq-home .ciq-role-map-card dl div:nth-child(3) { --metric-color: var(--ed-gold); }
.ciq-home .ciq-role-map-card dl div:nth-child(4) { --metric-color: var(--ed-cyan); }
.ciq-home .ciq-role-map-card dl div:nth-child(5) { --metric-color: var(--ed-coral); }

.ciq-home .ciq-role-map-card dt {
  font-size: .72rem;
}

.ciq-home .ciq-role-map-card dd {
  color: var(--metric-color);
  font-size: 1.2rem;
}

.ciq-home .ciq-role-map-card a {
  font-size: .86rem;
  min-height: 46px;
}

.ciq-home .ciq-map-axis,
.ciq-home .ciq-map-label {
  font-size: .72rem;
}

.ciq-home .ciq-board-layout {
  gap: .9rem;
  grid-template-columns: minmax(690px, 1.35fr) minmax(420px, .65fr);
}

.ciq-home .ciq-rei-board,
.ciq-home .ciq-mini-board {
  padding: 1.1rem;
}

.ciq-home .ciq-rei-board {
  border-top: 3px solid var(--ed-accent);
}

.ciq-home .ciq-rei-board h3,
.ciq-home .ciq-mini-board h3 {
  font-size: 1.02rem;
  margin-bottom: .78rem;
}

.ciq-home .ciq-rei-board header a,
.ciq-home .ciq-mini-board h3 small {
  font-size: .76rem;
}

.ciq-home .ciq-rei-board th,
.ciq-home .ciq-rei-board td {
  font-size: .86rem;
  padding: .58rem .38rem;
}

.ciq-home .ciq-rei-board th {
  font-size: .73rem;
}

.ciq-home .ciq-side-boards {
  gap: .9rem;
}

.ciq-home .ciq-mini-board {
  --metric-color: var(--ed-accent);
  border-top: 3px solid var(--metric-color);
}

.ciq-home .ciq-mini-board:nth-child(1) { --metric-color: var(--ed-cyan); }
.ciq-home .ciq-mini-board:nth-child(2) { --metric-color: var(--ed-coral); }
.ciq-home .ciq-mini-board:nth-child(3) { --metric-color: var(--ed-gold); }
.ciq-home .ciq-mini-board:nth-child(4) { --metric-color: var(--ed-purple); }

/* The list IDs retain metric identity if the cards are reordered. */
.ciq-home .ciq-mini-board:has(#def-watch) { --metric-color: var(--ed-cyan); }
.ciq-home .ciq-mini-board:has(#cvr-watch) { --metric-color: var(--ed-coral); }
.ciq-home .ciq-mini-board:has(#piv-watch) { --metric-color: var(--ed-gold); }
.ciq-home .ciq-mini-board:has(#vse-watch) { --metric-color: var(--ed-purple); }

.ciq-home .ciq-mini-board h3 small,
.ciq-home .ciq-mini-board li b {
  color: var(--metric-color);
}

.ciq-home .ciq-mini-board li a {
  min-height: 36px;
  padding-inline: .22rem;
}

.ciq-home .ciq-mini-board li span,
.ciq-home .ciq-mini-board li b,
.ciq-home .ciq-mini-board .ciq-empty-row {
  font-size: .84rem;
}

.ciq-home .ciq-insight-cards {
  gap: .9rem;
  margin-bottom: var(--home-section-gap);
}

.ciq-home .ciq-story-card {
  --metric-color: var(--ed-accent);
  border-top: 3px solid var(--metric-color);
  min-height: 330px;
  padding: 1.2rem;
}

.ciq-home .ciq-story-card.purple { --metric-color: var(--ed-purple); }
.ciq-home .ciq-story-card.gold { --metric-color: var(--ed-gold); }
.ciq-home .ciq-story-card.blue { --metric-color: var(--ed-coral); }
.ciq-home .ciq-story-card.cyan { --metric-color: var(--ed-cyan); }

.ciq-home .ciq-story-card:hover {
  border-color: var(--metric-color);
}

.ciq-home .ciq-story-thumb {
  border-color: var(--metric-color);
  height: 78px;
  width: 78px;
}

.ciq-home .ciq-story-thumb img {
  height: 100px;
  width: 100px;
}

.ciq-home .ciq-story-card span,
.ciq-home .ciq-story-card b {
  color: var(--metric-color);
}

.ciq-home .ciq-story-card span {
  font-size: .76rem;
}

.ciq-home .ciq-story-card h3 {
  font-size: 1.16rem;
  line-height: 1.24;
  margin-block: .65rem .75rem;
}

.ciq-home .ciq-insight-cards p {
  font-size: .88rem;
  line-height: 1.62;
}

.ciq-home .ciq-story-card small {
  font-size: .71rem;
}

.ciq-home .ciq-story-card b {
  font-size: .76rem;
  margin-top: .55rem;
}

.ciq-home .ciq-metric-system article {
  --metric-color: var(--ed-accent);
  border-top: 3px solid var(--metric-color);
  min-height: 195px;
  padding: 1.2rem;
}

.ciq-home .ciq-metric-system article:nth-child(1) { --metric-color: var(--ed-accent); }
.ciq-home .ciq-metric-system article:nth-child(2) { --metric-color: var(--ed-purple); }
.ciq-home .ciq-metric-system article:nth-child(3) { --metric-color: var(--ed-coral); }
.ciq-home .ciq-metric-system article:nth-child(4) { --metric-color: var(--ed-gold); }
.ciq-home .ciq-metric-system article:nth-child(5) { --metric-color: var(--ed-cyan); }
.ciq-home .ciq-metric-system article:nth-child(6) { --metric-color: var(--ed-sage); }

.ciq-home .ciq-metric-system i,
.ciq-home .ciq-metric-system h3 {
  border-color: var(--metric-color);
  color: var(--metric-color);
}

.ciq-home .ciq-metric-system i {
  font-size: .74rem;
  height: 34px;
}

.ciq-home .ciq-metric-system h3 {
  font-size: .92rem;
}

.ciq-home .ciq-metric-system p {
  font-size: .88rem;
  line-height: 1.62;
}

.ciq-home .ciq-research-band,
.ciq-home .ciq-team-entry {
  background:
    linear-gradient(var(--ed-court-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ed-court-line) 1px, transparent 1px),
    var(--ed-surface-raised);
  background-size: 88px 88px, 88px 88px, auto;
  border: 1px solid var(--ed-line);
  border-radius: var(--ed-radius);
}

.ciq-home .ciq-research-band {
  border-left: 3px solid var(--ed-sage);
  padding: clamp(1.45rem, 2.8vw, 2.35rem);
}

.ciq-home .ciq-team-entry {
  border-left: 3px solid var(--ed-cyan);
  margin-top: 1.4rem;
  padding: clamp(1.8rem, 3.4vw, 3rem) clamp(1.35rem, 2.5vw, 2.25rem);
}

.ciq-home .ciq-research-band h2,
.ciq-home .ciq-team-entry h2 {
  font-size: clamp(2.55rem, 3.9vw, 4.2rem);
  line-height: 1.04;
}

.ciq-home .ciq-research-band > p,
.ciq-home .ciq-team-entry > div > p:last-child {
  font-size: .97rem;
  line-height: 1.65;
}

.ciq-home .ciq-research-band > a,
.ciq-home .ciq-team-entry > a {
  font-size: .88rem;
  min-height: 48px;
  padding-inline: 1.05rem;
}

.ciq-home .ciq-subscribe {
  gap: 2.4rem;
  padding: clamp(1.7rem, 3.4vw, 3.1rem);
}

.ciq-home .ciq-subscribe p {
  font-size: 1.02rem;
  line-height: 1.65;
}

.ciq-home .ciq-subscribe-actions a {
  font-size: .9rem;
  min-height: 50px;
  padding-inline: 1.2rem;
}

@media (max-width: 1360px) {
  .global-site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .global-nav-toggle {
    display: block;
  }

  .global-nav-menu {
    align-items: stretch;
    background: var(--ed-bg);
    border-top: 1px solid var(--ed-line);
    display: none;
    gap: .8rem;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    margin: 0 clamp(-2.5rem, -2.5vw, -1rem) -.65rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: .85rem clamp(1rem, 2.5vw, 2.5rem) 1rem;
  }

  .global-nav-menu.is-open {
    display: grid;
  }

  .global-nav-links {
    align-items: stretch;
    display: grid;
    gap: .4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .global-tools-menu[open] {
    grid-column: 1 / -1;
  }

  .global-nav-links > a,
  .global-tools-menu > summary {
    background: var(--ed-surface);
    border: 1px solid var(--ed-line);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    padding: .7rem;
    text-align: center;
    white-space: normal;
  }

  .global-nav-links > a.active::after,
  .global-tools-menu.active > summary::after {
    bottom: 0;
    left: 24%;
    right: 24%;
  }

  .global-tools-panel {
    box-shadow: none;
    gap: .35rem;
    grid-template-columns: 1fr;
    left: 0;
    margin-top: .35rem;
    min-width: 0;
    position: static;
    transform: none;
    width: 100%;
  }

  .global-tool-group,
  .global-tool-group:first-child {
    border-left: 0;
    border-top: 1px solid var(--ed-line);
    padding: .65rem .25rem .2rem;
  }

  .global-tool-group:first-child {
    border-top: 0;
    padding-top: .25rem;
  }

  .global-player-search {
    min-height: 42px;
    width: 100%;
  }

  .global-account-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .ciq-home .ciq-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ciq-home .ciq-hero-copy {
    padding: clamp(2rem, 6vw, 4.5rem);
  }

  .ciq-home .ciq-hero h1 {
    max-width: 10ch;
  }

  .ciq-home .ciq-hero-visual {
    border-left: 0;
    border-top: 1px solid var(--ed-line);
    min-height: 600px;
  }

  .ciq-home .ciq-role-map-heading,
  .ciq-home .ciq-role-map-shell,
  .ciq-home .ciq-board-layout,
  .ciq-home .ciq-report-panel {
    grid-template-columns: 1fr;
  }

  .ciq-home .ciq-role-map-heading p:last-child {
    justify-self: start;
  }

  .ciq-home .ciq-role-map-card {
    min-height: 0;
  }

  .ciq-home .ciq-role-map-card dl {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ciq-home .ciq-visual-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ciq-home .ciq-visual-strip > article {
    border-bottom: 1px solid var(--ed-line);
  }

  .ciq-home .ciq-visual-strip > article:nth-child(3n) {
    border-right: 0;
  }

  .ciq-home .ciq-visual-strip > article:last-child {
    border-right: 0;
  }

  .ciq-home .ciq-insight-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ciq-home .ciq-metric-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ciq-home .ciq-research-band {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .ciq-home .ciq-research-band > a {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .ciq-home .ciq-section-heading,
  .ciq-home .ciq-product-groups {
    grid-template-columns: 1fr;
  }

  .ciq-home .ciq-section-heading > p {
    justify-self: start;
  }

  .ciq-home .ciq-product-group {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    font-size: 15px;
  }

  .global-site-nav {
    grid-template-columns: minmax(0, 1fr) auto !important;
    min-height: 62px;
    padding: .55rem .75rem !important;
  }

  .global-nav-brand img {
    height: 29px;
    width: 148px;
  }

  .global-nav-brand > span {
    display: none;
  }

  .global-nav-menu {
    grid-template-columns: 1fr !important;
    margin: 0 -.75rem -.55rem !important;
    max-height: calc(100vh - 62px);
    padding: .75rem !important;
  }

  .global-nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .global-account-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .global-subscribe-link {
    grid-column: 1 / -1;
  }

  body.ciq-home:not(.has-global-nav) > .ciq-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: .55rem .75rem;
  }

  body.ciq-home:not(.has-global-nav) .ciq-nav nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .ciq-home .ciq-shell {
    max-width: 100%;
    overflow-x: hidden;
    padding: .75rem .75rem 3rem !important;
    width: 100%;
  }

  .ciq-home .ciq-hero {
    gap: 0;
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 0 !important;
  }

  .ciq-home .ciq-hero-copy {
    padding: 1.8rem 1.15rem;
  }

  .ciq-home .ciq-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.25rem) !important;
    line-height: .97;
    max-width: 10ch;
    overflow-wrap: normal;
  }

  .ciq-home .ciq-hero p:not(.ciq-kicker) {
    font-size: .94rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .ciq-home .ciq-hero-metric-pills {
    max-width: none;
    width: 100%;
  }

  .ciq-home .ciq-hero-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .ciq-home .ciq-hero-actions a {
    justify-content: center;
    width: 100%;
  }

  .ciq-home .ciq-hero-proof {
    margin-top: 1.6rem;
  }

  .ciq-home .ciq-hero-visual {
    min-height: 520px;
  }

  .ciq-home .ciq-hero-stage {
    height: 520px !important;
    min-height: 520px !important;
  }

  .ciq-home .ciq-feature-art {
    bottom: 0;
    height: 100%;
    width: min(148vw, 680px);
  }

  .ciq-home .ciq-feature-art img {
    height: 96%;
    max-height: none;
    object-position: center bottom;
    transform: none;
  }

  .ciq-home .ciq-feature-badge {
    font-size: .64rem;
    max-width: 142px;
    right: .65rem;
    top: .65rem;
  }

  .ciq-home .ciq-hero-stat {
    max-width: none;
    padding: .52rem .56rem;
  }

  .ciq-home .ciq-hero-stat b {
    font-size: 1.35rem;
  }

  .ciq-home .stat-rei {
    left: .65rem;
    top: .65rem;
    width: 142px;
  }

  .ciq-home .stat-rei b {
    font-size: 2.35rem;
  }

  .ciq-home .stat-pfe,
  .ciq-home .stat-piv,
  .ciq-home .stat-vse,
  .ciq-home .stat-cvr {
    width: calc(50% - .95rem);
  }

  .ciq-home .stat-pfe {
    bottom: 5.15rem;
    left: .65rem;
  }

  .ciq-home .stat-piv {
    bottom: 5.15rem;
    left: auto;
    right: .65rem;
  }

  .ciq-home .stat-vse {
    bottom: .65rem;
    left: .65rem;
    right: auto;
  }

  .ciq-home .stat-cvr {
    bottom: .65rem;
    right: .65rem;
  }

  .ciq-home .ciq-visual-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ciq-home .ciq-visual-strip > article,
  .ciq-home .ciq-visual-strip > article:nth-child(3n) {
    border-right: 1px solid var(--ed-line);
  }

  .ciq-home .ciq-visual-strip > article:nth-child(2n) {
    border-right: 0;
  }

  .ciq-home .ciq-visual-strip > article:last-child {
    border-bottom: 0;
    grid-column: 1 / -1;
  }

  .ciq-home .ciq-role-map-heading,
  .ciq-home .ciq-explainer,
  .ciq-home .ciq-bottom-heading,
  .ciq-home .ciq-report-panel,
  .ciq-home .ciq-metric-system {
    grid-template-columns: 1fr !important;
  }

  .ciq-home .ciq-role-map-heading h2,
  .ciq-home .ciq-explainer > h2,
  .ciq-home .ciq-leaderboards > h2,
  .ciq-home .ciq-bottom-heading h2,
  .ciq-home .ciq-subscribe h2,
  .ciq-home .ciq-report-panel article h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
    line-height: 1;
    text-align: left;
  }

  .ciq-home .ciq-section-heading h2,
  .ciq-home .ciq-research-band h2,
  .ciq-home .ciq-team-entry h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1;
  }

  .ciq-home .ciq-explainer > h2 {
    grid-column: auto;
  }

  .ciq-home .ciq-role-map-stage {
    min-height: 370px !important;
  }

  .ciq-home .ciq-role-map-card {
    min-height: 0 !important;
  }

  .ciq-home .ciq-role-map-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ciq-home .ciq-map-axis,
  .ciq-home .ciq-map-label {
    display: none;
  }

  .ciq-home .ciq-side-boards {
    grid-template-columns: 1fr !important;
  }

  .ciq-home .ciq-rei-board {
    overflow-x: auto;
  }

  .ciq-home .ciq-rei-board table {
    min-width: 650px;
  }

  .ciq-home .ciq-insight-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ciq-home .ciq-team-entry {
    align-items: stretch;
    flex-direction: column;
  }

  .ciq-home .ciq-team-entry > a,
  .ciq-home .ciq-research-band > a {
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
  }

  .ciq-home .ciq-subscribe {
    align-items: stretch;
    flex-direction: column;
  }

  .ciq-home .ciq-subscribe-actions,
  .ciq-home .ciq-subscribe-actions a {
    width: 100%;
  }

  .ciq-home .ciq-subscribe-actions a {
    align-items: center;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .global-nav-links,
  .global-account-actions {
    grid-template-columns: 1fr !important;
  }

  .global-subscribe-link {
    grid-column: auto;
  }

  .ciq-home .ciq-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.45rem) !important;
  }

  .ciq-home .ciq-hero-metric-pills a {
    font-size: .62rem;
    height: 38px;
  }

  .ciq-home .ciq-hero-proof {
    gap: .45rem;
  }

  .ciq-home .ciq-hero-proof span {
    font-size: .61rem;
  }

  .ciq-home .ciq-hero-visual,
  .ciq-home .ciq-hero-stage {
    height: 470px !important;
    min-height: 470px !important;
  }

  .ciq-home .ciq-feature-art {
    width: min(162vw, 650px);
  }

  .ciq-home .ciq-hero-stat small {
    display: none;
  }

  .ciq-home .stat-pfe,
  .ciq-home .stat-piv {
    bottom: 3.95rem;
  }

  .ciq-home .ciq-visual-strip,
  .ciq-home .ciq-insight-cards,
  .ciq-home .ciq-stats {
    grid-template-columns: 1fr !important;
  }

  .ciq-home .ciq-visual-strip > article,
  .ciq-home .ciq-visual-strip > article:nth-child(2n),
  .ciq-home .ciq-visual-strip > article:nth-child(3n) {
    border-bottom: 1px solid var(--ed-line);
    border-right: 0;
    grid-column: auto;
  }

  .ciq-home .ciq-visual-strip > article:last-child {
    border-bottom: 0;
  }

  .ciq-home .ciq-visual-card,
  .ciq-home .ciq-visual-card.purple,
  .ciq-home .ciq-visual-card.blue,
  .ciq-home .ciq-visual-card.gold,
  .ciq-home .ciq-visual-card.cyan {
    height: 132px;
    grid-template-columns: minmax(0, 1fr) 110px;
  }

  .ciq-home .ciq-role-map-stage {
    min-height: 330px !important;
  }

  .ciq-home .ciq-role-map-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ciq-home .ciq-role-map-section,
  .ciq-home .ciq-rei-board,
  .ciq-home .ciq-mini-board,
  .ciq-home .ciq-report-panel {
    border-radius: 8px;
  }
}

@media (max-width: 760px) {
  html {
    font-size: 16px;
    scroll-padding-top: 74px;
  }

  body {
    font-size: 1rem;
    line-height: 1.62;
  }

  .global-site-nav {
    min-height: 68px;
    padding: .65rem .8rem !important;
  }

  .global-nav-brand img {
    height: 32px;
    width: 166px;
  }

  .global-nav-menu {
    margin: 0 -.8rem -.65rem !important;
    max-height: calc(100vh - 68px);
    padding: .85rem !important;
  }

  .global-nav-links > a,
  .global-tools-menu > summary {
    font-size: .88rem;
    padding: .82rem;
  }

  .global-tool-group > p {
    font-size: .76rem;
  }

  .global-tools-panel a {
    padding: .88rem;
  }

  .global-tools-panel b {
    font-size: .96rem;
  }

  .global-tools-panel em,
  .global-tools-panel small {
    font-size: .8rem;
  }

  .global-account-link,
  .global-admin-link,
  .global-subscribe-link {
    font-size: .86rem;
    min-height: 46px;
  }

  .ciq-home .ciq-shell {
    padding: .9rem .8rem 3.6rem !important;
  }

  .ciq-home .ciq-hero-copy {
    padding: 2.1rem 1.3rem;
  }

  .ciq-home .ciq-hero h1 {
    font-size: clamp(3.05rem, 13.5vw, 4.55rem) !important;
    line-height: 1;
  }

  .ciq-home .ciq-hero p:not(.ciq-kicker) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .ciq-home .ciq-kicker {
    font-size: .82rem;
  }

  .ciq-home .ciq-hero-metric-pills a {
    font-size: .73rem;
    height: 44px;
  }

  .ciq-home .ciq-hero-actions a {
    font-size: .92rem;
    min-height: 50px;
  }

  .ciq-home .ciq-hero-proof span {
    font-size: .68rem;
  }

  .ciq-home .ciq-hero-proof b {
    font-size: 1.2rem;
  }

  .ciq-home .ciq-hero-visual,
  .ciq-home .ciq-hero-stage {
    height: 550px !important;
    min-height: 550px !important;
  }

  .ciq-home .ciq-hero-stat {
    padding: .58rem .62rem;
  }

  .ciq-home .ciq-hero-stat span {
    font-size: .7rem;
  }

  .ciq-home .ciq-hero-stat b {
    font-size: 1.48rem;
  }

  .ciq-home .ciq-hero-stat small {
    font-size: .66rem;
  }

  .ciq-home .stat-rei {
    width: 154px;
  }

  .ciq-home .stat-rei b {
    font-size: 2.55rem;
  }

  .ciq-home .stat-pfe,
  .ciq-home .stat-piv {
    bottom: 5.7rem;
  }

  .ciq-home .ciq-section-heading {
    padding: 1.15rem;
  }

  .ciq-home .ciq-section-heading h2,
  .ciq-home .ciq-role-map-heading h2,
  .ciq-home .ciq-leaderboards > h2,
  .ciq-home .ciq-bottom-heading h2,
  .ciq-home .ciq-subscribe h2,
  .ciq-home .ciq-research-band h2,
  .ciq-home .ciq-team-entry h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.55rem) !important;
  }

  .ciq-home .ciq-section-heading > p,
  .ciq-home .ciq-role-map-heading p:last-child,
  .ciq-home .ciq-research-band > p,
  .ciq-home .ciq-team-entry > div > p:last-child,
  .ciq-home .ciq-subscribe p {
    font-size: .98rem;
  }

  .ciq-home .ciq-product-group {
    padding: 1.2rem;
  }

  .ciq-home .ciq-product-group > p:not(.ciq-product-label) {
    font-size: .96rem;
  }

  .ciq-home .ciq-role-map-stage {
    min-height: 390px !important;
  }

  .ciq-home .ciq-role-map-card {
    padding: 1.05rem;
  }

  .ciq-home .ciq-role-map-card p {
    font-size: .95rem;
  }

  .ciq-home .ciq-rei-board table {
    min-width: 720px;
  }

  .ciq-home .ciq-insight-cards p,
  .ciq-home .ciq-story-card h3 {
    font-size: .98rem;
  }

  .ciq-home .ciq-research-band,
  .ciq-home .ciq-team-entry,
  .ciq-home .ciq-subscribe {
    padding: 1.35rem;
  }
}

@media (min-width: 761px) and (max-width: 1240px) {
  .ciq-home .ciq-hero-visual {
    min-height: 650px;
  }
}

@media (max-width: 520px) {
  .ciq-home .ciq-hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 3.7rem) !important;
  }

  .ciq-home .ciq-hero-metric-pills {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ciq-home .ciq-hero-metric-pills a {
    font-size: .72rem;
    grid-column: span 2;
    height: 42px;
  }

  .ciq-home .ciq-hero-metric-pills a:nth-child(3) {
    border-right: 0;
  }

  .ciq-home .ciq-hero-metric-pills a:nth-child(n + 4) {
    border-top: 1px solid var(--ed-line);
    grid-column: span 3;
  }

  .ciq-home .ciq-hero-metric-pills a:last-child {
    border-right: 0;
  }

  .ciq-home .ciq-hero-proof span {
    font-size: .67rem;
  }

  .ciq-home .ciq-hero-visual,
  .ciq-home .ciq-hero-stage {
    height: 500px !important;
    min-height: 500px !important;
  }

  .ciq-home .stat-pfe,
  .ciq-home .stat-piv {
    bottom: 4.35rem;
  }

  .ciq-home .ciq-visual-card,
  .ciq-home .ciq-visual-card.purple,
  .ciq-home .ciq-visual-card.blue,
  .ciq-home .ciq-visual-card.gold,
  .ciq-home .ciq-visual-card.cyan {
    height: 152px;
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .ciq-home .ciq-role-map-stage {
    min-height: 350px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Final composition pass: keep the featured player visually present, not sunk below the fold. */
.global-nav-brand {
  align-items: center;
}

.global-nav-brand img {
  height: 44px;
  width: 224px;
}

@media (min-width: 761px) {
  .ciq-home .ciq-feature-art img {
    height: 100%;
    transform: translateY(-4%) scale(1.62);
    transform-origin: center bottom;
  }
}

@media (max-width: 760px) {
  .global-nav-brand img {
    height: 36px;
    width: 184px;
  }

  .ciq-home .ciq-feature-art img {
    height: 100%;
    transform: translateY(-3%) scale(1.34);
    transform-origin: center bottom;
  }
}
