/*
 * Invoice Crowd — experience layout (ic-x-*).
 *
 * Light theme. Loaded only on pages composed from ic-x-* sections; everything
 * is namespaced under .icx / .icx-page so live-clone pages stay untouched.
 * Colour, spacing, radius and font values resolve through design/tokens.css.
 */

/* ── Layer tokens ──────────────────────────────────────────────────────── */

.icx-page {
  --icx-violet: var(--color-primary);
  --icx-violet-lift: #6C57FF;
  --icx-violet-soft: #8B79FF;
  --icx-violet-wash: #F1EEFF;
  --icx-mint: #0FA98F;
  --icx-amber: #C97F00;
  --icx-rose: #E0244B;
  --icx-sky: #1180D6;

  --icx-surface: #FFFFFF;
  --icx-surface-2: #F8F7FF;
  --icx-surface-3: #F1EFFC;

  --icx-fg: #141133;
  --icx-fg-dim: #56517A;
  --icx-fg-faint: #8681A6;
  --icx-hairline: rgba(20, 17, 51, 0.09);
  --icx-hairline-strong: rgba(20, 17, 51, 0.16);

  --icx-shadow-sm: 0 10px 30px -18px rgba(20, 17, 51, 0.4);
  --icx-shadow-md: 0 24px 56px -32px rgba(20, 17, 51, 0.45);
  --icx-shadow-lg: 0 44px 90px -46px rgba(20, 17, 51, 0.5);

  --icx-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --icx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --icx-shell: min(1280px, calc(100% - 3rem));
  --icx-section-y: clamp(5rem, 8vw, 8.5rem);

  --icx-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

/* ScrollTrigger pinning and CSS smooth-scroll fight each other. */
.icx-page,
html:has(.icx-page) {
  scroll-behavior: auto;
}

body.icx-page {
  background: var(--icx-surface);
  color: var(--icx-fg);
  overflow-x: clip;
}

.icx-page .vibe-main {
  overflow: clip;
}

.icx-page .container-xl {
  width: var(--icx-shell);
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.icx {
  position: relative;
  isolation: isolate;
}

/* ── Chrome: transparent over the hero, white glass once sticky ────────── */

/*
 * Every rule here assumes the light ic-x hero underneath. A page that mixes an
 * ic-x section into a v3 document — the comparison and alternative pages carry
 * ic-x-compare inside an otherwise v3 layout — gets both body classes, and this
 * block then painted dark navigation and an indigo Register button over the
 * v3 violet gradient. `:not(.icv3-page)` hands those pages back to the v3
 * chrome, which is what their hero is drawn for.
 */

.icx-page:not(.icv3-page) .ic-live-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1200;
  background: transparent;
  box-shadow: none;
}

.icx-page:not(.icv3-page) .ic-live-header.is-sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 var(--icx-hairline), 0 18px 44px -28px rgba(20, 17, 51, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
}

.icx-page:not(.icv3-page) .ic-live-nav__link,
.icx-page:not(.icv3-page) .ic-live-nav__menu-toggle,
.icx-page:not(.icv3-page) .ic-live-header__brand-text,
.icx-page:not(.icv3-page) .ic-live-nav__link:hover,
.icx-page:not(.icv3-page) .ic-live-nav__link:focus-visible,
.icx-page:not(.icv3-page) .ic-live-nav__link.is-current {
  color: var(--icx-fg);
}

.icx-page:not(.icv3-page) .ic-live-header__mobile-action,
.icx-page:not(.icv3-page) .ic-live-header__hamburger span {
  color: var(--icx-fg);
}

/* Login reads as the quiet action; Register carries the brand gradient. */
.icx-page:not(.icv3-page) .ic-live-header__action--login {
  border: 1px solid var(--icx-hairline-strong);
  background: transparent;
  box-shadow: none;
  color: var(--icx-fg);
}

.icx-page:not(.icv3-page) .ic-live-header__action--login:hover,
.icx-page:not(.icv3-page) .ic-live-header__action--login:focus-visible {
  border-color: var(--icx-violet);
  background: var(--icx-violet-wash);
  box-shadow: none;
  color: var(--icx-violet);
}

.icx-page:not(.icv3-page) .ic-live-header__action--register {
  background: linear-gradient(120deg, var(--icx-violet-lift), var(--icx-violet));
  box-shadow: 0 12px 26px -10px rgba(73, 65, 227, 0.6);
}

.icx-page:not(.icv3-page) .ic-live-header__action--register:hover,
.icx-page:not(.icv3-page) .ic-live-header__action--register:focus-visible {
  box-shadow: 0 18px 34px -12px rgba(73, 65, 227, 0.7);
}

/* ── Primitives ────────────────────────────────────────────────────────── */

.icx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.35rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border: 1px solid var(--icx-hairline);
  border-radius: var(--radius-pill);
  background: var(--icx-surface);
  box-shadow: var(--icx-shadow-sm);
  color: var(--icx-fg-dim);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.icx-eyebrow__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--icx-mint);
  box-shadow: 0 0 0 4px rgba(15, 169, 143, 0.14);
}

