
.f-cmp { padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px); }
.f-cmp-light {
  background: var(--brand-bg, #FCFCFC);
  color: var(--brand-ink, #333);
  --f-cmp-ink: var(--brand-ink-strong, #1A1A1A);
  --f-cmp-quiet: var(--f-quiet-ink);
  --f-cmp-rule: color-mix(in oklab, var(--f-ink-base, #1A1A1A), transparent 88%);
}
.f-cmp-dark {
  background: var(--brand-surface-dark, #1A1A1A);
  color: var(--brand-ink-on-dark, #FCFCFC);
  --f-cmp-ink: var(--brand-ink-on-dark, #FCFCFC);
  --f-cmp-quiet: rgba(255, 255, 255, 0.68);
  --f-cmp-rule: rgba(255, 255, 255, 0.16);
}
.f-cmp-dark h2, .f-cmp-dark h3 { color: inherit; }
.f-cmp-inner { width: min(1080px, 100%); margin-inline: auto; }
.f-cmp-head { text-align: center; margin-bottom: clamp(24px, 3.5vw, 40px); }
.f-cmp-title {
  margin: 0 0 8px;
  font-size: var(--f-h2);
  color: var(--f-cmp-ink);
}
.f-cmp-intro { margin: 0 auto; max-width: 56ch; font-size: var(--f-text); color: var(--f-cmp-quiet); }
.f-cmp-panel {
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: 14px;
}
.f-cmp-side-us {
  background: var(--f-plaque-bg, #FFFFFF);
  color: var(--f-plaque-ink, #333);
  border: 2px solid rgba(0, 0, 0, 0.10);
  --f-cmp-p-ink: var(--f-plaque-ink-strong, #1A1A1A);
  --f-cmp-p-quiet: color-mix(in oklab, var(--f-plaque-ink-strong, #1A1A1A), transparent 28%);
  --f-cmp-mark: var(--f-plaque-accent, #1A1A1A);
}
.f-cmp-side-them {
  background: #181818;
  color: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.08);
  --f-cmp-p-ink: #FCFCFC;
  --f-cmp-p-quiet: rgba(255, 255, 255, 0.78);
  --f-cmp-mark: rgba(255, 255, 255, 0.55);
}
.f-cmp-tag {
  margin: 0 0 18px;
  font-family: var(--brand-font-display, inherit);
  text-transform: var(--brand-display-transform, none);
  font-weight: 700;
  font-size: var(--f-h5);
  letter-spacing: 0.02em;
  color: var(--f-cmp-p-ink);
}
.f-cmp-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.f-cmp-li { display: grid; }
.f-cmp-t {
  grid-area: 1 / 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--f-text);
  line-height: 1.5;
  color: var(--f-cmp-p-quiet);
}
.f-cmp-side-us .f-cmp-t-them { visibility: hidden; }
.f-cmp-side-them .f-cmp-t-us { visibility: hidden; }
.f-cmp-ic {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  fill: none;
  stroke: var(--f-cmp-mark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.f-cmp-cta { margin-top: 22px; font-size: var(--f-text-small); padding: 12px 30px; }
.f-cmp-swcard { display: grid; gap: clamp(14px, 2vw, 22px); }
@media (min-width: 761px) {
  .f-cmp-swcard { grid-template-columns: 1fr 1fr; align-items: start; }
}
.f-cmp-divider, .f-cmp-seg, .f-cmp-pill { display: none; }
.f-cmp-v-reveal .f-cmp-inner { width: min(1240px, 100%); }
.f-cmp-v-reveal .f-cmp-wrap {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 901px) {
  .f-cmp-v-reveal .f-cmp-wrap { grid-template-columns: 5fr 7fr; }
}
.f-cmp-copy { display: grid; overflow: clip; }
.f-cmp-state { grid-area: 1 / 1; }
.f-cmp-state .f-cmp-tag {
  margin-bottom: 20px;
  font-size: var(--f-h4);
  color: var(--f-cmp-ink);
}
.f-cmp-state .f-cmp-tag::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--f-cmp-state-bar, var(--brand-accent, #0074C8));
}
.f-cmp-state-them { --f-cmp-state-bar: var(--f-cmp-cross, #B3261E); }
.f-cmp-v-reveal .f-cmp-li {
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--f-cmp-row, rgba(0, 0, 0, 0.045));
}
.f-cmp-v-reveal .f-cmp-list { gap: 12px; }
.f-cmp-txt { display: block; min-width: 0; flex: 1; }
.f-cmp-item-title {
  display: block;
  font-size: var(--f-text-small);
  font-weight: 650;
  color: var(--f-cmp-t-ink, var(--f-cmp-ink, #1A1A1A));
}
.f-cmp-item-body {
  display: block;
  margin-top: 2px;
  font-size: var(--f-text-small);
  color: var(--f-cmp-t-quiet, var(--f-cmp-quiet, rgba(0, 0, 0, 0.6)));
}
.f-cmp-panel { --f-cmp-t-ink: var(--f-cmp-p-ink); --f-cmp-t-quiet: var(--f-cmp-p-quiet); }
@media (min-width: 901px) {
  .f-cmp-v-reveal .f-cmp-item-title,
  .f-cmp-v-reveal .f-cmp-item-body {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.f-cmp-light { --f-cmp-cross: #B3261E; --f-cmp-row: rgba(0, 0, 0, 0.045); }
.f-cmp-dark { --f-cmp-cross: rgba(255, 255, 255, 0.55); --f-cmp-row: rgba(255, 255, 255, 0.06); }
.f-cmp-state .f-cmp-t { color: var(--f-cmp-quiet); }
.f-cmp-state-us .f-cmp-ic { stroke: var(--f-accent-ink, var(--brand-accent, #0074C8)); }
.f-cmp-state-them .f-cmp-ic { stroke: var(--f-cmp-cross, #B3261E); }
.f-cmp-state { transition: opacity 0.35s ease, translate 0.45s var(--f-ease, ease); }
.f-cmp-state-them { opacity: 0; visibility: hidden; translate: 28px 0; }
.f-cmp-v-reveal.is-them .f-cmp-state-them { opacity: 1; visibility: visible; translate: 0 0; }
.f-cmp-v-reveal.is-them .f-cmp-state-us { opacity: 0; visibility: hidden; translate: -28px 0; }
.f-cmp-v-reveal .f-cmp-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #181818;
}
.f-cmp-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.f-cmp-img-them { filter: grayscale(1) brightness(0.6) contrast(0.95); }
.f-cmp-topclip { position: absolute; inset: 0; }
.f-cmp-live.f-cmp-v-reveal .f-cmp-stage {
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.f-cmp-live.f-cmp-v-reveal .f-cmp-stage:focus-visible {
  outline: 2px solid var(--brand-accent, #0074C8);
  outline-offset: 4px;
}
.f-cmp-live.f-cmp-v-reveal .f-cmp-topclip {
  clip-path: inset(0 calc(100% - var(--pos, 62%)) 0 0);
}
.f-cmp-live.f-cmp-v-reveal .f-cmp-pill {
  display: inline-block;
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: var(--f-text-caption);
  font-weight: 500;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
.f-cmp-pill-us { left: 12px; }
.f-cmp-pill-them { right: 12px; }
@media (max-width: 600px) {
  .f-cmp-live.f-cmp-v-reveal .f-cmp-pill { font-size: var(--f-text-micro); padding: 5px 10px; }
  .f-cmp-pill-them { top: 46px; }
}
.f-cmp-live.f-cmp-v-reveal:not(.is-them) .f-cmp-pill-us {
  background: var(--brand-accent, #0074C8);
  color: var(--brand-ink-on-dark, #fff);
}
.f-cmp-live.f-cmp-v-reveal.is-them .f-cmp-pill-them { background: var(--f-cmp-cross, #B3261E); }
.f-cmp-live.f-cmp-v-reveal .f-cmp-divider {
  display: block;
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 62%);
  width: 3px;
  margin-left: -1.5px;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14), 0 0 14px rgba(0, 0, 0, 0.38);
  z-index: 2;
  pointer-events: none;
}
.f-cmp-live.f-cmp-v-reveal.f-cmp-anim .f-cmp-topclip { transition: clip-path 0.3s var(--f-ease, ease); }
.f-cmp-live.f-cmp-v-reveal.f-cmp-anim .f-cmp-divider { transition: left 0.3s var(--f-ease, ease); }
.f-cmp-grip {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
  color: #666B70;
}
.f-cmp-grip svg {
  width: 28px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.f-cmp-live.f-cmp-v-switch .f-cmp-seg {
  display: inline-flex;
  position: relative;
  margin: 0 auto clamp(18px, 2.5vw, 26px);
  left: 50%;
  translate: -50%;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--f-cmp-rule);
  background: color-mix(in oklab, var(--f-cmp-ink) 5%, transparent);
}
.f-cmp-tab {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--f-cmp-quiet);
  font-family: var(--brand-font-body, inherit);
  font-size: var(--f-text-small);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.f-cmp-tab[aria-selected="true"] {
  background: var(--brand-accent, #0074C8);
  color: var(--brand-cta-ink, #fff);
}
.f-cmp-live.f-cmp-v-switch .f-cmp-swcard { display: grid; grid-template-columns: none; }
.f-cmp-live.f-cmp-v-switch .f-cmp-swcard .f-cmp-panel {
  grid-area: 1 / 1;
  transition: opacity 0.35s var(--f-ease, ease), visibility 0.35s;
}
.f-cmp-live.f-cmp-v-switch .f-cmp-swcard .f-cmp-side-them { opacity: 0; visibility: hidden; }
.f-cmp-live.f-cmp-v-switch .f-cmp-swcard.is-them .f-cmp-side-them { opacity: 1; visibility: visible; }
.f-cmp-live.f-cmp-v-switch .f-cmp-swcard.is-them .f-cmp-side-us { opacity: 0; visibility: hidden; }
.f-cmp-pop .f-cmp-li { animation: f-cmp-in 0.4s var(--f-ease, ease) both; animation-delay: calc(var(--i, 0) * 70ms); }
.f-cmp-pop .f-cmp-state-them .f-cmp-li { animation-name: f-cmp-in-l; }
.f-cmp-pop .f-cmp-state-us .f-cmp-li { animation-name: f-cmp-in-r; }
@keyframes f-cmp-in {
  from { opacity: 0; translate: 0 8px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes f-cmp-in-l {
  from { opacity: 0; translate: 18px 0; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes f-cmp-in-r {
  from { opacity: 0; translate: -18px 0; }
  to   { opacity: 1; translate: 0 0; }
}
.f-cmp-split { display: flex; gap: clamp(14px, 2vw, 22px); align-items: stretch; }
.f-cmp-split .f-cmp-panel {
  flex: 1 1 0;
  min-width: 0;
  transition: flex-grow 0.45s var(--f-ease, ease), opacity 0.45s ease, filter 0.45s ease;
}
.f-cmp-split .f-cmp-side-us { flex-grow: 1.25; }
@media (hover: hover) {
  .f-cmp-split:has(.f-cmp-panel:hover) .f-cmp-panel { opacity: 0.75; filter: saturate(0.7) brightness(0.98); }
  .f-cmp-split .f-cmp-panel:hover { flex-grow: 1.7; opacity: 1; filter: saturate(1) brightness(1); }
}
@media (max-width: 900px) {
  .f-cmp-v-reveal .f-cmp-stage { order: -1; aspect-ratio: 16 / 11; }
  .f-cmp-live.f-cmp-v-reveal .f-cmp-grip { width: 48px; height: 48px; }
}
@media (max-width: 760px) {
  .f-cmp-swcard { grid-template-columns: minmax(0, 1fr); }
  .f-cmp-split { flex-direction: column; }
  .f-cmp-t { font-size: var(--f-text-small); }
  .f-cmp-tab { padding: 10px 16px; font-size: var(--f-text-small); }
}
@media (prefers-reduced-motion: reduce) {
  .f-cmp-live.f-cmp-v-reveal.f-cmp-anim .f-cmp-topclip,
  .f-cmp-live.f-cmp-v-reveal.f-cmp-anim .f-cmp-divider,
  .f-cmp-state,
  .f-cmp-live.f-cmp-v-switch .f-cmp-swcard .f-cmp-panel,
  .f-cmp-split .f-cmp-panel,
  .f-cmp-tab { transition: none !important; }
  .f-cmp-pop .f-cmp-li { animation: none !important; }
}