.icx-eyebrow__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--icx-mint);
  border-radius: 50%;
  opacity: 0.5;
  animation: icx-ping 2.6s var(--icx-ease-out) infinite;
}

@keyframes icx-ping {
  0% { transform: scale(0.65); opacity: 0.6; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}

.icx-section-title {
  margin: 0 0 1.1rem;
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.07;
  text-wrap: balance;
}

.icx-section-lead {
  max-width: 46ch;
  margin: 0;
  color: var(--icx-fg-dim);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.7;
}

/* The gradient lives on the element AND on each split word: a word wrapper
 * with overflow:hidden ends the parent's background-clip:text region, so the
 * words must paint their own slice. ic-x.js sizes and offsets those slices so
 * the ramp stays continuous across the line. */
.icx-gradient-text,
.icx-gradient-text .icx-word__inner {
  background-image: linear-gradient(100deg, #5B4BE8 0%, #7C4DFF 40%, #0FA98F 98%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Word-level reveal wrappers written by ic-x.js. */
.icx-word {
  display: inline-block;
  /* The clip box is extended below the baseline so descenders survive. */
  margin-bottom: -0.16em;
  padding-bottom: 0.16em;
  overflow: hidden;
  vertical-align: top;
}

/* No will-change here: a compositing layer on the word would break the
 * parent's background-clip:text and the gradient headline would vanish. */
.icx-word__inner {
  display: inline-block;
}

.icx-js .icx-split:not(.icx-split--ready) {
  opacity: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.icx-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  transition: translate 280ms var(--icx-ease), box-shadow 280ms var(--icx-ease),
    background-color 240ms var(--icx-ease), border-color 240ms var(--icx-ease), color 240ms var(--icx-ease);
}

.icx-btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.icx-btn__arrow {
  width: 1.15em;
  height: 1.15em;
  transition: translate 280ms var(--icx-ease-out);
}

.icx-btn:hover .icx-btn__arrow {
  translate: 4px 0;
}

.icx-btn--primary {
  background: linear-gradient(118deg, #6C57FF 0%, var(--icx-violet) 52%, #3B2FC9 100%);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(73, 65, 227, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.icx-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.3), transparent 46%);
  opacity: 0;
  transition: opacity 280ms var(--icx-ease);
}

.icx-btn--primary:hover {
  translate: 0 -3px;
  box-shadow: 0 24px 46px -16px rgba(73, 65, 227, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.icx-btn--primary:hover::after { opacity: 1; }

.icx-btn--ghost {
  border-color: var(--icx-hairline-strong);
  background: var(--icx-surface);
  box-shadow: var(--icx-shadow-sm);
  color: var(--icx-fg);
}

.icx-btn--ghost:hover {
  translate: 0 -3px;
  border-color: var(--icx-violet);
  box-shadow: var(--icx-shadow-md);
  color: var(--icx-violet);
}

.icx-btn__play {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-left: -0.35rem;
  border-radius: 50%;
  background: linear-gradient(140deg, #17D3B2, var(--icx-mint));
  color: #fff;
  transition: scale 280ms var(--icx-ease-out);
}

.icx-btn__play svg { width: 1.05rem; height: 1.05rem; }
.icx-btn--ghost:hover .icx-btn__play { scale: 1.09; }

.icx-btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.icx-btn--outline:hover {
  translate: 0 -3px;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

/* ── Screenshot frame ──────────────────────────────────────────────────── */

.icx-frame {
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid var(--icx-hairline);
  border-radius: clamp(14px, 1.4vw, 22px);
  background: var(--icx-surface);
  box-shadow: var(--icx-shadow-lg);
  overflow: hidden;
}

.icx-frame__bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--icx-hairline);
  background: var(--icx-surface-2);
}

.icx-frame__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(20, 17, 51, 0.16);
}

.icx-frame__bar i:first-child { background: #FF5F57; }
.icx-frame__bar i:nth-child(2) { background: #FEBC2E; }
.icx-frame__bar i:last-child { background: #28C840; }

.icx-frame__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════════════════════════════════
 * 1 — Hero
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-hero {
  padding: clamp(9rem, 15vh, 12rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--icx-surface);
  overflow: clip;
}

.icx-hero__canvas {
  position: absolute;
  inset: -14% -10% 0;
  z-index: -1;
  pointer-events: none;
}

.icx-hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.icx-hero__aurora--a {
  top: -8%;
  left: 2%;
  width: 44vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(108, 87, 255, 0.36), transparent 68%);
  animation: icx-drift-a 22s ease-in-out infinite alternate;
}

.icx-hero__aurora--b {
  top: 2%;
  right: -6%;
  width: 42vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(23, 211, 178, 0.26), transparent 68%);
  animation: icx-drift-b 26s ease-in-out infinite alternate;
}

.icx-hero__aurora--c {
  bottom: -4%;
  left: 34%;
  width: 38vw;
  height: 26vw;
  background: radial-gradient(circle, rgba(255, 0, 53, 0.07), transparent 72%);
  animation: icx-drift-a 30s ease-in-out infinite alternate-reverse;
}

@keyframes icx-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4%, 6%, 0) scale(1.12); }
}

@keyframes icx-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.08); }
  to   { transform: translate3d(-5%, 4%, 0) scale(0.94); }
}

.icx-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 17, 51, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 17, 51, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(70% 56% at 50% 32%, #000 0%, transparent 76%);
  mask-image: radial-gradient(70% 56% at 50% 32%, #000 0%, transparent 76%);
}

.icx-hero__grain {
  position: absolute;
  inset: 0;
  background-image: var(--icx-grain);
  opacity: 0.05;
}

.icx-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.icx-hero__title {
  margin: 0 0 1.5rem;
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.icx-hero__title .icx-split {
  display: block;
}

.icx-hero__sub {
  max-width: 40ch;
  margin: 0 0 2.2rem;
  color: var(--icx-fg-dim);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.72;
}

.icx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.icx-hero__note {
  margin: 0;
  color: var(--icx-fg-faint);
  font-size: 0.88rem;
}

/* Stage */

.icx-hero__stage {
  position: relative;
  min-height: clamp(360px, 38vw, 520px);
  perspective: 1400px;
}

.icx-hero__glow {
  position: absolute;
  inset: 4% -8% 4% -4%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(108, 87, 255, 0.22), transparent 72%);
  filter: blur(34px);
}

/* The hero screenshot already ships with its own device mockup, so it sits
 * bare on the glow instead of inside a second browser frame. */
.icx-hero__screen {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.icx-hero__screen-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(20, 17, 51, 0.22));
}

.icx-hero__float {
  position: absolute;
  z-index: 3;
  width: 46%;
  border-radius: clamp(12px, 1.1vw, 18px);
  box-shadow: 0 30px 60px -26px rgba(20, 17, 51, 0.5);
  will-change: transform;
}

.icx-hero__float--one {
  top: -9%;
  right: -6%;
  width: 40%;
}

.icx-hero__float--two {
  bottom: -12%;
  left: -9%;
  width: 44%;
}

.icx-hero__flow {
  position: absolute;
  right: 2%;
  bottom: -1.5rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--icx-hairline);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--icx-shadow-md);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.icx-hero__flow-label {
  color: var(--icx-fg-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.icx-hero__flow-list {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icx-hero__flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--icx-fg-faint);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 320ms var(--icx-ease);
}

.icx-hero__flow-step + .icx-hero__flow-step::before {
  content: "";
  width: 14px;
  height: 1px;
  margin-right: 0.15rem;
  background: var(--icx-hairline-strong);
}

.icx-hero__flow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  transition: opacity 320ms var(--icx-ease), box-shadow 320ms var(--icx-ease);
}

.icx-hero__flow-step.is-live {
  color: var(--icx-mint);
}

.icx-hero__flow-step.is-live .icx-hero__flow-dot {
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(15, 169, 143, 0.16);
}

/* Stats */

.icx-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(3.5rem, 6vw, 5rem) 0 0;
  padding: 0;
  border: 1px solid var(--icx-hairline);
  border-radius: var(--radius-lg);
  background: var(--icx-hairline);
  box-shadow: var(--icx-shadow-md);
  list-style: none;
  overflow: hidden;
}

.icx-hero__stat {
  padding: clamp(1.3rem, 2vw, 1.9rem) clamp(1.1rem, 1.8vw, 1.7rem);
  background: var(--icx-surface);
  transition: background-color 320ms var(--icx-ease);
}

.icx-hero__stat:hover {
  background: var(--icx-violet-wash);
}

.icx-hero__stat-value {
  display: block;
  margin-bottom: 0.3rem;
  background: linear-gradient(100deg, var(--icx-violet) 10%, #7C4DFF 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.icx-hero__stat-label {
  color: var(--icx-fg-dim);
  font-size: 0.85rem;
  line-height: 1.45;
}

.icx-hero__scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  translate: -50% 0;
  opacity: 0.45;
}

.icx-hero__scroll-track {
  display: block;
  width: 22px;
  height: 36px;
  border: 1px solid var(--icx-hairline-strong);
  border-radius: var(--radius-pill);
}

.icx-hero__scroll-thumb {
  display: block;
  width: 3px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: var(--icx-fg);
  animation: icx-scroll-thumb 2s var(--icx-ease-out) infinite;
}

@keyframes icx-scroll-thumb {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════════════════
 * 2 — Velocity marquee
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-marquee {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.5rem, 5.5vw, 5rem);
  background: linear-gradient(180deg, var(--icx-surface) 0, var(--icx-surface-2) 140px, var(--icx-surface-2) 100%);
}

.icx-marquee__label {
  margin: 0 0 1.6rem;
  color: var(--icx-fg-faint);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.icx-marquee__viewport {
  position: relative;
  padding: 0.4rem 0;
  border-block: 1px solid var(--icx-hairline);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  overflow: hidden;
}

.icx-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.icx-marquee__row {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3rem);
  margin: 0;
  padding: 1.15rem clamp(0.8rem, 1.5vw, 1.5rem);
  list-style: none;
}

.icx-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.icx-marquee__spark {
  display: grid;
  place-items: center;
  color: var(--icx-violet-soft);
}

.icx-marquee__spark svg { width: 0.85em; height: 0.85em; }

.icx-marquee__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  margin: clamp(2.5rem, 4vw, 3.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.icx-marquee__platform-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--icx-hairline);
  border-radius: var(--radius-pill);
  background: var(--icx-surface);
  box-shadow: var(--icx-shadow-sm);
  transition: translate 300ms var(--icx-ease), border-color 300ms var(--icx-ease), box-shadow 300ms var(--icx-ease);
}

.icx-marquee__platform-link:hover {
  translate: 0 -3px;
  border-color: var(--icx-violet);
  box-shadow: var(--icx-shadow-md);
}

.icx-marquee__platform-logo {
  display: grid;
  place-items: center;
  padding-right: 0.9rem;
  border-right: 1px solid var(--icx-hairline);
}

.icx-marquee__platform-img {
  display: block;
  width: auto;
  max-width: 108px;
  max-height: 24px;
}

.icx-marquee__platform-score {
  color: var(--icx-fg-dim);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}

.icx-marquee__platform-arrow {
  width: 1rem;
  height: 1rem;
  color: var(--icx-fg-faint);
  transition: translate 280ms var(--icx-ease-out), color 280ms var(--icx-ease);
}

.icx-marquee__platform-link:hover .icx-marquee__platform-arrow {
  translate: 2px -2px;
  color: var(--icx-violet);
}

/* ══════════════════════════════════════════════════════════════════════════
 * 3 — Pinned pipeline
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-pipeline {
  padding: var(--icx-section-y) 0 0;
  background: linear-gradient(180deg, var(--icx-surface-2) 0, var(--icx-surface) 220px, var(--icx-surface) 100%);
}

.icx-pipeline__intro {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.icx-pipeline__pin {
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

@media (min-width: 992px) {
  /* The pinned box must fit the viewport — including the sticky header —
   * or ScrollTrigger pins something taller than the screen. */
  .icx-pipeline__pin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding-block: clamp(5.5rem, 11vh, 7.5rem) clamp(1.5rem, 3vh, 2.5rem);
  }

  .icx-pipeline__panel {
    align-content: center;
    max-height: calc(100vh - 15rem);
  }

  .icx-pipeline__media .icx-frame__img {
    max-height: calc(100vh - 22rem);
    object-fit: cover;
    object-position: top center;
  }
}

.icx-pipeline__rail-wrap { margin-bottom: 2.2rem; }

.icx-pipeline__rail {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin: 0;
  padding: 0 0 1rem;
  list-style: none;
  border-bottom: 2px solid var(--icx-hairline);
}

.icx-pipeline__rail-progress {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 25%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--icx-violet), var(--icx-mint));
  transform-origin: left center;
}

.icx-pipeline__rail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--icx-fg-faint);
  font-family: var(--font-display);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 340ms var(--icx-ease);
}

.icx-pipeline__rail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transition: box-shadow 340ms var(--icx-ease), scale 340ms var(--icx-ease-out);
}

.icx-pipeline__rail-item.is-active {
  color: var(--icx-violet);
}

.icx-pipeline__rail-item.is-active .icx-pipeline__rail-dot {
  scale: 1.25;
  box-shadow: 0 0 0 5px rgba(73, 65, 227, 0.14);
}

.icx-pipeline__viewport { overflow: hidden; }

/* Viewport units only — a percentage here would resolve against the track's
 * own max-content width and blow the horizontal track up to 20000px+. */
.icx-pipeline__track {
  display: flex;
  gap: clamp(1.2rem, 2vw, 2rem);
  width: max-content;
  padding-inline: max(1.5rem, calc((100vw - 1280px) / 2));
  will-change: transform;
}

.icx-pipeline__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: min(1280px, calc(100vw - 3rem));
  padding: clamp(1.6rem, 2.6vw, 2.8rem);
  border: 1px solid var(--icx-hairline);
  border-radius: clamp(20px, 2vw, 30px);
  background: linear-gradient(150deg, var(--icx-surface) 0%, var(--icx-surface-2) 100%);
  box-shadow: var(--icx-shadow-md);
}

.icx-pipeline__index {
  display: block;
  margin-bottom: 0.9rem;
  background: linear-gradient(120deg, var(--icx-violet), var(--icx-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.icx-pipeline__kicker {
  margin: 0 0 0.5rem;
  color: var(--icx-violet);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.icx-pipeline__heading {
  margin: 0 0 0.8rem;
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1.14;
}

.icx-pipeline__body {
  margin: 0 0 1.3rem;
  color: var(--icx-fg-dim);
  font-size: 1rem;
  line-height: 1.7;
}

.icx-pipeline__points {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icx-pipeline__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--icx-fg);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

.icx-pipeline__points svg {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  padding: 0.15rem;
  border-radius: 50%;
  background: rgba(15, 169, 143, 0.14);
  color: var(--icx-mint);
}

.icx-pipeline__media {
  box-shadow: var(--icx-shadow-lg);
}

/* ══════════════════════════════════════════════════════════════════════════
 * 4 — Bento grid
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-bento {
  padding: var(--icx-section-y) 0;
  background:
    radial-gradient(70% 42% at 50% 8%, rgba(108, 87, 255, 0.12), transparent 72%),
    linear-gradient(180deg, var(--icx-surface) 0, var(--icx-violet-wash) 260px, var(--icx-surface-2) 100%);
  overflow: clip;
}

.icx-bento__glow {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: -1;
  width: min(900px, 82vw);
  height: min(520px, 48vw);
  translate: -50% 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(23, 211, 178, 0.16), transparent 72%);
  filter: blur(60px);
}

.icx-bento__intro {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.icx-bento__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.4vw, 1.35rem);
}

.icx-bento__card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  border: 1px solid var(--icx-hairline);
  border-radius: clamp(16px, 1.6vw, 24px);
  background: var(--icx-surface);
  box-shadow: var(--icx-shadow-sm);
  overflow: hidden;
  will-change: transform;
  transition: border-color 380ms var(--icx-ease), box-shadow 380ms var(--icx-ease),
    translate 380ms var(--icx-ease-out);
}

.icx-bento__card--md { grid-column: span 3; }
.icx-bento__card--lg { grid-column: span 4; }
.icx-bento__card--wide { grid-column: span 6; }
.icx-bento__card--tall { grid-column: span 2; grid-row: span 2; }

.icx-bento__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, var(--icx-tone, var(--icx-violet)), transparent 52%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 380ms var(--icx-ease);
  pointer-events: none;
}

.icx-bento__card:hover {
  translate: 0 -5px;
  box-shadow: var(--icx-shadow-md);
}

.icx-bento__card:hover::before { opacity: 0.75; }

.icx-bento__card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--icx-mx, 50%) var(--icx-my, 0%), color-mix(in srgb, var(--icx-tone, #6C57FF) 13%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 420ms var(--icx-ease);
  pointer-events: none;
}

.icx-bento__card:hover .icx-bento__card-shine { opacity: 1; }

.icx-bento__card--violet { --icx-tone: var(--icx-violet-lift); }
.icx-bento__card--mint   { --icx-tone: var(--icx-mint); }
.icx-bento__card--amber  { --icx-tone: var(--icx-amber); }
.icx-bento__card--rose   { --icx-tone: var(--icx-rose); }
.icx-bento__card--sky    { --icx-tone: var(--icx-sky); }

.icx-bento__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.icx-bento__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--icx-tone, #6C57FF) 12%, transparent);
  color: var(--icx-tone, var(--icx-violet));
  transition: scale 380ms var(--icx-ease-out), rotate 380ms var(--icx-ease-out);
}

.icx-bento__icon svg { width: 1.4rem; height: 1.4rem; }

.icx-bento__card:hover .icx-bento__icon {
  scale: 1.08;
  rotate: -4deg;
}

.icx-bento__metric {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--icx-hairline);
  border-radius: var(--radius-pill);
  color: var(--icx-fg-faint);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icx-bento__card-title {
  margin: 0 0 0.55rem;
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.icx-bento__card-body {
  margin: 0;
  color: var(--icx-fg-dim);
  font-size: 0.95rem;
  line-height: 1.62;
}

.icx-bento__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--icx-tone, var(--icx-violet));
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.icx-bento__card-link svg {
  width: 1.05em;
  height: 1.05em;
  transition: translate 280ms var(--icx-ease-out);
}

.icx-bento__card-link:hover svg { translate: 4px 0; }

.icx-bento__card-media {
  margin: 1.4rem -0.6rem -2.4rem;
}

.icx-bento__card--tall .icx-bento__card-media { margin-top: auto; }

.icx-bento__card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border: 1px solid var(--icx-hairline);
  border-radius: 12px;
  box-shadow: var(--icx-shadow-sm);
}

.icx-bento__card--wide .icx-bento__card-img { aspect-ratio: 32 / 9; }
.icx-bento__card--lg .icx-bento__card-img { aspect-ratio: 21 / 9; }

/* ══════════════════════════════════════════════════════════════════════════
 * 5 — Comparison
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-compare {
  padding: var(--icx-section-y) 0;
  background: linear-gradient(180deg, var(--icx-surface-2) 0, var(--icx-surface) 200px, var(--icx-surface) 100%);
}

.icx-compare__intro {
  max-width: 60ch;
  margin-bottom: clamp(2.2rem, 3.5vw, 3.2rem);
}

.icx-compare__panel {
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid var(--icx-hairline);
  border-radius: clamp(20px, 2vw, 28px);
  background: linear-gradient(160deg, var(--icx-surface) 0%, var(--icx-surface-2) 100%);
  box-shadow: var(--icx-shadow-md);
}

.icx-compare__switch {
  position: relative;
  display: inline-flex;
  gap: 0.2rem;
  margin-bottom: 1.6rem;
  padding: 0.32rem;
  border: 1px solid var(--icx-hairline);
  border-radius: var(--radius-pill);
  background: var(--icx-surface-3);
}

/* Placed from measured tab geometry in ic-x.js — see initCompare(). */
.icx-compare__switch-pill {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--icx-violet-lift), var(--icx-violet));
  box-shadow: 0 8px 20px -8px rgba(73, 65, 227, 0.8);
  pointer-events: none;
}

.icx-compare__switch-btn {
  position: relative;
  z-index: 1;
  padding: 0.62rem 1.25rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--icx-fg-dim);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 300ms var(--icx-ease);
}

.icx-compare__switch-btn.is-active { color: #fff; }

.icx-compare__head,
.icx-compare__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.icx-compare__head {
  padding: 0 clamp(0.8rem, 1.4vw, 1.3rem) 0.85rem;
}

.icx-compare__head-cell {
  color: var(--icx-fg-faint);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.icx-compare__head-cell--own {
  color: var(--icx-violet);
}

.icx-compare__rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icx-compare__row {
  padding: clamp(0.85rem, 1.4vw, 1.1rem) clamp(0.8rem, 1.4vw, 1.3rem);
  border-radius: 14px;
  transition: background-color 300ms var(--icx-ease);
}

.icx-compare__row + .icx-compare__row {
  box-shadow: inset 0 1px 0 var(--icx-hairline);
}

.icx-compare__row:hover {
  background: var(--icx-violet-wash);
}

.icx-compare__cell--feature {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.icx-compare__cell--feature strong {
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.icx-compare__cell--feature em {
  color: var(--icx-fg-dim);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.45;
}

.icx-compare__cell--own,
.icx-compare__cell--rival {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icx-compare__rival-state {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icx-compare__rival-state[hidden] { display: none; }

.icx-compare__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
}

.icx-compare__mark svg { width: 1rem; height: 1rem; }

.icx-compare__mark--yes {
  background: rgba(15, 169, 143, 0.16);
  color: #0B8C77;
}

.icx-compare__mark--partial {
  background: rgba(201, 127, 0, 0.16);
  color: #A96A00;
}

.icx-compare__mark--no {
  background: rgba(224, 36, 75, 0.13);
  color: #C8203F;
}

.icx-compare__note {
  color: var(--icx-fg-dim);
  font-size: 0.88rem;
  line-height: 1.42;
}

.icx-compare__cell--own .icx-compare__note {
  color: var(--icx-fg);
  font-weight: 500;
}

.icx-compare__footnote {
  margin: 1.3rem clamp(0.8rem, 1.4vw, 1.3rem) 0;
  color: var(--icx-fg-faint);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════════
 * 6 — Review wall
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-reviews {
  padding: var(--icx-section-y) 0 0;
  background: linear-gradient(180deg, var(--icx-surface) 0%, var(--icx-surface-2) 100%);
  overflow: clip;
}

.icx-reviews__intro {
  max-width: 58ch;
  margin-bottom: clamp(2.2rem, 3.5vw, 3.2rem);
}

.icx-reviews__wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.4vw, 1.35rem);
  width: var(--icx-shell);
  height: clamp(560px, 68vh, 760px);
  margin-inline: auto;
  overflow: hidden;
}

.icx-reviews__column {
  display: grid;
  align-content: start;
  gap: clamp(0.9rem, 1.4vw, 1.35rem);
  will-change: transform;
}

.icx-reviews__fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 15%;
  pointer-events: none;
}

.icx-reviews__fade--top {
  top: 0;
  background: linear-gradient(180deg, var(--icx-surface) 8%, transparent);
}

.icx-reviews__fade--bottom {
  bottom: 0;
  background: linear-gradient(0deg, var(--icx-surface-2) 18%, transparent);
}

.icx-review {
  position: relative;
  margin: 0;
  padding: clamp(1.2rem, 1.8vw, 1.6rem);
  border: 1px solid var(--icx-hairline);
  border-radius: 18px;
  background: var(--icx-surface);
  box-shadow: var(--icx-shadow-sm);
  overflow: hidden;
  transition: translate 340ms var(--icx-ease-out), box-shadow 340ms var(--icx-ease), border-color 340ms var(--icx-ease);
}

.icx-review::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--icx-mx, 50%) var(--icx-my, 0%), rgba(108, 87, 255, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 380ms var(--icx-ease);
  pointer-events: none;
}

.icx-review:hover {
  translate: 0 -4px;
  border-color: rgba(108, 87, 255, 0.35);
  box-shadow: var(--icx-shadow-md);
}

.icx-review:hover::before { opacity: 1; }

.icx-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.icx-review__stars {
  display: inline-flex;
  gap: 0.12rem;
  color: rgba(20, 17, 51, 0.16);
}

.icx-review__stars svg { width: 1rem; height: 1rem; }
.icx-review__stars svg.is-on { color: #F5A623; }

.icx-review__platform-img {
  display: block;
  width: auto;
  max-width: 74px;
  max-height: 20px;
  opacity: 0.7;
}

.icx-review__title {
  margin: 0 0 0.5rem;
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.016em;
  line-height: 1.3;
}

.icx-review__quote {
  display: -webkit-box;
  margin: 0 0 1.1rem;
  color: var(--icx-fg-dim);
  font-size: 0.92rem;
  line-height: 1.65;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.icx-review__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icx-review__avatar-img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.icx-review__who {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.icx-review__who strong {
  color: var(--icx-fg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.icx-review__who span {
  color: var(--icx-fg-faint);
  font-size: 0.76rem;
}

.icx-review__source {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--icx-hairline);
  border-radius: 50%;
  color: var(--icx-fg-faint);
  transition: border-color 280ms var(--icx-ease), color 280ms var(--icx-ease), translate 280ms var(--icx-ease-out);
}

.icx-review__source svg { width: 0.95rem; height: 0.95rem; }

.icx-review__source:hover {
  translate: 0 -2px;
  border-color: var(--icx-violet);
  color: var(--icx-violet);
}

/* ══════════════════════════════════════════════════════════════════════════
 * 7 — Closing CTA (the page's one saturated moment)
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-cta {
  padding: var(--icx-section-y) 0;
  background: linear-gradient(180deg, var(--icx-surface-2) 0%, var(--icx-surface) 100%);
  overflow: clip;
}

.icx-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.6rem);
  border-radius: clamp(24px, 2.4vw, 34px);
  background:
    radial-gradient(120% 120% at 8% 0%, rgba(255, 255, 255, 0.24), transparent 58%),
    linear-gradient(128deg, #5B4BE8 0%, var(--icx-violet) 44%, #2E24A8 100%);
  box-shadow: 0 50px 100px -50px rgba(46, 36, 168, 0.9);
  color: #fff;
  overflow: hidden;
}

.icx-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--icx-grain);
  opacity: 0.13;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.icx-cta__copy,
.icx-cta__media {
  position: relative;
  z-index: 1;
}

.icx-eyebrow--light {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.icx-eyebrow--light .icx-eyebrow__dot {
  background: #55F0D2;
  box-shadow: 0 0 0 4px rgba(85, 240, 210, 0.2);
}

.icx-eyebrow--light .icx-eyebrow__dot::after { border-color: #55F0D2; }

.icx-cta__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
}

.icx-cta__body {
  max-width: 44ch;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
}

.icx-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.7rem;
}

/* On the saturated panel the primary button inverts to white. */
.icx-cta .icx-btn--primary {
  background: #fff;
  color: var(--icx-violet);
  box-shadow: 0 16px 34px -14px rgba(11, 6, 60, 0.7);
}

.icx-cta .icx-btn--primary:hover {
  box-shadow: 0 24px 46px -16px rgba(11, 6, 60, 0.8);
}

.icx-cta__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.icx-cta__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.icx-cta__assurances svg {
  width: 1.05rem;
  height: 1.05rem;
  padding: 0.13rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.icx-cta__media {
  margin: 0;
  will-change: transform;
}

.icx-cta__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 40px 80px -36px rgba(11, 6, 60, 0.95);
}

/* ══════════════════════════════════════════════════════════════════════════
 * Video lightbox
 * ═══════════════════════════════════════════════════════════════════════ */

.icx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 0;
  background: rgba(12, 9, 40, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 300ms var(--icx-ease);
}

.icx-lightbox.is-open { opacity: 1; }

.icx-lightbox__frame {
  position: relative;
  width: min(1040px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.icx-lightbox__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.icx-lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background-color 240ms var(--icx-ease), rotate 300ms var(--icx-ease-out);
}

.icx-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
  rotate: 90deg;
}

.icx-lightbox__close svg { width: 1.1rem; height: 1.1rem; }

/* ══════════════════════════════════════════════════════════════════════════
 * Responsive
 * ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1199.98px) {
  .icx-page { --icx-shell: min(1100px, calc(100% - 2.5rem)); }

  .icx-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .icx-hero__sub { max-width: 52ch; }

  .icx-hero__stage {
    max-width: 720px;
    margin-inline: auto;
  }

  .icx-bento__card--lg { grid-column: span 6; }
  .icx-bento__card--md { grid-column: span 3; }
  .icx-bento__card--tall { grid-row: span 1; }

  .icx-cta__panel { grid-template-columns: minmax(0, 1fr); }
  .icx-cta__media { order: -1; max-width: 460px; }
}

@media (max-width: 991.98px) {
  .icx-page { --icx-section-y: clamp(4rem, 9vw, 6rem); }

  .icx-hero { padding-top: clamp(7rem, 14vh, 9rem); }

  .icx-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .icx-pipeline__viewport { overflow: visible; }

  .icx-pipeline__track {
    display: grid;
    gap: clamp(1.2rem, 2.5vw, 2rem);
    width: 100%;
    padding-inline: 0;
    transform: none !important;
  }

  .icx-pipeline__panel {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .icx-pipeline__rail-wrap { display: none; }

  .icx-reviews__wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    max-height: none;
  }

  .icx-reviews__column {
    transform: none !important;
  }

  .icx-reviews__column:last-child { display: none; }

  .icx-reviews__fade { display: none; }

  .icx-compare__head,
  .icx-compare__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .icx-page { --icx-shell: calc(100% - 2rem); }

  .icx-hero__float--one { top: -6%; right: -3%; width: 46%; }
  .icx-hero__float--two { bottom: -8%; left: -4%; width: 48%; }

  .icx-hero__flow {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
  }

  .icx-hero__flow-list { flex-wrap: wrap; justify-content: center; }

  .icx-bento__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icx-bento__card,
  .icx-bento__card--md,
  .icx-bento__card--lg,
  .icx-bento__card--wide,
  .icx-bento__card--tall { grid-column: span 2; }

  .icx-reviews__wall { grid-template-columns: minmax(0, 1fr); }
  /* Two columns' worth of reviews stack into one; the third would only
   * lengthen the page without adding a new voice. */
  .icx-reviews__column:nth-child(3) { display: none; }

  .icx-compare__switch { display: flex; width: 100%; overflow-x: auto; }
  .icx-compare__switch-btn { flex: 1 0 auto; }

  .icx-compare__head { display: none; }

  .icx-compare__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    padding-block: 1.1rem;
  }

  .icx-compare__cell--own::before,
  .icx-compare__cell--rival::before {
    content: attr(data-icx-label);
    flex: 0 0 5.5rem;
    color: var(--icx-fg-faint);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .icx-hero__scroll-hint { display: none; }

  .icx-lightbox__close { top: -3.2rem; right: 50%; translate: 50% 0; }
}

@media (max-width: 575.98px) {
  .icx-hero__stats { grid-template-columns: minmax(0, 1fr); }
  .icx-btn { width: 100%; justify-content: center; }
  .icx-hero__actions,
  .icx-cta__actions { width: 100%; }
}

/* Bootstrap's prefers-reduced-motion reset zeroes every transition when the
 * OS disables animations. AGENTS.md requires full motion by default. */

/* Bootstrap ships `*{transition-duration:.01ms!important}` under
 * prefers-reduced-motion, which silently kills every hover transition when the
 * OS has animations switched off. AGENTS.md requires generated themes to force
 * full motion, so the interactive surfaces re-assert their own timing here.
 * A project that genuinely wants reduced motion sets
 * data-pika-vibe-respect-reduced-motion="true" on <html>, which disables this. */
@media (prefers-reduced-motion: reduce) {
  html:not([data-pika-vibe-respect-reduced-motion="true"]) :is(
  .icx-page .icx-btn,
  .icx-page .icx-btn__arrow,
  .icx-page .icx-bento__card,
  .icx-page .icx-bento__icon,
  .icx-page .icx-bento__card-link svg,
  .icx-page .icx-review,
  .icx-page .icx-review__source,
  .icx-page .icx-marquee__platform-link,
  .icx-page .icx-compare__row,
  .icx-page .icx-hero__stat,
  .icx-page .icx-frame
  ) {
    transition-duration: 320ms !important;
  }
}
