/* ==========================================================================
   FinCheck Pages Widgets — scoped reset
   Everything the plugin renders lives inside .fcp-scope.
   Resets use :where() so they never out-specify component rules.
   ========================================================================== */

.fcp-scope,
.fcp-scope *,
.fcp-scope *::before,
.fcp-scope *::after{ box-sizing:border-box; }

.fcp-scope{
  font-family:var(--fcp-body);
  font-size:16px;
  line-height:1.65;
  color:var(--fcp-ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

:where(.fcp-scope) h1,
:where(.fcp-scope) h2,
:where(.fcp-scope) h3,
:where(.fcp-scope) h4,
:where(.fcp-scope) h5,
:where(.fcp-scope) h6,
:where(.fcp-scope) p,
:where(.fcp-scope) ul,
:where(.fcp-scope) ol,
:where(.fcp-scope) li,
:where(.fcp-scope) figure,
:where(.fcp-scope) blockquote,
:where(.fcp-scope) fieldset{ margin:0; padding:0; border:0; }

:where(.fcp-scope) ul,
:where(.fcp-scope) ol{ list-style:none; }

:where(.fcp-scope) img,
:where(.fcp-scope) svg{ max-width:100%; display:block; }

:where(.fcp-scope) a{ color:inherit; text-decoration:none; box-shadow:none; }
:where(.fcp-scope) a:hover{ text-decoration:none; }

:where(.fcp-scope) button{
  font-family:inherit; font-size:inherit; line-height:inherit;
  cursor:pointer; background:none; border:none; color:inherit;
  border-radius:0; box-shadow:none; text-transform:none;
}

:where(.fcp-scope) input,
:where(.fcp-scope) select,
:where(.fcp-scope) textarea{
  font-family:inherit; line-height:inherit;
  border-radius:0; box-shadow:none;
  max-width:100%;
}

:where(.fcp-scope) table{ border-collapse:collapse; width:100%; }

/* Theme armour — properties WP themes most often force onto plugin markup.
   Kept to a short list on purpose so component rules stay in charge. */
.fcp-scope :is(h1,h2,h3,h4,h5,h6){ text-transform:none; }
.fcp-scope .fcp-btn{ text-decoration:none !important; box-shadow:none !important; }
.fcp-scope .fcp-btn:hover{ text-decoration:none !important; }
.fcp-scope input:focus,
.fcp-scope select:focus,
.fcp-scope textarea:focus{ outline:none; box-shadow:none !important; }

/* Elementor wrapper hygiene — widgets are full-bleed sections */
.elementor-widget-container > .fcp-scope{ width:100%; }
.fcp-scope > section{ width:100%; }

/* iOS: 16px on inputs stops Safari auto-zoom on focus */
@media (max-width:782px){
  .fcp-scope input,
  .fcp-scope select,
  .fcp-scope textarea{ font-size:16px; }
}

/* Screen-reader only */
.fcp-visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
/* ==========================================================================
   FinCheck LLC — Black & White Revamp v2
   Black header + black footer + advanced animation layer
   Fonts: Archivo (display) / Inter (body) / IBM Plex Mono (labels & indices)
   ========================================================================== */

:root{
  --fcp-ink:        #0a0a0a;
  --fcp-ink-soft:   #131313;
  --fcp-paper:      #ffffff;
  --fcp-grey-05:    #f4f4f4;
  --fcp-grey-15:    #e2e2e2;
  --fcp-grey-40:    #9a9a9a;
  --fcp-grey-60:    #5c5c5c;
  --fcp-line-dark:  rgba(255,255,255,.16);

  --fcp-display:    'Archivo', sans-serif;
  --fcp-body:       'Inter', sans-serif;
  --fcp-mono:       'IBM Plex Mono', monospace;

  --fcp-container:  1240px;
  --fcp-gutter:     24px;
  --fcp-radius:     2px;
  --fcp-header-h:   84px;
  --fcp-ease:       cubic-bezier(.22,.61,.36,1);
  --fcp-ease-out:   cubic-bezier(.16,1,.3,1);
}

/* __RESET_REMOVED__ */
.fcp-scope .fcp-container{
  max-width:var(--fcp-container);
  margin-inline:auto;
  padding-inline:var(--fcp-gutter);
}

/* Focus visibility */
.fcp-scope a:focus-visible,
.fcp-scope button:focus-visible{
  outline:2px solid var(--fcp-ink);
  outline-offset:3px;
}
.fcp-scope .fcp-header a:focus-visible,
.fcp-scope .fcp-header button:focus-visible,
.fcp-scope .fcp-footer a:focus-visible,
.fcp-scope .fcp-hero a:focus-visible,
.fcp-scope .fcp-cta a:focus-visible,
.fcp-scope .fcp-expertise a:focus-visible,
.fcp-scope .fcp-testimonials button:focus-visible{
  outline-color:var(--fcp-paper);
}

/* ==========================================================================
   Custom cursor + scroll progress
   ========================================================================== */
.fcp-cursor-dot,
.fcp-cursor-ring{
  position:fixed;
  top:0; left:0;
  z-index:9999;
  pointer-events:none;
  border-radius:50%;
  transform:translate(-50%,-50%);
  mix-blend-mode:difference;
  opacity:0;
}
.fcp-cursor-dot{
  width:8px; height:8px;
  background:#fff;
}
.fcp-cursor-ring{
  width:38px; height:38px;
  border:1px solid #fff;
  transition:width .35s var(--fcp-ease-out), height .35s var(--fcp-ease-out),
             border-color .35s var(--fcp-ease-out), background .35s var(--fcp-ease-out);
}
body.fcp-cursor-active .fcp-cursor-dot,
body.fcp-cursor-active .fcp-cursor-ring{ opacity:1; }
body.fcp-cursor-hover .fcp-cursor-ring{
  width:64px; height:64px;
  background:rgba(255,255,255,.12);
}
body.fcp-cursor-press .fcp-cursor-ring{
  width:28px; height:28px;
}
@media (pointer:fine){
  body.fcp-cursor-active,
body.fcp-cursor-active a,
body.fcp-cursor-active button{ cursor:none; }
}
@media (pointer:coarse){
  .fcp-cursor-dot,
.fcp-cursor-ring{ display:none; }
}

.fcp-progress{
  position:fixed;
  top:0; left:0;
  height:3px;
  width:100%;
  transform-origin:0 50%;
  transform:scaleX(0);
  background:var(--fcp-paper);
  mix-blend-mode:difference;
  z-index:2000;
  pointer-events:none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.fcp-scope .fcp-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:14px 26px;
  border:1px solid var(--fcp-ink);
  border-radius:var(--fcp-radius);
  position:relative;
  overflow:hidden;
  transition:color .35s var(--fcp-ease), border-color .35s var(--fcp-ease), transform .35s var(--fcp-ease);
  will-change:transform;
}
/* Sliding fill effect */
.fcp-scope .fcp-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:currentColor;
  opacity:0;
  transform:translateY(101%);
  transition:transform .4s var(--fcp-ease-out), opacity .01s;
  z-index:-1;
}
.fcp-scope .fcp-btn__arrow{ transition:transform .3s var(--fcp-ease); }
.fcp-scope .fcp-btn:hover .fcp-btn__arrow{ transform:translateX(6px); }

.fcp-scope .fcp-btn--solid{ background:var(--fcp-paper); color:var(--fcp-ink); border-color:var(--fcp-paper); }
.fcp-scope .fcp-btn--solid:hover{ background:transparent; color:var(--fcp-paper); }

.fcp-scope .fcp-btn--ghost{ background:transparent; color:var(--fcp-paper); border-color:rgba(255,255,255,.4); }
.fcp-scope .fcp-btn--ghost:hover{ background:var(--fcp-paper); color:var(--fcp-ink); border-color:var(--fcp-paper); }

.fcp-scope .fcp-btn--hero{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  border-color:var(--fcp-paper);
  padding:18px 34px;
  font-size:15px;
}
.fcp-scope .fcp-btn--hero:hover{ background:transparent; color:var(--fcp-paper); }

.fcp-scope .fcp-btn--invert{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  border-color:var(--fcp-paper);
  padding:18px 34px;
}
.fcp-scope .fcp-btn--invert:hover{ background:transparent; color:var(--fcp-paper); }

.fcp-scope .fcp-btn--outline-invert{
  background:transparent;
  color:var(--fcp-paper);
  border-color:var(--fcp-paper);
  padding:18px 34px;
}
.fcp-scope .fcp-btn--outline-invert:hover{ background:var(--fcp-paper); color:var(--fcp-ink); }

/* ==========================================================================
   Header — BLACK
   ========================================================================== */
.fcp-scope .fcp-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  border-bottom:1px solid var(--fcp-line-dark);
  transition:box-shadow .3s var(--fcp-ease), background .3s var(--fcp-ease);
}
.fcp-scope .fcp-header.is-scrolled{
  background:rgba(10,10,10,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 10px 34px rgba(0,0,0,.45);
}

.fcp-scope .fcp-header__inner{
  height:var(--fcp-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.fcp-scope .fcp-header__logo img{
  height:44px;
  width:auto;
  filter:grayscale(1) invert(1) brightness(1.6) contrast(1.05);
  transition:transform .35s var(--fcp-ease);
}
.fcp-scope .fcp-header__logo:hover img{ transform:scale(1.05); }

.fcp-scope .fcp-nav{
  display:flex;
  align-items:center;
  gap:30px;
}
.fcp-scope .fcp-nav__link{
  font-family:var(--fcp-display);
  font-weight:500;
  font-size:14px;
  letter-spacing:.03em;
  text-transform:uppercase;
  position:relative;
  padding:6px 0;
  color:var(--fcp-grey-40);
  transition:color .25s var(--fcp-ease);
}
.fcp-scope .fcp-nav__link::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:100%; height:2px;
  background:var(--fcp-paper);
  transform:scaleX(0);
  transform-origin:100% 50%;
  transition:transform .35s var(--fcp-ease-out);
}
.fcp-scope .fcp-nav__link:hover,
.fcp-scope .fcp-nav__link.is-active{ color:var(--fcp-paper); }
.fcp-scope .fcp-nav__link:hover::after,
.fcp-scope .fcp-nav__link.is-active::after{
  transform:scaleX(1);
  transform-origin:0 50%;
}

.fcp-scope .fcp-nav__actions{ display:flex; align-items:center; gap:12px; margin-left:12px; }

.fcp-scope .fcp-burger{
  display:none;
  flex-direction:column;
  gap:6px;
  padding:8px;
}
.fcp-scope .fcp-burger span{
  width:26px; height:2px;
  background:var(--fcp-paper);
  transition:transform .3s var(--fcp-ease), opacity .3s var(--fcp-ease);
}
.fcp-scope .fcp-burger.is-open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.fcp-scope .fcp-burger.is-open span:nth-child(2){ opacity:0; }
.fcp-scope .fcp-burger.is-open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.fcp-scope .fcp-hero{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  padding-top:clamp(72px, 10vw, 140px);
  position:relative;
  overflow:hidden;
}
.fcp-scope .fcp-hero::before{
  content:"";
  position:absolute;
  inset:-140px 0 0 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:72px 72px;
  pointer-events:none;
  transform:translateY(calc(var(--fcp-parallax, 0) * 1px));
  will-change:transform;
}
.fcp-scope .fcp-hero > .fcp-container{ position:relative; }

.fcp-scope .fcp-eyebrow{
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-bottom:28px;
}
.fcp-scope .fcp-eyebrow::before{
  content:"";
  width:44px; height:1px;
  background:var(--fcp-grey-40);
}

.fcp-scope .fcp-hero__title{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(46px, 8.2vw, 112px);
  line-height:1.02;
  letter-spacing:-.02em;
  text-transform:uppercase;
  margin-bottom:44px;
}
.fcp-scope .fcp-hero__title em{
  font-style:normal;
  -webkit-text-stroke:2px var(--fcp-paper);
  color:transparent;
  transition:color .5s var(--fcp-ease);
}
.fcp-scope .fcp-hero__title:hover em{ color:var(--fcp-paper); }

/* Staggered line reveal */
.fcp-scope .fcp-line{
  display:block;
  overflow:hidden;
  padding-bottom:.08em;
  margin-bottom:-.08em;
}
.fcp-scope .fcp-line__inner{
  display:block;
  transform:translateY(112%);
  animation:fcp-line-up .95s var(--fcp-ease-out) forwards;
}
.fcp-scope .fcp-line:nth-child(2) .fcp-line__inner{ animation-delay:.14s; }
@keyframes fcp-line-up{
  to{ transform:translateY(0); }
}

.fcp-scope .fcp-hero__row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:48px;
  padding-bottom:clamp(64px, 8vw, 110px);
}
.fcp-scope .fcp-hero__copy{
  max-width:620px;
  font-size:17px;
  color:#c9c9c9;
}

/* Stats strip */
.fcp-scope .fcp-stats{
  position:relative;
  border-top:1px solid var(--fcp-line-dark);
  background:rgba(255,255,255,.02);
}
.fcp-scope .fcp-stats__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
}
.fcp-scope .fcp-stat{
  padding:44px 32px;
  border-right:1px solid var(--fcp-line-dark);
  transition:background .35s var(--fcp-ease);
}
.fcp-scope .fcp-stat:hover{ background:rgba(255,255,255,.05); }
.fcp-scope .fcp-stat:first-child{ padding-left:var(--fcp-gutter); }
.fcp-scope .fcp-stat:last-child{ border-right:none; }
.fcp-scope .fcp-stat__num{
  display:block;
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(40px, 5vw, 64px);
  line-height:1;
  letter-spacing:-.01em;
}
.fcp-scope .fcp-stat__label{
  display:block;
  margin-top:10px;
  font-family:var(--fcp-mono);
  font-size:12.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
}

/* ==========================================================================
   Section heads
   ========================================================================== */
.fcp-scope .fcp-section-head{
  display:flex;
  align-items:baseline;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:48px;
}
.fcp-scope .fcp-section-head--sub{ margin-top:72px; }

.fcp-scope .fcp-index{
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.12em;
  color:var(--fcp-grey-40);
  border:1px solid currentColor;
  padding:3px 9px;
  border-radius:var(--fcp-radius);
}
.fcp-scope .fcp-section-title{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(28px, 4vw, 46px);
  letter-spacing:-.01em;
  text-transform:uppercase;
  line-height:1.1;
}
.fcp-scope .fcp-section-sub{
  flex-basis:100%;
  font-size:15px;
  color:var(--fcp-grey-60);
  margin-top:6px;
}
.fcp-scope .fcp-section-head--light .fcp-section-sub{ color:var(--fcp-grey-40); }

/* ==========================================================================
   Logo marquees
   ========================================================================== */
.fcp-scope .fcp-logos{
  padding:clamp(72px, 8vw, 110px) 0;
  background:var(--fcp-paper);
  overflow:hidden;
}
.fcp-scope .fcp-marquee{
  position:relative;
  border-block:1px solid var(--fcp-grey-15);
  padding:26px 0;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.fcp-scope .fcp-marquee__track{
  display:flex;
  align-items:center;
  gap:72px;
  width:max-content;
  animation:fcp-marquee 42s linear infinite;
}
.fcp-scope .fcp-marquee--reverse .fcp-marquee__track{ animation-direction:reverse; animation-duration:52s; }
.fcp-scope .fcp-marquee:hover .fcp-marquee__track{ animation-play-state:paused; }

.fcp-scope .fcp-marquee__track img{
  height:44px;
  width:auto;
  object-fit:contain;
  filter:grayscale(1) contrast(1.05);
  opacity:.7;
  transition:opacity .3s var(--fcp-ease), transform .3s var(--fcp-ease);
}
.fcp-scope .fcp-marquee__track img:hover{
  opacity:1;
  transform:scale(1.14);
}

@keyframes fcp-marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ==========================================================================
   Expertise (black band)
   ========================================================================== */
.fcp-scope .fcp-expertise{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  padding:clamp(72px, 8vw, 110px) 0;
}
.fcp-scope .fcp-expertise .fcp-index{ color:var(--fcp-grey-40); }

.fcp-scope .fcp-expertise__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--fcp-line-dark);
  border:1px solid var(--fcp-line-dark);
  perspective:1200px;
}
.fcp-scope .fcp-exp-card{
  background:var(--fcp-ink);
  padding:44px 32px 36px;
  display:flex;
  flex-direction:column;
  gap:56px;
  position:relative;
  transform-style:preserve-3d;
  transition:background .35s var(--fcp-ease), color .35s var(--fcp-ease), transform .2s linear;
  will-change:transform;
}
.fcp-scope .fcp-exp-card__no{
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.12em;
  color:var(--fcp-grey-40);
  transition:color .35s var(--fcp-ease);
}
.fcp-scope .fcp-exp-card h3{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:clamp(20px, 2vw, 26px);
  line-height:1.2;
  letter-spacing:-.01em;
  max-width:14ch;
  transform:translateZ(24px);
}
.fcp-scope .fcp-exp-card__arrow{
  position:absolute;
  right:28px;
  bottom:28px;
  font-size:22px;
  opacity:0;
  transform:translateX(-10px);
  transition:opacity .35s var(--fcp-ease), transform .35s var(--fcp-ease);
}
.fcp-scope .fcp-exp-card:hover{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  z-index:2;
}
.fcp-scope .fcp-exp-card:hover .fcp-exp-card__no{ color:var(--fcp-grey-60); }
.fcp-scope .fcp-exp-card:hover .fcp-exp-card__arrow{ opacity:1; transform:translateX(0); }

/* ==========================================================================
   Solutions (index list)
   ========================================================================== */
.fcp-scope .fcp-solutions{
  background:var(--fcp-paper);
  padding:clamp(72px, 8vw, 110px) 0;
}
.fcp-scope .fcp-sol-list{
  border-top:1px solid var(--fcp-grey-15);
}
.fcp-scope .fcp-sol-list li a{
  display:grid;
  grid-template-columns:64px 1fr 40px;
  align-items:center;
  gap:20px;
  padding:22px 8px;
  border-bottom:1px solid var(--fcp-grey-15);
  position:relative;
  overflow:hidden;
  transition:padding-left .35s var(--fcp-ease-out), color .35s var(--fcp-ease);
}
/* Ink swipe background */
.fcp-scope .fcp-sol-list li a::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--fcp-ink);
  transform:scaleY(0);
  transform-origin:50% 100%;
  transition:transform .38s var(--fcp-ease-out);
  z-index:0;
}
.fcp-scope .fcp-sol-list li a > *{ position:relative; z-index:1; }

.fcp-scope .fcp-sol-list__no{
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.12em;
  color:var(--fcp-grey-40);
  transition:color .35s var(--fcp-ease);
}
.fcp-scope .fcp-sol-list__name{
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:clamp(17px, 2vw, 22px);
  letter-spacing:-.005em;
  transition:transform .35s var(--fcp-ease-out);
}
.fcp-scope .fcp-sol-list__arrow{
  font-size:20px;
  justify-self:end;
  opacity:0;
  transform:translateX(-10px);
  transition:opacity .3s var(--fcp-ease), transform .3s var(--fcp-ease);
}
.fcp-scope .fcp-sol-list li a:hover{
  padding-left:24px;
  color:var(--fcp-paper);
}
.fcp-scope .fcp-sol-list li a:hover::before{
  transform:scaleY(1);
  transform-origin:50% 0%;
}
.fcp-scope .fcp-sol-list li a:hover .fcp-sol-list__no{ color:var(--fcp-grey-40); }
.fcp-scope .fcp-sol-list li a:hover .fcp-sol-list__name{ transform:translateX(6px); }
.fcp-scope .fcp-sol-list li a:hover .fcp-sol-list__arrow{ opacity:1; transform:translateX(0); }

/* ==========================================================================
   Testimonials (black band, slider)
   ========================================================================== */
.fcp-scope .fcp-testimonials{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  padding:clamp(72px, 8vw, 110px) 0;
  overflow:hidden;
}
.fcp-scope .fcp-testimonials .fcp-section-head{ align-items:center; }

.fcp-scope .fcp-t-controls{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:18px;
}
.fcp-scope .fcp-t-btn{
  width:52px; height:52px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  font-size:20px;
  color:var(--fcp-paper);
  display:grid;
  place-items:center;
  transition:background .3s var(--fcp-ease), color .3s var(--fcp-ease),
             border-color .3s var(--fcp-ease), transform .3s var(--fcp-ease);
}
.fcp-scope .fcp-t-btn:hover{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  border-color:var(--fcp-paper);
  transform:scale(1.1);
}
.fcp-scope .fcp-t-btn:active{ transform:scale(.94); }
.fcp-scope .fcp-t-counter{
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.12em;
  color:var(--fcp-grey-40);
}

.fcp-scope .fcp-t-viewport{ overflow:hidden; }
.fcp-scope .fcp-t-track{
  display:flex;
  transition:transform .6s var(--fcp-ease-out);
}
.fcp-scope .fcp-t-slide{
  flex:0 0 100%;
  min-width:100%;
  padding:8px 2px;
  opacity:.25;
  transform:scale(.97);
  transition:opacity .5s var(--fcp-ease), transform .5s var(--fcp-ease);
}
.fcp-scope .fcp-t-slide.is-current{
  opacity:1;
  transform:scale(1);
}
.fcp-scope .fcp-t-slide blockquote{
  font-family:var(--fcp-display);
  font-weight:500;
  font-size:clamp(17px, 2.1vw, 24px);
  line-height:1.55;
  max-width:980px;
  color:#e6e6e6;
  position:relative;
  padding-left:34px;
}
.fcp-scope .fcp-t-slide blockquote::before{
  content:"";
  position:absolute;
  left:0; top:6px; bottom:6px;
  width:3px;
  background:var(--fcp-paper);
}
.fcp-scope .fcp-t-slide footer{
  margin-top:28px;
  padding-left:34px;
  display:flex;
  align-items:baseline;
  gap:14px;
  flex-wrap:wrap;
}
.fcp-scope .fcp-t-slide footer strong{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.fcp-scope .fcp-t-slide footer span{
  font-family:var(--fcp-mono);
  font-size:12.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.fcp-scope .fcp-cta{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  border-top:1px solid var(--fcp-line-dark);
  padding:clamp(72px, 9vw, 130px) 0;
}
.fcp-scope .fcp-cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
  flex-wrap:wrap;
}
.fcp-scope .fcp-cta__title{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(32px, 5vw, 60px);
  line-height:1.08;
  letter-spacing:-.015em;
  text-transform:uppercase;
}
.fcp-scope .fcp-cta__actions{ display:flex; gap:16px; flex-wrap:wrap; }

/* ==========================================================================
   Footer — BLACK
   ========================================================================== */
.fcp-scope .fcp-footer{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  border-top:1px solid var(--fcp-line-dark);
  padding-top:clamp(56px, 7vw, 90px);
}
.fcp-scope .fcp-footer__top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.1fr 1.1fr 1fr;
  gap:40px;
  padding-bottom:56px;
}
.fcp-scope .fcp-footer__logo{
  height:40px;
  width:auto;
  filter:grayscale(1) invert(1) brightness(1.6) contrast(1.05);
  margin-bottom:20px;
  transition:transform .35s var(--fcp-ease);
}
.fcp-scope .fcp-footer__brand a:hover .fcp-footer__logo{ transform:scale(1.05); }
.fcp-scope .fcp-footer__brand p{
  font-size:14.5px;
  color:var(--fcp-grey-40);
  max-width:300px;
}
.fcp-scope .fcp-footer__social{
  display:flex;
  gap:10px;
  margin-top:24px;
}
.fcp-scope .fcp-footer__social a{
  width:42px; height:42px;
  border:1px solid var(--fcp-line-dark);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-family:var(--fcp-mono);
  font-size:12px;
  letter-spacing:.05em;
  color:var(--fcp-grey-40);
  transition:background .3s var(--fcp-ease), color .3s var(--fcp-ease),
             border-color .3s var(--fcp-ease), transform .3s var(--fcp-ease);
}
.fcp-scope .fcp-footer__social a:hover{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  border-color:var(--fcp-paper);
  transform:translateY(-4px);
}

.fcp-scope .fcp-footer__col h5{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:20px;
  color:var(--fcp-paper);
}
.fcp-scope .fcp-footer__col ul li{ margin-bottom:11px; }
.fcp-scope .fcp-footer__col ul a{
  font-size:14px;
  color:var(--fcp-grey-40);
  position:relative;
  transition:color .25s var(--fcp-ease), padding-left .25s var(--fcp-ease);
}
.fcp-scope .fcp-footer__col ul a::before{
  content:"→";
  position:absolute;
  left:-2px;
  opacity:0;
  transform:translateX(-8px);
  transition:opacity .25s var(--fcp-ease), transform .25s var(--fcp-ease);
}
.fcp-scope .fcp-footer__col ul a:hover{
  color:var(--fcp-paper);
  padding-left:20px;
}
.fcp-scope .fcp-footer__col ul a:hover::before{
  opacity:1;
  transform:translateX(0);
}
.fcp-scope .fcp-footer__contact li{ font-size:14px; color:var(--fcp-grey-40); margin-bottom:11px; }
.fcp-scope .fcp-footer__contact a{ transition:color .25s var(--fcp-ease); }
.fcp-scope .fcp-footer__contact a:hover{ color:var(--fcp-paper); }

.fcp-scope .fcp-footer__bottom{
  border-top:1px solid var(--fcp-line-dark);
  padding:22px 0;
}
.fcp-scope .fcp-footer__bottom p{
  font-family:var(--fcp-mono);
  font-size:12.5px;
  letter-spacing:.06em;
  color:var(--fcp-grey-60);
}

/* WhatsApp float */
.fcp-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:900;
  width:58px; height:58px;
  border-radius:50%;
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  display:grid;
  place-items:center;
  border:1px solid var(--fcp-paper);
  box-shadow:0 8px 28px rgba(10,10,10,.35);
  transition:background .3s var(--fcp-ease), color .3s var(--fcp-ease), transform .3s var(--fcp-ease);
}
.fcp-whatsapp:hover{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  transform:translateY(-4px) scale(1.06);
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.fcp-scope .fcp-reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s var(--fcp-ease-out), transform .8s var(--fcp-ease-out);
  transition-delay:var(--fcp-delay, 0s);
}
.fcp-scope .fcp-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .fcp-scope .fcp-footer__top{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 991px){
  .fcp-scope .fcp-burger{ display:flex; }

  .fcp-scope .fcp-nav{
    position:fixed;
    top:var(--fcp-header-h);
    left:0; right:0;
    background:var(--fcp-ink);
    border-bottom:1px solid var(--fcp-line-dark);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px var(--fcp-gutter) 24px;
    transform:translateY(-16px);
    opacity:0;
    visibility:hidden;
    transition:transform .3s var(--fcp-ease), opacity .3s var(--fcp-ease), visibility .3s;
    max-height:calc(100vh - var(--fcp-header-h));
    overflow-y:auto;
  }
  .fcp-scope .fcp-nav.is-open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }
  .fcp-scope .fcp-nav__link{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .fcp-scope .fcp-nav__link::after{ display:none; }
  .fcp-scope .fcp-nav__actions{
    margin:16px 0 0;
    width:100%;
  }
  .fcp-scope .fcp-nav__actions .fcp-btn{ flex:1; justify-content:center; }

  .fcp-scope .fcp-hero__row{ flex-direction:column; align-items:flex-start; gap:32px; }

  .fcp-scope .fcp-expertise__grid{ grid-template-columns:repeat(2, 1fr); }

  .fcp-scope .fcp-t-controls{ margin-left:0; flex-basis:100%; }
}

@media (max-width: 640px){
  :root{ --fcp-header-h:72px; }
  .fcp-scope .fcp-header__logo img{ height:36px; }

  .fcp-scope .fcp-stats__grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-stat{
    border-right:none;
    border-bottom:1px solid var(--fcp-line-dark);
    padding:28px var(--fcp-gutter);
  }
  .fcp-scope .fcp-stat:last-child{ border-bottom:none; }

  .fcp-scope .fcp-expertise__grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-exp-card{ gap:36px; padding:32px 24px 28px; }

  .fcp-scope .fcp-sol-list li a{ grid-template-columns:44px 1fr 30px; gap:12px; }

  .fcp-scope .fcp-marquee__track{ gap:44px; }
  .fcp-scope .fcp-marquee__track img{ height:34px; }

  .fcp-scope .fcp-footer__top{ grid-template-columns:1fr; gap:32px; }

  .fcp-whatsapp{ width:52px; height:52px; right:16px; bottom:16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .fcp-scope .fcp-marquee__track{ animation:none; }
  .fcp-scope .fcp-reveal{ opacity:1; transform:none; transition:none; }
  .fcp-scope .fcp-t-track{ transition:none; }
  .fcp-scope .fcp-line__inner{ animation:none; transform:none; }
  .fcp-cursor-dot,
.fcp-cursor-ring{ display:none; }
  body.fcp-cursor-active,
body.fcp-cursor-active a,
body.fcp-cursor-active button{ cursor:auto; }
  .fcp-scope *{ transition-duration:.01ms !important; animation-duration:.01ms !important; }
}

/* ==========================================================================
   ==========================================================================
   INNER PAGES — Expertise / Solutions / Meet the Team / Blog / Contact
   Same black & white system, extended.
   ==========================================================================
   ========================================================================== */

/* ==========================================================================
   Generic section shells
   ========================================================================== */
.fcp-scope .fcp-sec{
  padding:clamp(64px, 8vw, 110px) 0;
  background:var(--fcp-paper);
  color:var(--fcp-ink);
}
.fcp-scope .fcp-sec--dark{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  border-top:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-sec--tight{ padding:clamp(48px, 6vw, 80px) 0; }
.fcp-scope .fcp-sec--dark .fcp-section-sub{ color:var(--fcp-grey-40); }
.fcp-scope .fcp-sec--dark a:focus-visible,
.fcp-scope .fcp-sec--dark button:focus-visible{ outline-color:var(--fcp-paper); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.fcp-scope .fcp-phero{
  position:relative;
  overflow:hidden;
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  padding:clamp(64px, 9vw, 124px) 0 clamp(56px, 7vw, 96px);
  border-bottom:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-phero::before{
  content:"";
  position:absolute;
  inset:-160px 0 0 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:72px 72px;
  pointer-events:none;
  transform:translateY(calc(var(--fcp-parallax, 0) * 1px));
  will-change:transform;
}
.fcp-scope .fcp-phero::after{
  content:"";
  position:absolute;
  top:-30%;
  right:-10%;
  width:60vw;
  height:60vw;
  max-width:820px;
  max-height:820px;
  background:radial-gradient(circle, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 62%);
  pointer-events:none;
  animation:fcp-breathe 9s ease-in-out infinite alternate;
}
@keyframes fcp-breathe{
  from{ transform:scale(.9); opacity:.7; }
  to{ transform:scale(1.08); opacity:1; }
}
.fcp-scope .fcp-phero > .fcp-container{ position:relative; z-index:1; }

.fcp-scope .fcp-crumbs{
  font-family:var(--fcp-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:26px;
  flex-wrap:wrap;
}
.fcp-scope .fcp-crumbs a{ transition:color .25s var(--fcp-ease); }
.fcp-scope .fcp-crumbs a:hover{ color:var(--fcp-paper); }
.fcp-scope .fcp-crumbs span[aria-current]{ color:var(--fcp-paper); }

.fcp-scope .fcp-phero__title{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(36px, 6.2vw, 82px);
  line-height:1.03;
  letter-spacing:-.02em;
  text-transform:uppercase;
  max-width:min(1100px, 100%);
}
.fcp-scope .fcp-phero__title em{
  font-style:normal;
  -webkit-text-stroke:2px var(--fcp-paper);
  color:transparent;
  transition:color .5s var(--fcp-ease);
}
.fcp-scope .fcp-phero__title:hover em{ color:var(--fcp-paper); }

.fcp-scope .fcp-phero__row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:48px;
  flex-wrap:wrap;
  margin-top:36px;
}
.fcp-scope .fcp-phero__copy{
  max-width:660px;
  font-size:17px;
  color:#c9c9c9;
}
.fcp-scope .fcp-phero__copy + .fcp-phero__copy{ margin-top:16px; }
.fcp-scope .fcp-phero__actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* Small metric ticker under inner hero */
.fcp-scope .fcp-ticker{
  position:relative;
  z-index:1;
  margin-top:clamp(40px, 5vw, 68px);
  border-top:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-ticker__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
}
.fcp-scope .fcp-ticker__item{
  padding:30px 28px;
  border-right:1px solid var(--fcp-line-dark);
  transition:background .35s var(--fcp-ease);
}
.fcp-scope .fcp-ticker__item:first-child{ padding-left:var(--fcp-gutter); }
.fcp-scope .fcp-ticker__item:last-child{ border-right:none; }
.fcp-scope .fcp-ticker__item:hover{ background:rgba(255,255,255,.05); }
.fcp-scope .fcp-ticker__num{
  display:block;
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(30px, 3.4vw, 44px);
  line-height:1;
}
.fcp-scope .fcp-ticker__label{
  display:block;
  margin-top:8px;
  font-family:var(--fcp-mono);
  font-size:11.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
}

/* ==========================================================================
   Industry cards (Expertise page)
   ========================================================================== */
.fcp-scope .fcp-ind-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--fcp-grey-15);
  border:1px solid var(--fcp-grey-15);
}
.fcp-scope .fcp-ind{
  position:relative;
  overflow:hidden;
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  padding:38px 30px 30px;
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:100%;
  transition:color .4s var(--fcp-ease);
}
.fcp-scope .fcp-ind::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--fcp-ink);
  transform:scaleY(0);
  transform-origin:50% 100%;
  transition:transform .45s var(--fcp-ease-out);
  z-index:0;
}
.fcp-scope .fcp-ind > *{ position:relative; z-index:1; }

.fcp-scope .fcp-ind__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.fcp-scope .fcp-ind__icon{
  width:54px; height:54px;
  display:grid;
  place-items:center;
  border:1px solid var(--fcp-grey-15);
  border-radius:var(--fcp-radius);
  transition:border-color .4s var(--fcp-ease), transform .5s var(--fcp-ease-out), background .4s var(--fcp-ease);
}
.fcp-scope .fcp-ind__icon svg{ width:24px; height:24px; }
.fcp-scope .fcp-ind__no{
  font-family:var(--fcp-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  color:var(--fcp-grey-40);
}
.fcp-scope .fcp-ind h3{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:clamp(20px, 2vw, 25px);
  line-height:1.18;
  letter-spacing:-.01em;
}
.fcp-scope .fcp-ind p{
  font-size:15px;
  line-height:1.7;
  color:var(--fcp-grey-60);
  transition:color .4s var(--fcp-ease);
  flex:1;
}
.fcp-scope .fcp-ind__more{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding-top:18px;
  border-top:1px solid var(--fcp-grey-15);
  transition:border-color .4s var(--fcp-ease), gap .3s var(--fcp-ease);
}
.fcp-scope .fcp-ind__more span{ transition:transform .35s var(--fcp-ease); }

.fcp-scope .fcp-ind:hover::before{ transform:scaleY(1); transform-origin:50% 0%; }
.fcp-scope .fcp-ind:hover{ color:var(--fcp-paper); }
.fcp-scope .fcp-ind:hover p{ color:#bdbdbd; }
.fcp-scope .fcp-ind:hover .fcp-ind__icon{
  border-color:var(--fcp-paper);
  background:rgba(255,255,255,.06);
  transform:rotate(-6deg) scale(1.06);
}
.fcp-scope .fcp-ind:hover .fcp-ind__more{ border-color:var(--fcp-line-dark); }
.fcp-scope .fcp-ind:hover .fcp-ind__more span{ transform:translateX(7px); }

/* ==========================================================================
   Process strip (numbered, dark)
   ========================================================================== */
.fcp-scope .fcp-steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--fcp-line-dark);
  border:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-step{
  background:var(--fcp-ink);
  padding:34px 26px 30px;
  transition:background .35s var(--fcp-ease);
}
.fcp-scope .fcp-step:hover{ background:rgba(255,255,255,.05); }
.fcp-scope .fcp-step__no{
  font-family:var(--fcp-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  color:var(--fcp-grey-40);
  display:block;
  margin-bottom:22px;
}
.fcp-scope .fcp-step h3{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:19px;
  letter-spacing:-.005em;
  margin-bottom:10px;
}
.fcp-scope .fcp-step p{
  font-size:14.5px;
  line-height:1.7;
  color:var(--fcp-grey-40);
}

/* ==========================================================================
   Solutions accordion
   ========================================================================== */
.fcp-scope .fcp-toolbar{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.fcp-scope .fcp-search{
  position:relative;
  flex:1;
  min-width:240px;
  max-width:420px;
}
.fcp-scope .fcp-search input{
  width:100%;
  font-family:var(--fcp-body);
  font-size:16px;
  color:inherit;
  background:transparent;
  border:1px solid var(--fcp-grey-15);
  border-radius:var(--fcp-radius);
  padding:14px 44px 14px 16px;
  transition:border-color .3s var(--fcp-ease), box-shadow .3s var(--fcp-ease);
}
.fcp-scope .fcp-search input::placeholder{ color:var(--fcp-grey-40); }
.fcp-scope .fcp-search input:focus{
  outline:none;
  border-color:var(--fcp-ink);
  box-shadow:0 0 0 3px rgba(10,10,10,.07);
}
.fcp-scope .fcp-search__icon{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  color:var(--fcp-grey-40);
}
.fcp-scope .fcp-sec--dark .fcp-search input{ border-color:var(--fcp-line-dark); }
.fcp-scope .fcp-sec--dark .fcp-search input:focus{
  border-color:var(--fcp-paper);
  box-shadow:0 0 0 3px rgba(255,255,255,.1);
}
.fcp-scope .fcp-count-label{
  font-family:var(--fcp-mono);
  font-size:12.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  margin-left:auto;
}

.fcp-scope .fcp-acc{ border-top:1px solid var(--fcp-grey-15); }
.fcp-scope .fcp-acc__item{ border-bottom:1px solid var(--fcp-grey-15); }
.fcp-scope .fcp-acc__item[hidden]{ display:none; }

.fcp-scope .fcp-acc__head{
  width:100%;
  display:grid;
  grid-template-columns:62px 1fr 42px;
  align-items:center;
  gap:20px;
  padding:22px 10px;
  text-align:left;
  position:relative;
  overflow:hidden;
  color:inherit;
  transition:padding-left .35s var(--fcp-ease-out), color .35s var(--fcp-ease);
}
.fcp-scope .fcp-acc__head::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--fcp-ink);
  transform:scaleY(0);
  transform-origin:50% 100%;
  transition:transform .4s var(--fcp-ease-out);
  z-index:0;
}
.fcp-scope .fcp-acc__head > *{ position:relative; z-index:1; }
.fcp-scope .fcp-acc__no{
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.12em;
  color:var(--fcp-grey-40);
}
.fcp-scope .fcp-acc__name{
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:clamp(17px, 2vw, 22px);
  letter-spacing:-.005em;
  transition:transform .35s var(--fcp-ease-out);
}
.fcp-scope .fcp-acc__sign{
  justify-self:end;
  width:38px; height:38px;
  border:1px solid var(--fcp-grey-15);
  border-radius:50%;
  display:grid;
  place-items:center;
  position:relative;
  transition:border-color .35s var(--fcp-ease), transform .45s var(--fcp-ease-out), background .35s var(--fcp-ease);
}
.fcp-scope .fcp-acc__sign::before,
.fcp-scope .fcp-acc__sign::after{
  content:"";
  position:absolute;
  background:currentColor;
  transition:transform .4s var(--fcp-ease-out), opacity .3s var(--fcp-ease);
}
.fcp-scope .fcp-acc__sign::before{ width:13px; height:1.5px; }
.fcp-scope .fcp-acc__sign::after{ width:1.5px; height:13px; }

.fcp-scope .fcp-acc__head:hover{ padding-left:26px; color:var(--fcp-paper); }
.fcp-scope .fcp-acc__head:hover::before{ transform:scaleY(1); transform-origin:50% 0%; }
.fcp-scope .fcp-acc__head:hover .fcp-acc__name{ transform:translateX(6px); }
.fcp-scope .fcp-acc__head:hover .fcp-acc__sign{ border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.08); }

.fcp-scope .fcp-acc__item.is-open .fcp-acc__head{ color:var(--fcp-paper); padding-left:26px; }
.fcp-scope .fcp-acc__item.is-open .fcp-acc__head::before{ transform:scaleY(1); transform-origin:50% 0%; }
.fcp-scope .fcp-acc__item.is-open .fcp-acc__sign{ transform:rotate(135deg); border-color:rgba(255,255,255,.4); }
.fcp-scope .fcp-acc__item.is-open .fcp-acc__sign::after{ opacity:0; }

.fcp-scope .fcp-acc__panel{
  max-height:0;
  overflow:hidden;
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  transition:max-height .5s var(--fcp-ease-out);
}
.fcp-scope .fcp-acc__panel-in{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:20px;
  padding:0 10px 30px 26px;
}
.fcp-scope .fcp-acc__panel p{
  font-size:15.5px;
  line-height:1.75;
  color:#c4c4c4;
  max-width:78ch;
}
.fcp-scope .fcp-acc__panel .fcp-ind__more{
  margin-top:20px;
  border-top:none;
  padding-top:0;
  color:var(--fcp-paper);
}
.fcp-scope .fcp-acc__panel .fcp-ind__more:hover span{ transform:translateX(7px); }

/* ==========================================================================
   Filter tabs
   ========================================================================== */
.fcp-scope .fcp-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.fcp-scope .fcp-tab{
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:11px 20px;
  border:1px solid var(--fcp-grey-15);
  border-radius:100px;
  color:var(--fcp-grey-60);
  position:relative;
  overflow:hidden;
  transition:color .3s var(--fcp-ease), border-color .3s var(--fcp-ease), transform .3s var(--fcp-ease);
}
.fcp-scope .fcp-tab::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--fcp-ink);
  transform:translateY(101%);
  transition:transform .38s var(--fcp-ease-out);
  z-index:-1;
}
.fcp-scope .fcp-tab:hover{ color:var(--fcp-ink); border-color:var(--fcp-ink); transform:translateY(-2px); }
.fcp-scope .fcp-tab.is-active{
  background:var(--fcp-ink);
  border-color:var(--fcp-ink);
  color:var(--fcp-paper);
}
.fcp-scope .fcp-tab__n{
  font-family:var(--fcp-mono);
  font-size:11px;
  opacity:.6;
  margin-left:8px;
}

/* ==========================================================================
   Team
   ========================================================================== */
.fcp-scope .fcp-lead-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1px;
  background:var(--fcp-line-dark);
  border:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-lead{
  background:var(--fcp-ink);
  padding:38px 34px;
  display:grid;
  grid-template-columns:150px 1fr;
  gap:28px;
  align-items:start;
  transition:background .4s var(--fcp-ease);
}
.fcp-scope .fcp-lead:hover{ background:rgba(255,255,255,.04); }
.fcp-scope .fcp-lead__photo{
  position:relative;
  overflow:hidden;
  border:1px solid var(--fcp-line-dark);
  aspect-ratio:1/1;
}
.fcp-scope .fcp-lead__photo img{
  width:100%; height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.08);
  transition:transform .8s var(--fcp-ease-out), filter .5s var(--fcp-ease);
}
.fcp-scope .fcp-lead:hover .fcp-lead__photo img{ transform:scale(1.07); filter:grayscale(1) contrast(1.18) brightness(1.05); }
.fcp-scope .fcp-lead__tag{
  font-family:var(--fcp-mono);
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  display:block;
  margin-bottom:10px;
}
.fcp-scope .fcp-lead h3{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(21px, 2.2vw, 27px);
  letter-spacing:-.01em;
  margin-bottom:14px;
}
.fcp-scope .fcp-lead p{
  font-size:14.5px;
  line-height:1.75;
  color:var(--fcp-grey-40);
}

.fcp-scope .fcp-team-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.fcp-scope .fcp-mem{
  display:flex;
  flex-direction:column;
  background:var(--fcp-paper);
  border:1px solid var(--fcp-grey-15);
  overflow:hidden;
  transition:transform .45s var(--fcp-ease-out), box-shadow .45s var(--fcp-ease-out), border-color .35s var(--fcp-ease);
}
.fcp-scope .fcp-mem[hidden]{ display:none; }
.fcp-scope .fcp-mem__media{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  background:var(--fcp-grey-05);
}
.fcp-scope .fcp-mem__media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center top;
  filter:grayscale(1) contrast(1.06);
  transition:transform .8s var(--fcp-ease-out), filter .5s var(--fcp-ease);
}
.fcp-scope .fcp-mem__badge{
  position:absolute;
  left:0; top:0;
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  font-family:var(--fcp-mono);
  font-size:10.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:6px 12px;
}
.fcp-scope .fcp-mem__body{
  padding:24px 24px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.fcp-scope .fcp-mem h3{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:19px;
  letter-spacing:-.005em;
}
.fcp-scope .fcp-mem__role{
  font-family:var(--fcp-mono);
  font-size:11.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
}
.fcp-scope .fcp-mem p{
  font-size:14.5px;
  line-height:1.7;
  color:var(--fcp-grey-60);
  flex:1;
}
.fcp-scope .fcp-mem__foot{
  border-top:1px solid var(--fcp-grey-15);
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.fcp-scope .fcp-li{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:gap .3s var(--fcp-ease), opacity .3s var(--fcp-ease);
}
.fcp-scope .fcp-li svg{ width:16px; height:16px; }
.fcp-scope .fcp-li:hover{ gap:14px; }
.fcp-scope .fcp-li--off{ color:var(--fcp-grey-40); cursor:default; }
.fcp-scope .fcp-mem__idx{
  font-family:var(--fcp-mono);
  font-size:11.5px;
  letter-spacing:.12em;
  color:var(--fcp-grey-40);
}
.fcp-scope .fcp-mem:hover{
  transform:translateY(-8px);
  border-color:var(--fcp-ink);
  box-shadow:0 22px 44px rgba(10,10,10,.12);
}
.fcp-scope .fcp-mem:hover .fcp-mem__media img{ transform:scale(1.07); filter:grayscale(1) contrast(1.16) brightness(1.04); }

/* ==========================================================================
   Blog
   ========================================================================== */
.fcp-scope .fcp-feature{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:1px;
  background:var(--fcp-grey-15);
  border:1px solid var(--fcp-grey-15);
  margin-bottom:56px;
}
.fcp-scope .fcp-feature__media{
  position:relative;
  overflow:hidden;
  min-height:320px;
  background:var(--fcp-ink);
}
.fcp-scope .fcp-feature__media img{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.06);
  transition:transform .9s var(--fcp-ease-out);
}
.fcp-scope .fcp-feature:hover .fcp-feature__media img{ transform:scale(1.05); }
.fcp-scope .fcp-feature__flag{
  position:absolute;
  left:0; top:0;
  z-index:2;
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  font-family:var(--fcp-mono);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:8px 14px;
}
.fcp-scope .fcp-feature__body{
  background:var(--fcp-paper);
  padding:clamp(28px, 3.4vw, 48px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
}
.fcp-scope .fcp-feature__body h3{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(22px, 2.7vw, 34px);
  line-height:1.18;
  letter-spacing:-.015em;
}
.fcp-scope .fcp-feature__body h3 a{
  background-image:linear-gradient(currentColor, currentColor);
  background-size:0% 2px;
  background-repeat:no-repeat;
  background-position:0 100%;
  transition:background-size .45s var(--fcp-ease-out);
}
.fcp-scope .fcp-feature__body h3 a:hover{ background-size:100% 2px; }
.fcp-scope .fcp-feature__body p{ color:var(--fcp-grey-60); font-size:15.5px; }

.fcp-scope .fcp-meta{
  font-family:var(--fcp-mono);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  display:flex;
  align-items:center;
  gap:12px;
}
.fcp-scope .fcp-meta::before{
  content:"";
  width:26px; height:1px;
  background:currentColor;
}

.fcp-scope .fcp-post-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.fcp-scope .fcp-post{
  display:flex;
  flex-direction:column;
  background:var(--fcp-paper);
  border:1px solid var(--fcp-grey-15);
  overflow:hidden;
  transition:transform .45s var(--fcp-ease-out), box-shadow .45s var(--fcp-ease-out), border-color .35s var(--fcp-ease);
}
.fcp-scope .fcp-post[hidden]{ display:none; }
.fcp-scope .fcp-post__media{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
  background:var(--fcp-ink);
}
.fcp-scope .fcp-post__media img{
  width:100%; height:100%;
  object-fit:cover;
  filter:grayscale(1) contrast(1.05);
  transition:transform .8s var(--fcp-ease-out), filter .5s var(--fcp-ease);
}
.fcp-scope .fcp-post__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,0) 45%, rgba(10,10,10,.5) 100%);
  opacity:0;
  transition:opacity .4s var(--fcp-ease);
}
.fcp-scope .fcp-post__body{
  padding:22px 22px 8px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.fcp-scope .fcp-post h3{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:18px;
  line-height:1.32;
  letter-spacing:-.005em;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.fcp-scope .fcp-post p{
  font-size:14.5px;
  line-height:1.68;
  color:var(--fcp-grey-60);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  flex:1;
}
.fcp-scope .fcp-post__foot{
  padding:16px 22px 20px;
  margin-top:auto;
}
.fcp-scope .fcp-post__link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:12.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  position:relative;
}
.fcp-scope .fcp-post__link::after{
  content:"";
  position:absolute;
  left:0; bottom:-4px;
  width:100%; height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:100% 50%;
  transition:transform .4s var(--fcp-ease-out);
}
.fcp-scope .fcp-post__link span{ transition:transform .3s var(--fcp-ease); }
.fcp-scope .fcp-post:hover{
  transform:translateY(-8px);
  border-color:var(--fcp-ink);
  box-shadow:0 24px 46px rgba(10,10,10,.13);
}
.fcp-scope .fcp-post:hover .fcp-post__media img{ transform:scale(1.08); filter:grayscale(1) contrast(1.14) brightness(1.03); }
.fcp-scope .fcp-post:hover .fcp-post__media::after{ opacity:1; }
.fcp-scope .fcp-post:hover .fcp-post__link::after{ transform:scaleX(1); transform-origin:0 50%; }
.fcp-scope .fcp-post:hover .fcp-post__link span{ transform:translateX(6px); }

.fcp-scope .fcp-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:48px;
}
.fcp-scope .fcp-btn--ink{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  border-color:var(--fcp-ink);
  padding:17px 38px;
}
.fcp-scope .fcp-btn--ink:hover{ background:transparent; color:var(--fcp-ink); }
.fcp-scope .fcp-btn--line{
  background:transparent;
  color:var(--fcp-ink);
  border-color:var(--fcp-ink);
  padding:17px 34px;
}
.fcp-scope .fcp-btn--line:hover{ background:var(--fcp-ink); color:var(--fcp-paper); }

.fcp-scope .fcp-empty{
  border:1px dashed var(--fcp-grey-15);
  padding:56px 24px;
  text-align:center;
  color:var(--fcp-grey-60);
  font-family:var(--fcp-mono);
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.fcp-scope .fcp-empty[hidden]{ display:none; }

/* ==========================================================================
   Contact
   ========================================================================== */
.fcp-scope .fcp-contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:1px;
  background:var(--fcp-line-dark);
  border:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-cpanel{
  background:var(--fcp-ink);
  color:var(--fcp-paper);
  padding:clamp(30px, 3.6vw, 50px);
}
.fcp-scope .fcp-cpanel--form{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
}
.fcp-scope .fcp-cpanel h2{
  font-family:var(--fcp-display);
  font-weight:800;
  font-size:clamp(24px, 2.8vw, 34px);
  line-height:1.15;
  letter-spacing:-.015em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.fcp-scope .fcp-cpanel__lead{
  font-size:15px;
  color:var(--fcp-grey-40);
  margin-bottom:34px;
  max-width:44ch;
}
.fcp-scope .fcp-cpanel--form .fcp-cpanel__lead{ color:var(--fcp-grey-60); }

.fcp-scope .fcp-cinfo{ display:flex; flex-direction:column; }
.fcp-scope .fcp-cinfo li{
  border-top:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-cinfo li:last-child{ border-bottom:1px solid var(--fcp-line-dark); }
.fcp-scope .fcp-cinfo__row{
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px 4px;
  transition:padding-left .35s var(--fcp-ease-out);
}
.fcp-scope a.fcp-cinfo__row:hover{ padding-left:14px; }
.fcp-scope .fcp-cinfo__ico{
  width:40px; height:40px;
  flex:none;
  border:1px solid var(--fcp-line-dark);
  border-radius:50%;
  display:grid;
  place-items:center;
  transition:background .3s var(--fcp-ease), color .3s var(--fcp-ease), border-color .3s var(--fcp-ease);
}
.fcp-scope .fcp-cinfo__ico svg{ width:17px; height:17px; }
.fcp-scope a.fcp-cinfo__row:hover .fcp-cinfo__ico{
  background:var(--fcp-paper);
  color:var(--fcp-ink);
  border-color:var(--fcp-paper);
}
.fcp-scope .fcp-cinfo__k{
  display:block;
  font-family:var(--fcp-mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  margin-bottom:3px;
}
.fcp-scope .fcp-cinfo__v{
  display:block;
  font-family:var(--fcp-display);
  font-weight:600;
  font-size:16px;
  letter-spacing:-.005em;
}

.fcp-scope .fcp-hours{
  margin-top:32px;
  font-family:var(--fcp-mono);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  display:flex;
  align-items:center;
  gap:10px;
}
.fcp-scope .fcp-dot{
  width:8px; height:8px;
  border-radius:50%;
  background:var(--fcp-paper);
  position:relative;
}
.fcp-scope .fcp-dot::after{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:50%;
  border:1px solid var(--fcp-paper);
  opacity:.6;
  animation:fcp-pulse 2.2s ease-out infinite;
}
@keyframes fcp-pulse{
  0%{ transform:scale(.6); opacity:.7; }
  100%{ transform:scale(1.5); opacity:0; }
}

/* Form */
.fcp-scope .fcp-form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.fcp-scope .fcp-field{
  position:relative;
  margin-bottom:26px;
}
.fcp-scope .fcp-field label{
  position:absolute;
  left:0;
  top:18px;
  font-size:15px;
  color:var(--fcp-grey-40);
  pointer-events:none;
  transform-origin:0 50%;
  transition:transform .28s var(--fcp-ease-out), color .28s var(--fcp-ease);
}
.fcp-scope .fcp-field input,
.fcp-scope .fcp-field select,
.fcp-scope .fcp-field textarea{
  width:100%;
  font-family:var(--fcp-body);
  font-size:16px;
  line-height:1.5;
  color:var(--fcp-ink);
  background:transparent;
  border:none;
  border-bottom:1px solid var(--fcp-grey-15);
  border-radius:0;
  padding:18px 0 12px;
  transition:border-color .3s var(--fcp-ease);
  appearance:none;
  -webkit-appearance:none;
}
.fcp-scope .fcp-field textarea{ resize:vertical; min-height:120px; }
.fcp-scope .fcp-field input:focus,
.fcp-scope .fcp-field select:focus,
.fcp-scope .fcp-field textarea:focus{ outline:none; border-color:var(--fcp-ink); }
.fcp-scope .fcp-field input::placeholder,
.fcp-scope .fcp-field textarea::placeholder{ color:transparent; }

.fcp-scope .fcp-field input:focus + label,
.fcp-scope .fcp-field textarea:focus + label,
.fcp-scope .fcp-field input:not(:placeholder-shown) + label,
.fcp-scope .fcp-field textarea:not(:placeholder-shown) + label,
.fcp-scope .fcp-field select:focus + label,
.fcp-scope .fcp-field.is-filled label{
  transform:translateY(-17px) scale(.76);
  color:var(--fcp-ink);
}
.fcp-scope .fcp-field select + label{ transform:translateY(-17px) scale(.76); color:var(--fcp-grey-60); }
.fcp-scope .fcp-field select{ color:var(--fcp-grey-40); cursor:pointer; }
.fcp-scope .fcp-field.is-filled select{ color:var(--fcp-ink); }
.fcp-scope .fcp-field__chev{
  position:absolute;
  right:2px;
  bottom:16px;
  pointer-events:none;
  color:var(--fcp-grey-40);
  transition:transform .3s var(--fcp-ease);
}
.fcp-scope .fcp-field select:focus ~ .fcp-field__chev{ transform:rotate(180deg); color:var(--fcp-ink); }

.fcp-scope .fcp-field.is-error input,
.fcp-scope .fcp-field.is-error select,
.fcp-scope .fcp-field.is-error textarea{ border-color:var(--fcp-ink); border-bottom-width:2px; }
.fcp-scope .fcp-field__err{
  display:none;
  margin-top:7px;
  font-family:var(--fcp-mono);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--fcp-ink);
}
.fcp-scope .fcp-field.is-error .fcp-field__err{ display:block; }

.fcp-scope .fcp-form__submit{ width:100%; justify-content:center; margin-top:6px; }
.fcp-scope .fcp-form__note{
  margin-top:16px;
  font-family:var(--fcp-mono);
  font-size:11px;
  letter-spacing:.08em;
  color:var(--fcp-grey-40);
  text-transform:uppercase;
}
.fcp-scope .fcp-form__ok{
  display:none;
  margin-top:20px;
  border:1px solid var(--fcp-ink);
  padding:16px 18px;
  font-size:14.5px;
}
.fcp-scope .fcp-form__ok.is-shown{ display:block; animation:fcp-pop .45s var(--fcp-ease-out); }
@keyframes fcp-pop{
  from{ opacity:0; transform:translateY(10px); }
  to{ opacity:1; transform:translateY(0); }
}

/* Booking card */
.fcp-scope .fcp-book{
  margin-top:36px;
  border:1px solid var(--fcp-line-dark);
  padding:24px;
  display:flex;
  align-items:center;
  gap:18px;
  transition:background .35s var(--fcp-ease), transform .35s var(--fcp-ease-out);
}
.fcp-scope .fcp-book:hover{ background:rgba(255,255,255,.05); transform:translateY(-3px); }
.fcp-scope .fcp-book__avatar{
  width:56px; height:56px;
  flex:none;
  border-radius:50%;
  overflow:hidden;
  border:1px solid var(--fcp-line-dark);
}
.fcp-scope .fcp-book__avatar img{ width:100%; height:100%; object-fit:cover; filter:grayscale(1) contrast(1.1); }
.fcp-scope .fcp-book__k{
  font-family:var(--fcp-mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--fcp-grey-40);
  display:block;
  margin-bottom:4px;
}
.fcp-scope .fcp-book__v{
  font-family:var(--fcp-display);
  font-weight:700;
  font-size:16px;
}
.fcp-scope .fcp-book__arrow{ margin-left:auto; font-size:20px; transition:transform .3s var(--fcp-ease); }
.fcp-scope .fcp-book:hover .fcp-book__arrow{ transform:translateX(6px); }

/* ==========================================================================
   Inner-page responsive
   ========================================================================== */
@media (max-width: 1080px){
  .fcp-scope .fcp-ind-grid{ grid-template-columns:repeat(2, 1fr); }
  .fcp-scope .fcp-team-grid{ grid-template-columns:repeat(2, 1fr); }
  .fcp-scope .fcp-post-grid{ grid-template-columns:repeat(2, 1fr); }
  .fcp-scope .fcp-steps{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width: 991px){
  .fcp-scope .fcp-phero__row{ flex-direction:column; align-items:flex-start; gap:28px; }
  .fcp-scope .fcp-lead-grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-contact-grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-feature{ grid-template-columns:1fr; }
  .fcp-scope .fcp-feature__media{ min-height:0; width:100%; aspect-ratio:16/9; }
}

@media (max-width: 640px){
  .fcp-scope .fcp-ind-grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-team-grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-post-grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-steps{ grid-template-columns:1fr; }

  .fcp-scope .fcp-ticker__grid{ grid-template-columns:1fr; }
  .fcp-scope .fcp-ticker__item{
    border-right:none;
    border-bottom:1px solid var(--fcp-line-dark);
    padding:22px var(--fcp-gutter);
  }
  .fcp-scope .fcp-ticker__item:last-child{ border-bottom:none; }

  .fcp-scope .fcp-acc__head{ grid-template-columns:42px 1fr 34px; gap:12px; }
  .fcp-scope .fcp-acc__panel-in{ grid-template-columns:1fr; padding-left:14px; padding-right:6px; }
  .fcp-scope .fcp-acc__head:hover,
.fcp-scope .fcp-acc__item.is-open .fcp-acc__head{ padding-left:14px; }

  .fcp-scope .fcp-lead{ grid-template-columns:1fr; gap:22px; padding:28px 22px; }
  .fcp-scope .fcp-lead__photo{ max-width:150px; }

  .fcp-scope .fcp-form__row{ grid-template-columns:1fr; gap:0; }
  .fcp-scope .fcp-cpanel{ padding:28px 22px; }

  .fcp-scope .fcp-toolbar{ gap:12px; }
  .fcp-scope .fcp-count-label{ margin-left:0; }
}

/* Align grid collapse with Elementor's mobile breakpoint (≤767px).
   Elementor's own responsive-control rules are more specific and still win,
   so panel overrides keep working. This only catches the 641–767px band and
   any context where Elementor's generated CSS is absent. */
@media (max-width: 767px){
  .fcp-scope .fcp-ind-grid,
  .fcp-scope .fcp-team-grid,
  .fcp-scope .fcp-post-grid,
  .fcp-scope .fcp-steps,
  .fcp-scope .fcp-steps--3,
  .fcp-scope .fcp-expertise__grid,
  .fcp-scope .fcp-lead-grid{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  .fcp-scope .fcp-phero::after{ animation:none; }
  .fcp-scope .fcp-dot::after{ animation:none; }
}

/* ==========================================================================
   Utilities + late fixes (inner pages)
   ========================================================================== */
.fcp-visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
  border:0;
}

.fcp-scope .fcp-cta__copy{
  margin-top:18px;
  max-width:640px;
  font-size:16px;
  line-height:1.7;
  color:#c3c3c3;
}

/* Anchors used as media blocks must be block-level */
.fcp-scope a.fcp-post__media,
.fcp-scope a.fcp-feature__media{ display:block; }

/* 3-up variant of the numbered strip */
.fcp-scope .fcp-steps--3{ grid-template-columns:repeat(3, 1fr); }

@media (max-width: 1080px){
  .fcp-scope .fcp-steps--3{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 640px){
  .fcp-scope .fcp-steps--3{ grid-template-columns:1fr; }
}

/* Contact: lift the info panel slightly off the section background */
.fcp-scope .fcp-contact-grid .fcp-cpanel{ background:var(--fcp-ink-soft); }
.fcp-scope .fcp-contact-grid .fcp-cpanel--form{ background:var(--fcp-paper); }

/* ==========================================================================
   ==========================================================================/* ==========================================================================
   FinCheck Pages Widgets — widget-level helpers
   ========================================================================== */

/* Header position modes (Elementor control: fcp_header_position) */
.fcp-scope .fcp-header.fcp-header--static{ position:static; }
.fcp-scope .fcp-header.fcp-header--sticky{ position:sticky; top:0; }
.fcp-scope .fcp-header.fcp-header--fixed{ position:fixed; top:0; left:0; right:0; }

/* A fixed header is removed from flow, so the widget reserves its own height */
.elementor-widget-fcp-header .fcp-scope.fcp-scope--fixed-head{
  height:var(--fcp-header-h);
}

/* Sticky needs a non-clipping ancestor chain */
.elementor-widget-fcp-header,
.elementor-widget-fcp-header > .elementor-widget-container{ overflow:visible; }

/* Full-bleed helper: lets a widget escape a narrow Elementor container */
.fcp-scope.fcp-full-bleed{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* Container width override hook (Elementor control writes --fcp-container) */
.fcp-scope .fcp-container{ max-width:var(--fcp-container); }

/* Marquee speed presets */
.fcp-scope .fcp-marquee[data-speed="slower"] .fcp-marquee__track{ animation-duration:80s; }
.fcp-scope .fcp-marquee[data-speed="slow"]   .fcp-marquee__track{ animation-duration:55s; }
.fcp-scope .fcp-marquee[data-speed="normal"] .fcp-marquee__track{ animation-duration:38s; }
.fcp-scope .fcp-marquee[data-speed="fast"]   .fcp-marquee__track{ animation-duration:24s; }

/* Logo colour mode */
.fcp-scope .fcp-marquee--colour .fcp-marquee__track img{ filter:none; }

/* Editor: reveal animations must never leave content invisible in the panel */
.elementor-editor-active .fcp-scope .fcp-reveal,
.elementor-editor-preview .fcp-scope .fcp-reveal{ opacity:1; transform:none; }
.elementor-editor-active .fcp-scope .fcp-line__inner,
.elementor-editor-preview .fcp-scope .fcp-line__inner{ transform:none; animation:none; }

/* Empty-widget placeholder in the editor */
.fcp-empty-note{
  padding:22px;
  border:1px dashed #b5b5b5;
  font:13px/1.5 'IBM Plex Mono', monospace;
  color:#6d6d6d;
  text-align:center;
}

/* Floating WhatsApp — widget can move it to the left */
.fcp-whatsapp.fcp-whatsapp--left{ right:auto; left:26px; }
@media (max-width:640px){
  .fcp-whatsapp.fcp-whatsapp--left{ right:auto; left:16px; }
}

/* Hidden utility used by the JS filters */
.fcp-scope [hidden]{ display:none !important; }

/* Form failure notice (mirrors .fcp-form__ok) */
.fcp-scope .fcp-form__fail{
  display:none;
  margin-top:22px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.06);
  font-size:14.5px;
  line-height:1.6;
}
.fcp-scope .fcp-form__fail.is-shown{ display:block; animation:fcp-pop .45s var(--fcp-ease-out); }
.fcp-scope .fcp-form__submit.is-busy{ opacity:.55; pointer-events:none; }

/* Slider control modifiers */
.fcp-scope .fcp-t-btn--prev,
.fcp-scope .fcp-t-btn--next{ /* inherits .fcp-t-btn */ }

/* ==========================================================================
   Modifier classes introduced by the widgets
   ========================================================================== */

/* Background decoration toggles */
.fcp-scope .fcp-hero--nogrid::before,
.fcp-scope .fcp-phero--nogrid::before{ display:none !important; }
.fcp-scope .fcp-phero--noglow::after{ display:none !important; }

/* Section with no top hairline — used when a section sits directly under the hero */
.fcp-scope .fcp-sec--flush{ border-top:none !important; }

/* Headline line reveal — the source only staggered two lines; widgets allow more */
.fcp-scope .fcp-line:nth-child(1) .fcp-line__inner{ animation-delay:0s; }
.fcp-scope .fcp-line:nth-child(2) .fcp-line__inner{ animation-delay:.14s; }
.fcp-scope .fcp-line:nth-child(3) .fcp-line__inner{ animation-delay:.28s; }
.fcp-scope .fcp-line:nth-child(4) .fcp-line__inner{ animation-delay:.42s; }
.fcp-scope .fcp-line:nth-child(5) .fcp-line__inner{ animation-delay:.56s; }
.fcp-scope .fcp-line:nth-child(6) .fcp-line__inner{ animation-delay:.70s; }
.fcp-scope .fcp-line:nth-child(n+7) .fcp-line__inner{ animation-delay:.84s; }

/* CTA layout variants */
.fcp-scope .fcp-cta__inner--stack,
.fcp-scope .fcp-cta__inner--center{
  flex-direction:column;
  align-items:flex-start;
}
.fcp-scope .fcp-cta__inner--center{
  align-items:center;
  text-align:center;
}
.fcp-scope .fcp-cta__inner--center .fcp-cta__actions{ justify-content:center; }
.fcp-scope .fcp-cta__copy{ margin-top:18px; max-width:760px; }

/* Leadership card footer (replaces the source's inline margin) */
.fcp-scope .fcp-lead__foot{ margin-top:18px; }

/* Card icons rendered as an image or an Elementor icon font */
.fcp-scope .fcp-ind__icon img{ width:26px; height:26px; object-fit:contain; }
.fcp-scope .fcp-ind__icon i{ font-size:24px; line-height:1; font-style:normal; }
.fcp-scope .fcp-ind__icon svg{ width:26px; height:26px; }

/* Non-interactive card variant (a card with no link renders as a div) */
.fcp-scope div.fcp-ind{ cursor:default; }

/* Footer logo default height so a tall upload cannot blow up the grid */
.fcp-scope .fcp-footer__logo{ height:46px; width:auto; }

/* Grid fallbacks so an empty column control never collapses the layout */
.fcp-scope .fcp-stats__grid,
.fcp-scope .fcp-ticker__grid,
.fcp-scope .fcp-ind-grid,
.fcp-scope .fcp-steps,
.fcp-scope .fcp-team-grid,
.fcp-scope .fcp-post-grid,
.fcp-scope .fcp-lead-grid,
.fcp-scope .fcp-expertise__grid{ min-width:0; }
.fcp-scope .fcp-ind,
.fcp-scope .fcp-mem,
.fcp-scope .fcp-post,
.fcp-scope .fcp-lead,
.fcp-scope .fcp-step,
.fcp-scope .fcp-exp-card{ min-width:0; }

/* Default CTA layout — declared explicitly so every layout value has a rule */
.fcp-scope .fcp-cta__inner--row{
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
}
@media (max-width:900px){
  .fcp-scope .fcp-cta__inner--row{ flex-direction:column; align-items:flex-start; }
}
/* ==========================================================================
   FinCheck Pages Widgets — Section Colour Scheme presets
   Applied through Elementor prefix_class 'fcp-scheme-'.
   !important is required: these must beat Elementor's own generated CSS
   regardless of stylesheet load order.
   ========================================================================== */

/* --- light --- */
.fcp-scheme-light .fcp-scope > section,
.fcp-scheme-light .fcp-scope > .fcp-band{ background:#ffffff !important; color:#5c5c5c !important; }
.fcp-scheme-light .fcp-scope{ color:#5c5c5c !important; }
.fcp-scheme-light .fcp-scope .fcp-section-title,
.fcp-scheme-light .fcp-scope .fcp-hero__title,
.fcp-scheme-light .fcp-scope .fcp-phero__title,
.fcp-scheme-light .fcp-scope .fcp-cta__title,
.fcp-scheme-light .fcp-scope h1,
.fcp-scheme-light .fcp-scope h2,
.fcp-scheme-light .fcp-scope h3,
.fcp-scheme-light .fcp-scope h4,
.fcp-scheme-light .fcp-scope h5,
.fcp-scheme-light .fcp-scope h6,
.fcp-scheme-light .fcp-scope .fcp-cpanel h2,
.fcp-scheme-light .fcp-scope .fcp-lead h3,
.fcp-scheme-light .fcp-scope .fcp-mem h3,
.fcp-scheme-light .fcp-scope .fcp-post h3,
.fcp-scheme-light .fcp-scope .fcp-feature__body h3,
.fcp-scheme-light .fcp-scope .fcp-acc__name,
.fcp-scheme-light .fcp-scope .fcp-stat__num,
.fcp-scheme-light .fcp-scope .fcp-ticker__num,
.fcp-scheme-light .fcp-scope .fcp-sol-list__name,
.fcp-scheme-light .fcp-scope .fcp-cinfo__v,
.fcp-scheme-light .fcp-scope .fcp-book__v{ color:#0a0a0a !important; }
.fcp-scheme-light .fcp-scope p,
.fcp-scheme-light .fcp-scope li,
.fcp-scheme-light .fcp-scope blockquote,
.fcp-scheme-light .fcp-scope .fcp-section-sub,
.fcp-scheme-light .fcp-scope .fcp-hero__copy,
.fcp-scheme-light .fcp-scope .fcp-phero__copy,
.fcp-scheme-light .fcp-scope .fcp-cta__copy,
.fcp-scheme-light .fcp-scope .fcp-stat__label,
.fcp-scheme-light .fcp-scope .fcp-ticker__label,
.fcp-scheme-light .fcp-scope .fcp-mem__role,
.fcp-scheme-light .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-light .fcp-scope .fcp-hours,
.fcp-scheme-light .fcp-scope .fcp-count-label,
.fcp-scheme-light .fcp-scope .fcp-empty,
.fcp-scheme-light .fcp-scope .fcp-form__note,
.fcp-scheme-light .fcp-scope .fcp-footer__brand p,
.fcp-scheme-light .fcp-scope .fcp-footer__col a,
.fcp-scheme-light .fcp-scope .fcp-crumbs,
.fcp-scheme-light .fcp-scope .fcp-crumbs a{ color:#5c5c5c !important; }
.fcp-scheme-light .fcp-scope .fcp-index,
.fcp-scheme-light .fcp-scope .fcp-eyebrow,
.fcp-scheme-light .fcp-scope .fcp-meta,
.fcp-scheme-light .fcp-scope .fcp-step__no,
.fcp-scheme-light .fcp-scope .fcp-acc__no,
.fcp-scheme-light .fcp-scope .fcp-exp-card__no,
.fcp-scheme-light .fcp-scope .fcp-ind__no,
.fcp-scheme-light .fcp-scope .fcp-mem__idx,
.fcp-scheme-light .fcp-scope .fcp-sol-list__no,
.fcp-scheme-light .fcp-scope .fcp-lead__tag,
.fcp-scheme-light .fcp-scope .fcp-cinfo__k,
.fcp-scheme-light .fcp-scope .fcp-book__k,
.fcp-scheme-light .fcp-scope .fcp-t-counter,
.fcp-scheme-light .fcp-scope .fcp-feature__flag,
.fcp-scheme-light .fcp-scope .fcp-tab__n,
.fcp-scheme-light .fcp-scope .fcp-footer__col h5,
.fcp-scheme-light .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-light .fcp-scope .fcp-btn--hero,
.fcp-scheme-light .fcp-scope .fcp-btn--invert,
.fcp-scheme-light .fcp-scope .fcp-btn--ink,
.fcp-scheme-light .fcp-scope .fcp-btn--solid{ background:#0a0a0a !important; color:#ffffff !important; border-color:#0a0a0a !important; }
.fcp-scheme-light .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-light .fcp-scope .fcp-btn--ghost,
.fcp-scheme-light .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#0a0a0a !important; border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-light .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-light .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-light .fcp-scope .fcp-btn--outline:hover{ background:#0a0a0a !important; color:#ffffff !important; }
.fcp-scheme-light .fcp-scope .fcp-exp-card,
.fcp-scheme-light .fcp-scope .fcp-ind,
.fcp-scheme-light .fcp-scope .fcp-mem,
.fcp-scheme-light .fcp-scope .fcp-post,
.fcp-scheme-light .fcp-scope .fcp-acc__item,
.fcp-scheme-light .fcp-scope .fcp-lead,
.fcp-scheme-light .fcp-scope .fcp-stat,
.fcp-scheme-light .fcp-scope .fcp-ticker__item,
.fcp-scheme-light .fcp-scope .fcp-sol-list li,
.fcp-scheme-light .fcp-scope .fcp-feature,
.fcp-scheme-light .fcp-scope .fcp-cinfo li,
.fcp-scheme-light .fcp-scope .fcp-field input,
.fcp-scheme-light .fcp-scope .fcp-field select,
.fcp-scheme-light .fcp-scope .fcp-field textarea,
.fcp-scheme-light .fcp-scope .fcp-tab,
.fcp-scheme-light .fcp-scope .fcp-search input,
.fcp-scheme-light .fcp-scope .fcp-footer__top,
.fcp-scheme-light .fcp-scope .fcp-footer__bottom,
.fcp-scheme-light .fcp-scope .fcp-book,
.fcp-scheme-light .fcp-scope .fcp-section-head{ border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-light .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-light .fcp-scope .fcp-index::after,
.fcp-scheme-light .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-light .fcp-scope .fcp-marquee__track img{ filter:none !important; }

/* --- paper --- */
.fcp-scheme-paper .fcp-scope > section,
.fcp-scheme-paper .fcp-scope > .fcp-band{ background:#f7f7f5 !important; color:#5c5c5c !important; }
.fcp-scheme-paper .fcp-scope{ color:#5c5c5c !important; }
.fcp-scheme-paper .fcp-scope .fcp-section-title,
.fcp-scheme-paper .fcp-scope .fcp-hero__title,
.fcp-scheme-paper .fcp-scope .fcp-phero__title,
.fcp-scheme-paper .fcp-scope .fcp-cta__title,
.fcp-scheme-paper .fcp-scope h1,
.fcp-scheme-paper .fcp-scope h2,
.fcp-scheme-paper .fcp-scope h3,
.fcp-scheme-paper .fcp-scope h4,
.fcp-scheme-paper .fcp-scope h5,
.fcp-scheme-paper .fcp-scope h6,
.fcp-scheme-paper .fcp-scope .fcp-cpanel h2,
.fcp-scheme-paper .fcp-scope .fcp-lead h3,
.fcp-scheme-paper .fcp-scope .fcp-mem h3,
.fcp-scheme-paper .fcp-scope .fcp-post h3,
.fcp-scheme-paper .fcp-scope .fcp-feature__body h3,
.fcp-scheme-paper .fcp-scope .fcp-acc__name,
.fcp-scheme-paper .fcp-scope .fcp-stat__num,
.fcp-scheme-paper .fcp-scope .fcp-ticker__num,
.fcp-scheme-paper .fcp-scope .fcp-sol-list__name,
.fcp-scheme-paper .fcp-scope .fcp-cinfo__v,
.fcp-scheme-paper .fcp-scope .fcp-book__v{ color:#0a0a0a !important; }
.fcp-scheme-paper .fcp-scope p,
.fcp-scheme-paper .fcp-scope li,
.fcp-scheme-paper .fcp-scope blockquote,
.fcp-scheme-paper .fcp-scope .fcp-section-sub,
.fcp-scheme-paper .fcp-scope .fcp-hero__copy,
.fcp-scheme-paper .fcp-scope .fcp-phero__copy,
.fcp-scheme-paper .fcp-scope .fcp-cta__copy,
.fcp-scheme-paper .fcp-scope .fcp-stat__label,
.fcp-scheme-paper .fcp-scope .fcp-ticker__label,
.fcp-scheme-paper .fcp-scope .fcp-mem__role,
.fcp-scheme-paper .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-paper .fcp-scope .fcp-hours,
.fcp-scheme-paper .fcp-scope .fcp-count-label,
.fcp-scheme-paper .fcp-scope .fcp-empty,
.fcp-scheme-paper .fcp-scope .fcp-form__note,
.fcp-scheme-paper .fcp-scope .fcp-footer__brand p,
.fcp-scheme-paper .fcp-scope .fcp-footer__col a,
.fcp-scheme-paper .fcp-scope .fcp-crumbs,
.fcp-scheme-paper .fcp-scope .fcp-crumbs a{ color:#5c5c5c !important; }
.fcp-scheme-paper .fcp-scope .fcp-index,
.fcp-scheme-paper .fcp-scope .fcp-eyebrow,
.fcp-scheme-paper .fcp-scope .fcp-meta,
.fcp-scheme-paper .fcp-scope .fcp-step__no,
.fcp-scheme-paper .fcp-scope .fcp-acc__no,
.fcp-scheme-paper .fcp-scope .fcp-exp-card__no,
.fcp-scheme-paper .fcp-scope .fcp-ind__no,
.fcp-scheme-paper .fcp-scope .fcp-mem__idx,
.fcp-scheme-paper .fcp-scope .fcp-sol-list__no,
.fcp-scheme-paper .fcp-scope .fcp-lead__tag,
.fcp-scheme-paper .fcp-scope .fcp-cinfo__k,
.fcp-scheme-paper .fcp-scope .fcp-book__k,
.fcp-scheme-paper .fcp-scope .fcp-t-counter,
.fcp-scheme-paper .fcp-scope .fcp-feature__flag,
.fcp-scheme-paper .fcp-scope .fcp-tab__n,
.fcp-scheme-paper .fcp-scope .fcp-footer__col h5,
.fcp-scheme-paper .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-paper .fcp-scope .fcp-btn--hero,
.fcp-scheme-paper .fcp-scope .fcp-btn--invert,
.fcp-scheme-paper .fcp-scope .fcp-btn--ink,
.fcp-scheme-paper .fcp-scope .fcp-btn--solid{ background:#0a0a0a !important; color:#ffffff !important; border-color:#0a0a0a !important; }
.fcp-scheme-paper .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-paper .fcp-scope .fcp-btn--ghost,
.fcp-scheme-paper .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#0a0a0a !important; border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-paper .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-paper .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-paper .fcp-scope .fcp-btn--outline:hover{ background:#0a0a0a !important; color:#ffffff !important; }
.fcp-scheme-paper .fcp-scope .fcp-exp-card,
.fcp-scheme-paper .fcp-scope .fcp-ind,
.fcp-scheme-paper .fcp-scope .fcp-mem,
.fcp-scheme-paper .fcp-scope .fcp-post,
.fcp-scheme-paper .fcp-scope .fcp-acc__item,
.fcp-scheme-paper .fcp-scope .fcp-lead,
.fcp-scheme-paper .fcp-scope .fcp-stat,
.fcp-scheme-paper .fcp-scope .fcp-ticker__item,
.fcp-scheme-paper .fcp-scope .fcp-sol-list li,
.fcp-scheme-paper .fcp-scope .fcp-feature,
.fcp-scheme-paper .fcp-scope .fcp-cinfo li,
.fcp-scheme-paper .fcp-scope .fcp-field input,
.fcp-scheme-paper .fcp-scope .fcp-field select,
.fcp-scheme-paper .fcp-scope .fcp-field textarea,
.fcp-scheme-paper .fcp-scope .fcp-tab,
.fcp-scheme-paper .fcp-scope .fcp-search input,
.fcp-scheme-paper .fcp-scope .fcp-footer__top,
.fcp-scheme-paper .fcp-scope .fcp-footer__bottom,
.fcp-scheme-paper .fcp-scope .fcp-book,
.fcp-scheme-paper .fcp-scope .fcp-section-head{ border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-paper .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-paper .fcp-scope .fcp-index::after,
.fcp-scheme-paper .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-paper .fcp-scope .fcp-marquee__track img{ filter:none !important; }

/* --- mist --- */
.fcp-scheme-mist .fcp-scope > section,
.fcp-scheme-mist .fcp-scope > .fcp-band{ background:#f4f4f4 !important; color:#5c5c5c !important; }
.fcp-scheme-mist .fcp-scope{ color:#5c5c5c !important; }
.fcp-scheme-mist .fcp-scope .fcp-section-title,
.fcp-scheme-mist .fcp-scope .fcp-hero__title,
.fcp-scheme-mist .fcp-scope .fcp-phero__title,
.fcp-scheme-mist .fcp-scope .fcp-cta__title,
.fcp-scheme-mist .fcp-scope h1,
.fcp-scheme-mist .fcp-scope h2,
.fcp-scheme-mist .fcp-scope h3,
.fcp-scheme-mist .fcp-scope h4,
.fcp-scheme-mist .fcp-scope h5,
.fcp-scheme-mist .fcp-scope h6,
.fcp-scheme-mist .fcp-scope .fcp-cpanel h2,
.fcp-scheme-mist .fcp-scope .fcp-lead h3,
.fcp-scheme-mist .fcp-scope .fcp-mem h3,
.fcp-scheme-mist .fcp-scope .fcp-post h3,
.fcp-scheme-mist .fcp-scope .fcp-feature__body h3,
.fcp-scheme-mist .fcp-scope .fcp-acc__name,
.fcp-scheme-mist .fcp-scope .fcp-stat__num,
.fcp-scheme-mist .fcp-scope .fcp-ticker__num,
.fcp-scheme-mist .fcp-scope .fcp-sol-list__name,
.fcp-scheme-mist .fcp-scope .fcp-cinfo__v,
.fcp-scheme-mist .fcp-scope .fcp-book__v{ color:#0a0a0a !important; }
.fcp-scheme-mist .fcp-scope p,
.fcp-scheme-mist .fcp-scope li,
.fcp-scheme-mist .fcp-scope blockquote,
.fcp-scheme-mist .fcp-scope .fcp-section-sub,
.fcp-scheme-mist .fcp-scope .fcp-hero__copy,
.fcp-scheme-mist .fcp-scope .fcp-phero__copy,
.fcp-scheme-mist .fcp-scope .fcp-cta__copy,
.fcp-scheme-mist .fcp-scope .fcp-stat__label,
.fcp-scheme-mist .fcp-scope .fcp-ticker__label,
.fcp-scheme-mist .fcp-scope .fcp-mem__role,
.fcp-scheme-mist .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-mist .fcp-scope .fcp-hours,
.fcp-scheme-mist .fcp-scope .fcp-count-label,
.fcp-scheme-mist .fcp-scope .fcp-empty,
.fcp-scheme-mist .fcp-scope .fcp-form__note,
.fcp-scheme-mist .fcp-scope .fcp-footer__brand p,
.fcp-scheme-mist .fcp-scope .fcp-footer__col a,
.fcp-scheme-mist .fcp-scope .fcp-crumbs,
.fcp-scheme-mist .fcp-scope .fcp-crumbs a{ color:#5c5c5c !important; }
.fcp-scheme-mist .fcp-scope .fcp-index,
.fcp-scheme-mist .fcp-scope .fcp-eyebrow,
.fcp-scheme-mist .fcp-scope .fcp-meta,
.fcp-scheme-mist .fcp-scope .fcp-step__no,
.fcp-scheme-mist .fcp-scope .fcp-acc__no,
.fcp-scheme-mist .fcp-scope .fcp-exp-card__no,
.fcp-scheme-mist .fcp-scope .fcp-ind__no,
.fcp-scheme-mist .fcp-scope .fcp-mem__idx,
.fcp-scheme-mist .fcp-scope .fcp-sol-list__no,
.fcp-scheme-mist .fcp-scope .fcp-lead__tag,
.fcp-scheme-mist .fcp-scope .fcp-cinfo__k,
.fcp-scheme-mist .fcp-scope .fcp-book__k,
.fcp-scheme-mist .fcp-scope .fcp-t-counter,
.fcp-scheme-mist .fcp-scope .fcp-feature__flag,
.fcp-scheme-mist .fcp-scope .fcp-tab__n,
.fcp-scheme-mist .fcp-scope .fcp-footer__col h5,
.fcp-scheme-mist .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-mist .fcp-scope .fcp-btn--hero,
.fcp-scheme-mist .fcp-scope .fcp-btn--invert,
.fcp-scheme-mist .fcp-scope .fcp-btn--ink,
.fcp-scheme-mist .fcp-scope .fcp-btn--solid{ background:#0a0a0a !important; color:#ffffff !important; border-color:#0a0a0a !important; }
.fcp-scheme-mist .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-mist .fcp-scope .fcp-btn--ghost,
.fcp-scheme-mist .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#0a0a0a !important; border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-mist .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-mist .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-mist .fcp-scope .fcp-btn--outline:hover{ background:#0a0a0a !important; color:#ffffff !important; }
.fcp-scheme-mist .fcp-scope .fcp-exp-card,
.fcp-scheme-mist .fcp-scope .fcp-ind,
.fcp-scheme-mist .fcp-scope .fcp-mem,
.fcp-scheme-mist .fcp-scope .fcp-post,
.fcp-scheme-mist .fcp-scope .fcp-acc__item,
.fcp-scheme-mist .fcp-scope .fcp-lead,
.fcp-scheme-mist .fcp-scope .fcp-stat,
.fcp-scheme-mist .fcp-scope .fcp-ticker__item,
.fcp-scheme-mist .fcp-scope .fcp-sol-list li,
.fcp-scheme-mist .fcp-scope .fcp-feature,
.fcp-scheme-mist .fcp-scope .fcp-cinfo li,
.fcp-scheme-mist .fcp-scope .fcp-field input,
.fcp-scheme-mist .fcp-scope .fcp-field select,
.fcp-scheme-mist .fcp-scope .fcp-field textarea,
.fcp-scheme-mist .fcp-scope .fcp-tab,
.fcp-scheme-mist .fcp-scope .fcp-search input,
.fcp-scheme-mist .fcp-scope .fcp-footer__top,
.fcp-scheme-mist .fcp-scope .fcp-footer__bottom,
.fcp-scheme-mist .fcp-scope .fcp-book,
.fcp-scheme-mist .fcp-scope .fcp-section-head{ border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-mist .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-mist .fcp-scope .fcp-index::after,
.fcp-scheme-mist .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-mist .fcp-scope .fcp-marquee__track img{ filter:none !important; }

/* --- ink --- */
.fcp-scheme-ink .fcp-scope > section,
.fcp-scheme-ink .fcp-scope > .fcp-band{ background:#0a0a0a !important; color:#e2e2e2 !important; }
.fcp-scheme-ink .fcp-scope{ color:#e2e2e2 !important; }
.fcp-scheme-ink .fcp-scope .fcp-section-title,
.fcp-scheme-ink .fcp-scope .fcp-hero__title,
.fcp-scheme-ink .fcp-scope .fcp-phero__title,
.fcp-scheme-ink .fcp-scope .fcp-cta__title,
.fcp-scheme-ink .fcp-scope h1,
.fcp-scheme-ink .fcp-scope h2,
.fcp-scheme-ink .fcp-scope h3,
.fcp-scheme-ink .fcp-scope h4,
.fcp-scheme-ink .fcp-scope h5,
.fcp-scheme-ink .fcp-scope h6,
.fcp-scheme-ink .fcp-scope .fcp-cpanel h2,
.fcp-scheme-ink .fcp-scope .fcp-lead h3,
.fcp-scheme-ink .fcp-scope .fcp-mem h3,
.fcp-scheme-ink .fcp-scope .fcp-post h3,
.fcp-scheme-ink .fcp-scope .fcp-feature__body h3,
.fcp-scheme-ink .fcp-scope .fcp-acc__name,
.fcp-scheme-ink .fcp-scope .fcp-stat__num,
.fcp-scheme-ink .fcp-scope .fcp-ticker__num,
.fcp-scheme-ink .fcp-scope .fcp-sol-list__name,
.fcp-scheme-ink .fcp-scope .fcp-cinfo__v,
.fcp-scheme-ink .fcp-scope .fcp-book__v{ color:#ffffff !important; }
.fcp-scheme-ink .fcp-scope p,
.fcp-scheme-ink .fcp-scope li,
.fcp-scheme-ink .fcp-scope blockquote,
.fcp-scheme-ink .fcp-scope .fcp-section-sub,
.fcp-scheme-ink .fcp-scope .fcp-hero__copy,
.fcp-scheme-ink .fcp-scope .fcp-phero__copy,
.fcp-scheme-ink .fcp-scope .fcp-cta__copy,
.fcp-scheme-ink .fcp-scope .fcp-stat__label,
.fcp-scheme-ink .fcp-scope .fcp-ticker__label,
.fcp-scheme-ink .fcp-scope .fcp-mem__role,
.fcp-scheme-ink .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-ink .fcp-scope .fcp-hours,
.fcp-scheme-ink .fcp-scope .fcp-count-label,
.fcp-scheme-ink .fcp-scope .fcp-empty,
.fcp-scheme-ink .fcp-scope .fcp-form__note,
.fcp-scheme-ink .fcp-scope .fcp-footer__brand p,
.fcp-scheme-ink .fcp-scope .fcp-footer__col a,
.fcp-scheme-ink .fcp-scope .fcp-crumbs,
.fcp-scheme-ink .fcp-scope .fcp-crumbs a{ color:#e2e2e2 !important; }
.fcp-scheme-ink .fcp-scope .fcp-index,
.fcp-scheme-ink .fcp-scope .fcp-eyebrow,
.fcp-scheme-ink .fcp-scope .fcp-meta,
.fcp-scheme-ink .fcp-scope .fcp-step__no,
.fcp-scheme-ink .fcp-scope .fcp-acc__no,
.fcp-scheme-ink .fcp-scope .fcp-exp-card__no,
.fcp-scheme-ink .fcp-scope .fcp-ind__no,
.fcp-scheme-ink .fcp-scope .fcp-mem__idx,
.fcp-scheme-ink .fcp-scope .fcp-sol-list__no,
.fcp-scheme-ink .fcp-scope .fcp-lead__tag,
.fcp-scheme-ink .fcp-scope .fcp-cinfo__k,
.fcp-scheme-ink .fcp-scope .fcp-book__k,
.fcp-scheme-ink .fcp-scope .fcp-t-counter,
.fcp-scheme-ink .fcp-scope .fcp-feature__flag,
.fcp-scheme-ink .fcp-scope .fcp-tab__n,
.fcp-scheme-ink .fcp-scope .fcp-footer__col h5,
.fcp-scheme-ink .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-ink .fcp-scope .fcp-btn--hero,
.fcp-scheme-ink .fcp-scope .fcp-btn--invert,
.fcp-scheme-ink .fcp-scope .fcp-btn--ink,
.fcp-scheme-ink .fcp-scope .fcp-btn--solid{ background:#ffffff !important; color:#0a0a0a !important; border-color:#ffffff !important; }
.fcp-scheme-ink .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-ink .fcp-scope .fcp-btn--ghost,
.fcp-scheme-ink .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#ffffff !important; border-color:rgba(255,255,255,.16) !important; }
.fcp-scheme-ink .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-ink .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-ink .fcp-scope .fcp-btn--outline:hover{ background:#ffffff !important; color:#0a0a0a !important; }
.fcp-scheme-ink .fcp-scope .fcp-exp-card,
.fcp-scheme-ink .fcp-scope .fcp-ind,
.fcp-scheme-ink .fcp-scope .fcp-mem,
.fcp-scheme-ink .fcp-scope .fcp-post,
.fcp-scheme-ink .fcp-scope .fcp-acc__item,
.fcp-scheme-ink .fcp-scope .fcp-lead,
.fcp-scheme-ink .fcp-scope .fcp-stat,
.fcp-scheme-ink .fcp-scope .fcp-ticker__item,
.fcp-scheme-ink .fcp-scope .fcp-sol-list li,
.fcp-scheme-ink .fcp-scope .fcp-feature,
.fcp-scheme-ink .fcp-scope .fcp-cinfo li,
.fcp-scheme-ink .fcp-scope .fcp-field input,
.fcp-scheme-ink .fcp-scope .fcp-field select,
.fcp-scheme-ink .fcp-scope .fcp-field textarea,
.fcp-scheme-ink .fcp-scope .fcp-tab,
.fcp-scheme-ink .fcp-scope .fcp-search input,
.fcp-scheme-ink .fcp-scope .fcp-footer__top,
.fcp-scheme-ink .fcp-scope .fcp-footer__bottom,
.fcp-scheme-ink .fcp-scope .fcp-book,
.fcp-scheme-ink .fcp-scope .fcp-section-head{ border-color:rgba(255,255,255,.16) !important; }
.fcp-scheme-ink .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-ink .fcp-scope .fcp-index::after,
.fcp-scheme-ink .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-ink .fcp-scope .fcp-marquee__track img{ filter:grayscale(1) brightness(2.2) contrast(.9) !important; }

/* --- charcoal --- */
.fcp-scheme-charcoal .fcp-scope > section,
.fcp-scheme-charcoal .fcp-scope > .fcp-band{ background:#1b1b1b !important; color:#e2e2e2 !important; }
.fcp-scheme-charcoal .fcp-scope{ color:#e2e2e2 !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-section-title,
.fcp-scheme-charcoal .fcp-scope .fcp-hero__title,
.fcp-scheme-charcoal .fcp-scope .fcp-phero__title,
.fcp-scheme-charcoal .fcp-scope .fcp-cta__title,
.fcp-scheme-charcoal .fcp-scope h1,
.fcp-scheme-charcoal .fcp-scope h2,
.fcp-scheme-charcoal .fcp-scope h3,
.fcp-scheme-charcoal .fcp-scope h4,
.fcp-scheme-charcoal .fcp-scope h5,
.fcp-scheme-charcoal .fcp-scope h6,
.fcp-scheme-charcoal .fcp-scope .fcp-cpanel h2,
.fcp-scheme-charcoal .fcp-scope .fcp-lead h3,
.fcp-scheme-charcoal .fcp-scope .fcp-mem h3,
.fcp-scheme-charcoal .fcp-scope .fcp-post h3,
.fcp-scheme-charcoal .fcp-scope .fcp-feature__body h3,
.fcp-scheme-charcoal .fcp-scope .fcp-acc__name,
.fcp-scheme-charcoal .fcp-scope .fcp-stat__num,
.fcp-scheme-charcoal .fcp-scope .fcp-ticker__num,
.fcp-scheme-charcoal .fcp-scope .fcp-sol-list__name,
.fcp-scheme-charcoal .fcp-scope .fcp-cinfo__v,
.fcp-scheme-charcoal .fcp-scope .fcp-book__v{ color:#ffffff !important; }
.fcp-scheme-charcoal .fcp-scope p,
.fcp-scheme-charcoal .fcp-scope li,
.fcp-scheme-charcoal .fcp-scope blockquote,
.fcp-scheme-charcoal .fcp-scope .fcp-section-sub,
.fcp-scheme-charcoal .fcp-scope .fcp-hero__copy,
.fcp-scheme-charcoal .fcp-scope .fcp-phero__copy,
.fcp-scheme-charcoal .fcp-scope .fcp-cta__copy,
.fcp-scheme-charcoal .fcp-scope .fcp-stat__label,
.fcp-scheme-charcoal .fcp-scope .fcp-ticker__label,
.fcp-scheme-charcoal .fcp-scope .fcp-mem__role,
.fcp-scheme-charcoal .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-charcoal .fcp-scope .fcp-hours,
.fcp-scheme-charcoal .fcp-scope .fcp-count-label,
.fcp-scheme-charcoal .fcp-scope .fcp-empty,
.fcp-scheme-charcoal .fcp-scope .fcp-form__note,
.fcp-scheme-charcoal .fcp-scope .fcp-footer__brand p,
.fcp-scheme-charcoal .fcp-scope .fcp-footer__col a,
.fcp-scheme-charcoal .fcp-scope .fcp-crumbs,
.fcp-scheme-charcoal .fcp-scope .fcp-crumbs a{ color:#e2e2e2 !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-index,
.fcp-scheme-charcoal .fcp-scope .fcp-eyebrow,
.fcp-scheme-charcoal .fcp-scope .fcp-meta,
.fcp-scheme-charcoal .fcp-scope .fcp-step__no,
.fcp-scheme-charcoal .fcp-scope .fcp-acc__no,
.fcp-scheme-charcoal .fcp-scope .fcp-exp-card__no,
.fcp-scheme-charcoal .fcp-scope .fcp-ind__no,
.fcp-scheme-charcoal .fcp-scope .fcp-mem__idx,
.fcp-scheme-charcoal .fcp-scope .fcp-sol-list__no,
.fcp-scheme-charcoal .fcp-scope .fcp-lead__tag,
.fcp-scheme-charcoal .fcp-scope .fcp-cinfo__k,
.fcp-scheme-charcoal .fcp-scope .fcp-book__k,
.fcp-scheme-charcoal .fcp-scope .fcp-t-counter,
.fcp-scheme-charcoal .fcp-scope .fcp-feature__flag,
.fcp-scheme-charcoal .fcp-scope .fcp-tab__n,
.fcp-scheme-charcoal .fcp-scope .fcp-footer__col h5,
.fcp-scheme-charcoal .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-btn--hero,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--invert,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--ink,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--solid{ background:#ffffff !important; color:#0a0a0a !important; border-color:#ffffff !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--ghost,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#ffffff !important; border-color:rgba(255,255,255,.16) !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-charcoal .fcp-scope .fcp-btn--outline:hover{ background:#ffffff !important; color:#0a0a0a !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-exp-card,
.fcp-scheme-charcoal .fcp-scope .fcp-ind,
.fcp-scheme-charcoal .fcp-scope .fcp-mem,
.fcp-scheme-charcoal .fcp-scope .fcp-post,
.fcp-scheme-charcoal .fcp-scope .fcp-acc__item,
.fcp-scheme-charcoal .fcp-scope .fcp-lead,
.fcp-scheme-charcoal .fcp-scope .fcp-stat,
.fcp-scheme-charcoal .fcp-scope .fcp-ticker__item,
.fcp-scheme-charcoal .fcp-scope .fcp-sol-list li,
.fcp-scheme-charcoal .fcp-scope .fcp-feature,
.fcp-scheme-charcoal .fcp-scope .fcp-cinfo li,
.fcp-scheme-charcoal .fcp-scope .fcp-field input,
.fcp-scheme-charcoal .fcp-scope .fcp-field select,
.fcp-scheme-charcoal .fcp-scope .fcp-field textarea,
.fcp-scheme-charcoal .fcp-scope .fcp-tab,
.fcp-scheme-charcoal .fcp-scope .fcp-search input,
.fcp-scheme-charcoal .fcp-scope .fcp-footer__top,
.fcp-scheme-charcoal .fcp-scope .fcp-footer__bottom,
.fcp-scheme-charcoal .fcp-scope .fcp-book,
.fcp-scheme-charcoal .fcp-scope .fcp-section-head{ border-color:rgba(255,255,255,.16) !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-charcoal .fcp-scope .fcp-index::after,
.fcp-scheme-charcoal .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-charcoal .fcp-scope .fcp-marquee__track img{ filter:grayscale(1) brightness(2.2) contrast(.9) !important; }

/* --- bw --- */
.fcp-scheme-bw .fcp-scope > section,
.fcp-scheme-bw .fcp-scope > .fcp-band{ background:#000000 !important; color:#ffffff !important; }
.fcp-scheme-bw .fcp-scope{ color:#ffffff !important; }
.fcp-scheme-bw .fcp-scope .fcp-section-title,
.fcp-scheme-bw .fcp-scope .fcp-hero__title,
.fcp-scheme-bw .fcp-scope .fcp-phero__title,
.fcp-scheme-bw .fcp-scope .fcp-cta__title,
.fcp-scheme-bw .fcp-scope h1,
.fcp-scheme-bw .fcp-scope h2,
.fcp-scheme-bw .fcp-scope h3,
.fcp-scheme-bw .fcp-scope h4,
.fcp-scheme-bw .fcp-scope h5,
.fcp-scheme-bw .fcp-scope h6,
.fcp-scheme-bw .fcp-scope .fcp-cpanel h2,
.fcp-scheme-bw .fcp-scope .fcp-lead h3,
.fcp-scheme-bw .fcp-scope .fcp-mem h3,
.fcp-scheme-bw .fcp-scope .fcp-post h3,
.fcp-scheme-bw .fcp-scope .fcp-feature__body h3,
.fcp-scheme-bw .fcp-scope .fcp-acc__name,
.fcp-scheme-bw .fcp-scope .fcp-stat__num,
.fcp-scheme-bw .fcp-scope .fcp-ticker__num,
.fcp-scheme-bw .fcp-scope .fcp-sol-list__name,
.fcp-scheme-bw .fcp-scope .fcp-cinfo__v,
.fcp-scheme-bw .fcp-scope .fcp-book__v{ color:#ffffff !important; }
.fcp-scheme-bw .fcp-scope p,
.fcp-scheme-bw .fcp-scope li,
.fcp-scheme-bw .fcp-scope blockquote,
.fcp-scheme-bw .fcp-scope .fcp-section-sub,
.fcp-scheme-bw .fcp-scope .fcp-hero__copy,
.fcp-scheme-bw .fcp-scope .fcp-phero__copy,
.fcp-scheme-bw .fcp-scope .fcp-cta__copy,
.fcp-scheme-bw .fcp-scope .fcp-stat__label,
.fcp-scheme-bw .fcp-scope .fcp-ticker__label,
.fcp-scheme-bw .fcp-scope .fcp-mem__role,
.fcp-scheme-bw .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-bw .fcp-scope .fcp-hours,
.fcp-scheme-bw .fcp-scope .fcp-count-label,
.fcp-scheme-bw .fcp-scope .fcp-empty,
.fcp-scheme-bw .fcp-scope .fcp-form__note,
.fcp-scheme-bw .fcp-scope .fcp-footer__brand p,
.fcp-scheme-bw .fcp-scope .fcp-footer__col a,
.fcp-scheme-bw .fcp-scope .fcp-crumbs,
.fcp-scheme-bw .fcp-scope .fcp-crumbs a{ color:#ffffff !important; }
.fcp-scheme-bw .fcp-scope .fcp-index,
.fcp-scheme-bw .fcp-scope .fcp-eyebrow,
.fcp-scheme-bw .fcp-scope .fcp-meta,
.fcp-scheme-bw .fcp-scope .fcp-step__no,
.fcp-scheme-bw .fcp-scope .fcp-acc__no,
.fcp-scheme-bw .fcp-scope .fcp-exp-card__no,
.fcp-scheme-bw .fcp-scope .fcp-ind__no,
.fcp-scheme-bw .fcp-scope .fcp-mem__idx,
.fcp-scheme-bw .fcp-scope .fcp-sol-list__no,
.fcp-scheme-bw .fcp-scope .fcp-lead__tag,
.fcp-scheme-bw .fcp-scope .fcp-cinfo__k,
.fcp-scheme-bw .fcp-scope .fcp-book__k,
.fcp-scheme-bw .fcp-scope .fcp-t-counter,
.fcp-scheme-bw .fcp-scope .fcp-feature__flag,
.fcp-scheme-bw .fcp-scope .fcp-tab__n,
.fcp-scheme-bw .fcp-scope .fcp-footer__col h5,
.fcp-scheme-bw .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-bw .fcp-scope .fcp-btn--hero,
.fcp-scheme-bw .fcp-scope .fcp-btn--invert,
.fcp-scheme-bw .fcp-scope .fcp-btn--ink,
.fcp-scheme-bw .fcp-scope .fcp-btn--solid{ background:#ffffff !important; color:#000000 !important; border-color:#ffffff !important; }
.fcp-scheme-bw .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-bw .fcp-scope .fcp-btn--ghost,
.fcp-scheme-bw .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#ffffff !important; border-color:rgba(255,255,255,.22) !important; }
.fcp-scheme-bw .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-bw .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-bw .fcp-scope .fcp-btn--outline:hover{ background:#ffffff !important; color:#000000 !important; }
.fcp-scheme-bw .fcp-scope .fcp-exp-card,
.fcp-scheme-bw .fcp-scope .fcp-ind,
.fcp-scheme-bw .fcp-scope .fcp-mem,
.fcp-scheme-bw .fcp-scope .fcp-post,
.fcp-scheme-bw .fcp-scope .fcp-acc__item,
.fcp-scheme-bw .fcp-scope .fcp-lead,
.fcp-scheme-bw .fcp-scope .fcp-stat,
.fcp-scheme-bw .fcp-scope .fcp-ticker__item,
.fcp-scheme-bw .fcp-scope .fcp-sol-list li,
.fcp-scheme-bw .fcp-scope .fcp-feature,
.fcp-scheme-bw .fcp-scope .fcp-cinfo li,
.fcp-scheme-bw .fcp-scope .fcp-field input,
.fcp-scheme-bw .fcp-scope .fcp-field select,
.fcp-scheme-bw .fcp-scope .fcp-field textarea,
.fcp-scheme-bw .fcp-scope .fcp-tab,
.fcp-scheme-bw .fcp-scope .fcp-search input,
.fcp-scheme-bw .fcp-scope .fcp-footer__top,
.fcp-scheme-bw .fcp-scope .fcp-footer__bottom,
.fcp-scheme-bw .fcp-scope .fcp-book,
.fcp-scheme-bw .fcp-scope .fcp-section-head{ border-color:rgba(255,255,255,.22) !important; }
.fcp-scheme-bw .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-bw .fcp-scope .fcp-index::after,
.fcp-scheme-bw .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-bw .fcp-scope .fcp-marquee__track img{ filter:grayscale(1) brightness(2.2) contrast(.9) !important; }

/* --- wb --- */
.fcp-scheme-wb .fcp-scope > section,
.fcp-scheme-wb .fcp-scope > .fcp-band{ background:#ffffff !important; color:#000000 !important; }
.fcp-scheme-wb .fcp-scope{ color:#000000 !important; }
.fcp-scheme-wb .fcp-scope .fcp-section-title,
.fcp-scheme-wb .fcp-scope .fcp-hero__title,
.fcp-scheme-wb .fcp-scope .fcp-phero__title,
.fcp-scheme-wb .fcp-scope .fcp-cta__title,
.fcp-scheme-wb .fcp-scope h1,
.fcp-scheme-wb .fcp-scope h2,
.fcp-scheme-wb .fcp-scope h3,
.fcp-scheme-wb .fcp-scope h4,
.fcp-scheme-wb .fcp-scope h5,
.fcp-scheme-wb .fcp-scope h6,
.fcp-scheme-wb .fcp-scope .fcp-cpanel h2,
.fcp-scheme-wb .fcp-scope .fcp-lead h3,
.fcp-scheme-wb .fcp-scope .fcp-mem h3,
.fcp-scheme-wb .fcp-scope .fcp-post h3,
.fcp-scheme-wb .fcp-scope .fcp-feature__body h3,
.fcp-scheme-wb .fcp-scope .fcp-acc__name,
.fcp-scheme-wb .fcp-scope .fcp-stat__num,
.fcp-scheme-wb .fcp-scope .fcp-ticker__num,
.fcp-scheme-wb .fcp-scope .fcp-sol-list__name,
.fcp-scheme-wb .fcp-scope .fcp-cinfo__v,
.fcp-scheme-wb .fcp-scope .fcp-book__v{ color:#000000 !important; }
.fcp-scheme-wb .fcp-scope p,
.fcp-scheme-wb .fcp-scope li,
.fcp-scheme-wb .fcp-scope blockquote,
.fcp-scheme-wb .fcp-scope .fcp-section-sub,
.fcp-scheme-wb .fcp-scope .fcp-hero__copy,
.fcp-scheme-wb .fcp-scope .fcp-phero__copy,
.fcp-scheme-wb .fcp-scope .fcp-cta__copy,
.fcp-scheme-wb .fcp-scope .fcp-stat__label,
.fcp-scheme-wb .fcp-scope .fcp-ticker__label,
.fcp-scheme-wb .fcp-scope .fcp-mem__role,
.fcp-scheme-wb .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-wb .fcp-scope .fcp-hours,
.fcp-scheme-wb .fcp-scope .fcp-count-label,
.fcp-scheme-wb .fcp-scope .fcp-empty,
.fcp-scheme-wb .fcp-scope .fcp-form__note,
.fcp-scheme-wb .fcp-scope .fcp-footer__brand p,
.fcp-scheme-wb .fcp-scope .fcp-footer__col a,
.fcp-scheme-wb .fcp-scope .fcp-crumbs,
.fcp-scheme-wb .fcp-scope .fcp-crumbs a{ color:#000000 !important; }
.fcp-scheme-wb .fcp-scope .fcp-index,
.fcp-scheme-wb .fcp-scope .fcp-eyebrow,
.fcp-scheme-wb .fcp-scope .fcp-meta,
.fcp-scheme-wb .fcp-scope .fcp-step__no,
.fcp-scheme-wb .fcp-scope .fcp-acc__no,
.fcp-scheme-wb .fcp-scope .fcp-exp-card__no,
.fcp-scheme-wb .fcp-scope .fcp-ind__no,
.fcp-scheme-wb .fcp-scope .fcp-mem__idx,
.fcp-scheme-wb .fcp-scope .fcp-sol-list__no,
.fcp-scheme-wb .fcp-scope .fcp-lead__tag,
.fcp-scheme-wb .fcp-scope .fcp-cinfo__k,
.fcp-scheme-wb .fcp-scope .fcp-book__k,
.fcp-scheme-wb .fcp-scope .fcp-t-counter,
.fcp-scheme-wb .fcp-scope .fcp-feature__flag,
.fcp-scheme-wb .fcp-scope .fcp-tab__n,
.fcp-scheme-wb .fcp-scope .fcp-footer__col h5,
.fcp-scheme-wb .fcp-scope .fcp-footer__bottom p{ color:#5c5c5c !important; }
.fcp-scheme-wb .fcp-scope .fcp-btn--hero,
.fcp-scheme-wb .fcp-scope .fcp-btn--invert,
.fcp-scheme-wb .fcp-scope .fcp-btn--ink,
.fcp-scheme-wb .fcp-scope .fcp-btn--solid{ background:#000000 !important; color:#ffffff !important; border-color:#000000 !important; }
.fcp-scheme-wb .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-wb .fcp-scope .fcp-btn--ghost,
.fcp-scheme-wb .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#000000 !important; border-color:rgba(0,0,0,.18) !important; }
.fcp-scheme-wb .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-wb .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-wb .fcp-scope .fcp-btn--outline:hover{ background:#000000 !important; color:#ffffff !important; }
.fcp-scheme-wb .fcp-scope .fcp-exp-card,
.fcp-scheme-wb .fcp-scope .fcp-ind,
.fcp-scheme-wb .fcp-scope .fcp-mem,
.fcp-scheme-wb .fcp-scope .fcp-post,
.fcp-scheme-wb .fcp-scope .fcp-acc__item,
.fcp-scheme-wb .fcp-scope .fcp-lead,
.fcp-scheme-wb .fcp-scope .fcp-stat,
.fcp-scheme-wb .fcp-scope .fcp-ticker__item,
.fcp-scheme-wb .fcp-scope .fcp-sol-list li,
.fcp-scheme-wb .fcp-scope .fcp-feature,
.fcp-scheme-wb .fcp-scope .fcp-cinfo li,
.fcp-scheme-wb .fcp-scope .fcp-field input,
.fcp-scheme-wb .fcp-scope .fcp-field select,
.fcp-scheme-wb .fcp-scope .fcp-field textarea,
.fcp-scheme-wb .fcp-scope .fcp-tab,
.fcp-scheme-wb .fcp-scope .fcp-search input,
.fcp-scheme-wb .fcp-scope .fcp-footer__top,
.fcp-scheme-wb .fcp-scope .fcp-footer__bottom,
.fcp-scheme-wb .fcp-scope .fcp-book,
.fcp-scheme-wb .fcp-scope .fcp-section-head{ border-color:rgba(0,0,0,.18) !important; }
.fcp-scheme-wb .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-wb .fcp-scope .fcp-index::after,
.fcp-scheme-wb .fcp-scope .fcp-dot{ background:#5c5c5c !important; }
.fcp-scheme-wb .fcp-scope .fcp-marquee__track img{ filter:none !important; }

/* --- ink-grey --- */
.fcp-scheme-ink-grey .fcp-scope > section,
.fcp-scheme-ink-grey .fcp-scope > .fcp-band{ background:#0a0a0a !important; color:#9a9a9a !important; }
.fcp-scheme-ink-grey .fcp-scope{ color:#9a9a9a !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-section-title,
.fcp-scheme-ink-grey .fcp-scope .fcp-hero__title,
.fcp-scheme-ink-grey .fcp-scope .fcp-phero__title,
.fcp-scheme-ink-grey .fcp-scope .fcp-cta__title,
.fcp-scheme-ink-grey .fcp-scope h1,
.fcp-scheme-ink-grey .fcp-scope h2,
.fcp-scheme-ink-grey .fcp-scope h3,
.fcp-scheme-ink-grey .fcp-scope h4,
.fcp-scheme-ink-grey .fcp-scope h5,
.fcp-scheme-ink-grey .fcp-scope h6,
.fcp-scheme-ink-grey .fcp-scope .fcp-cpanel h2,
.fcp-scheme-ink-grey .fcp-scope .fcp-lead h3,
.fcp-scheme-ink-grey .fcp-scope .fcp-mem h3,
.fcp-scheme-ink-grey .fcp-scope .fcp-post h3,
.fcp-scheme-ink-grey .fcp-scope .fcp-feature__body h3,
.fcp-scheme-ink-grey .fcp-scope .fcp-acc__name,
.fcp-scheme-ink-grey .fcp-scope .fcp-stat__num,
.fcp-scheme-ink-grey .fcp-scope .fcp-ticker__num,
.fcp-scheme-ink-grey .fcp-scope .fcp-sol-list__name,
.fcp-scheme-ink-grey .fcp-scope .fcp-cinfo__v,
.fcp-scheme-ink-grey .fcp-scope .fcp-book__v{ color:#ffffff !important; }
.fcp-scheme-ink-grey .fcp-scope p,
.fcp-scheme-ink-grey .fcp-scope li,
.fcp-scheme-ink-grey .fcp-scope blockquote,
.fcp-scheme-ink-grey .fcp-scope .fcp-section-sub,
.fcp-scheme-ink-grey .fcp-scope .fcp-hero__copy,
.fcp-scheme-ink-grey .fcp-scope .fcp-phero__copy,
.fcp-scheme-ink-grey .fcp-scope .fcp-cta__copy,
.fcp-scheme-ink-grey .fcp-scope .fcp-stat__label,
.fcp-scheme-ink-grey .fcp-scope .fcp-ticker__label,
.fcp-scheme-ink-grey .fcp-scope .fcp-mem__role,
.fcp-scheme-ink-grey .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-ink-grey .fcp-scope .fcp-hours,
.fcp-scheme-ink-grey .fcp-scope .fcp-count-label,
.fcp-scheme-ink-grey .fcp-scope .fcp-empty,
.fcp-scheme-ink-grey .fcp-scope .fcp-form__note,
.fcp-scheme-ink-grey .fcp-scope .fcp-footer__brand p,
.fcp-scheme-ink-grey .fcp-scope .fcp-footer__col a,
.fcp-scheme-ink-grey .fcp-scope .fcp-crumbs,
.fcp-scheme-ink-grey .fcp-scope .fcp-crumbs a{ color:#9a9a9a !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-index,
.fcp-scheme-ink-grey .fcp-scope .fcp-eyebrow,
.fcp-scheme-ink-grey .fcp-scope .fcp-meta,
.fcp-scheme-ink-grey .fcp-scope .fcp-step__no,
.fcp-scheme-ink-grey .fcp-scope .fcp-acc__no,
.fcp-scheme-ink-grey .fcp-scope .fcp-exp-card__no,
.fcp-scheme-ink-grey .fcp-scope .fcp-ind__no,
.fcp-scheme-ink-grey .fcp-scope .fcp-mem__idx,
.fcp-scheme-ink-grey .fcp-scope .fcp-sol-list__no,
.fcp-scheme-ink-grey .fcp-scope .fcp-lead__tag,
.fcp-scheme-ink-grey .fcp-scope .fcp-cinfo__k,
.fcp-scheme-ink-grey .fcp-scope .fcp-book__k,
.fcp-scheme-ink-grey .fcp-scope .fcp-t-counter,
.fcp-scheme-ink-grey .fcp-scope .fcp-feature__flag,
.fcp-scheme-ink-grey .fcp-scope .fcp-tab__n,
.fcp-scheme-ink-grey .fcp-scope .fcp-footer__col h5,
.fcp-scheme-ink-grey .fcp-scope .fcp-footer__bottom p{ color:#5c5c5c !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--hero,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--invert,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--ink,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--solid{ background:#ffffff !important; color:#0a0a0a !important; border-color:#ffffff !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--ghost,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#ffffff !important; border-color:rgba(255,255,255,.12) !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-ink-grey .fcp-scope .fcp-btn--outline:hover{ background:#ffffff !important; color:#0a0a0a !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-exp-card,
.fcp-scheme-ink-grey .fcp-scope .fcp-ind,
.fcp-scheme-ink-grey .fcp-scope .fcp-mem,
.fcp-scheme-ink-grey .fcp-scope .fcp-post,
.fcp-scheme-ink-grey .fcp-scope .fcp-acc__item,
.fcp-scheme-ink-grey .fcp-scope .fcp-lead,
.fcp-scheme-ink-grey .fcp-scope .fcp-stat,
.fcp-scheme-ink-grey .fcp-scope .fcp-ticker__item,
.fcp-scheme-ink-grey .fcp-scope .fcp-sol-list li,
.fcp-scheme-ink-grey .fcp-scope .fcp-feature,
.fcp-scheme-ink-grey .fcp-scope .fcp-cinfo li,
.fcp-scheme-ink-grey .fcp-scope .fcp-field input,
.fcp-scheme-ink-grey .fcp-scope .fcp-field select,
.fcp-scheme-ink-grey .fcp-scope .fcp-field textarea,
.fcp-scheme-ink-grey .fcp-scope .fcp-tab,
.fcp-scheme-ink-grey .fcp-scope .fcp-search input,
.fcp-scheme-ink-grey .fcp-scope .fcp-footer__top,
.fcp-scheme-ink-grey .fcp-scope .fcp-footer__bottom,
.fcp-scheme-ink-grey .fcp-scope .fcp-book,
.fcp-scheme-ink-grey .fcp-scope .fcp-section-head{ border-color:rgba(255,255,255,.12) !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-ink-grey .fcp-scope .fcp-index::after,
.fcp-scheme-ink-grey .fcp-scope .fcp-dot{ background:#5c5c5c !important; }
.fcp-scheme-ink-grey .fcp-scope .fcp-marquee__track img{ filter:grayscale(1) brightness(2.2) contrast(.9) !important; }

/* --- mist-ink --- */
.fcp-scheme-mist-ink .fcp-scope > section,
.fcp-scheme-mist-ink .fcp-scope > .fcp-band{ background:#f4f4f4 !important; color:#5c5c5c !important; }
.fcp-scheme-mist-ink .fcp-scope{ color:#5c5c5c !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-section-title,
.fcp-scheme-mist-ink .fcp-scope .fcp-hero__title,
.fcp-scheme-mist-ink .fcp-scope .fcp-phero__title,
.fcp-scheme-mist-ink .fcp-scope .fcp-cta__title,
.fcp-scheme-mist-ink .fcp-scope h1,
.fcp-scheme-mist-ink .fcp-scope h2,
.fcp-scheme-mist-ink .fcp-scope h3,
.fcp-scheme-mist-ink .fcp-scope h4,
.fcp-scheme-mist-ink .fcp-scope h5,
.fcp-scheme-mist-ink .fcp-scope h6,
.fcp-scheme-mist-ink .fcp-scope .fcp-cpanel h2,
.fcp-scheme-mist-ink .fcp-scope .fcp-lead h3,
.fcp-scheme-mist-ink .fcp-scope .fcp-mem h3,
.fcp-scheme-mist-ink .fcp-scope .fcp-post h3,
.fcp-scheme-mist-ink .fcp-scope .fcp-feature__body h3,
.fcp-scheme-mist-ink .fcp-scope .fcp-acc__name,
.fcp-scheme-mist-ink .fcp-scope .fcp-stat__num,
.fcp-scheme-mist-ink .fcp-scope .fcp-ticker__num,
.fcp-scheme-mist-ink .fcp-scope .fcp-sol-list__name,
.fcp-scheme-mist-ink .fcp-scope .fcp-cinfo__v,
.fcp-scheme-mist-ink .fcp-scope .fcp-book__v{ color:#0a0a0a !important; }
.fcp-scheme-mist-ink .fcp-scope p,
.fcp-scheme-mist-ink .fcp-scope li,
.fcp-scheme-mist-ink .fcp-scope blockquote,
.fcp-scheme-mist-ink .fcp-scope .fcp-section-sub,
.fcp-scheme-mist-ink .fcp-scope .fcp-hero__copy,
.fcp-scheme-mist-ink .fcp-scope .fcp-phero__copy,
.fcp-scheme-mist-ink .fcp-scope .fcp-cta__copy,
.fcp-scheme-mist-ink .fcp-scope .fcp-stat__label,
.fcp-scheme-mist-ink .fcp-scope .fcp-ticker__label,
.fcp-scheme-mist-ink .fcp-scope .fcp-mem__role,
.fcp-scheme-mist-ink .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-mist-ink .fcp-scope .fcp-hours,
.fcp-scheme-mist-ink .fcp-scope .fcp-count-label,
.fcp-scheme-mist-ink .fcp-scope .fcp-empty,
.fcp-scheme-mist-ink .fcp-scope .fcp-form__note,
.fcp-scheme-mist-ink .fcp-scope .fcp-footer__brand p,
.fcp-scheme-mist-ink .fcp-scope .fcp-footer__col a,
.fcp-scheme-mist-ink .fcp-scope .fcp-crumbs,
.fcp-scheme-mist-ink .fcp-scope .fcp-crumbs a{ color:#5c5c5c !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-index,
.fcp-scheme-mist-ink .fcp-scope .fcp-eyebrow,
.fcp-scheme-mist-ink .fcp-scope .fcp-meta,
.fcp-scheme-mist-ink .fcp-scope .fcp-step__no,
.fcp-scheme-mist-ink .fcp-scope .fcp-acc__no,
.fcp-scheme-mist-ink .fcp-scope .fcp-exp-card__no,
.fcp-scheme-mist-ink .fcp-scope .fcp-ind__no,
.fcp-scheme-mist-ink .fcp-scope .fcp-mem__idx,
.fcp-scheme-mist-ink .fcp-scope .fcp-sol-list__no,
.fcp-scheme-mist-ink .fcp-scope .fcp-lead__tag,
.fcp-scheme-mist-ink .fcp-scope .fcp-cinfo__k,
.fcp-scheme-mist-ink .fcp-scope .fcp-book__k,
.fcp-scheme-mist-ink .fcp-scope .fcp-t-counter,
.fcp-scheme-mist-ink .fcp-scope .fcp-feature__flag,
.fcp-scheme-mist-ink .fcp-scope .fcp-tab__n,
.fcp-scheme-mist-ink .fcp-scope .fcp-footer__col h5,
.fcp-scheme-mist-ink .fcp-scope .fcp-footer__bottom p{ color:#9a9a9a !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--hero,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--invert,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--ink,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--solid{ background:#0a0a0a !important; color:#ffffff !important; border-color:#0a0a0a !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--ghost,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#0a0a0a !important; border-color:rgba(10,10,10,.12) !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-mist-ink .fcp-scope .fcp-btn--outline:hover{ background:#0a0a0a !important; color:#ffffff !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-exp-card,
.fcp-scheme-mist-ink .fcp-scope .fcp-ind,
.fcp-scheme-mist-ink .fcp-scope .fcp-mem,
.fcp-scheme-mist-ink .fcp-scope .fcp-post,
.fcp-scheme-mist-ink .fcp-scope .fcp-acc__item,
.fcp-scheme-mist-ink .fcp-scope .fcp-lead,
.fcp-scheme-mist-ink .fcp-scope .fcp-stat,
.fcp-scheme-mist-ink .fcp-scope .fcp-ticker__item,
.fcp-scheme-mist-ink .fcp-scope .fcp-sol-list li,
.fcp-scheme-mist-ink .fcp-scope .fcp-feature,
.fcp-scheme-mist-ink .fcp-scope .fcp-cinfo li,
.fcp-scheme-mist-ink .fcp-scope .fcp-field input,
.fcp-scheme-mist-ink .fcp-scope .fcp-field select,
.fcp-scheme-mist-ink .fcp-scope .fcp-field textarea,
.fcp-scheme-mist-ink .fcp-scope .fcp-tab,
.fcp-scheme-mist-ink .fcp-scope .fcp-search input,
.fcp-scheme-mist-ink .fcp-scope .fcp-footer__top,
.fcp-scheme-mist-ink .fcp-scope .fcp-footer__bottom,
.fcp-scheme-mist-ink .fcp-scope .fcp-book,
.fcp-scheme-mist-ink .fcp-scope .fcp-section-head{ border-color:rgba(10,10,10,.12) !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-mist-ink .fcp-scope .fcp-index::after,
.fcp-scheme-mist-ink .fcp-scope .fcp-dot{ background:#9a9a9a !important; }
.fcp-scheme-mist-ink .fcp-scope .fcp-marquee__track img{ filter:none !important; }

/* --- paper-mono --- */
.fcp-scheme-paper-mono .fcp-scope > section,
.fcp-scheme-paper-mono .fcp-scope > .fcp-band{ background:#ffffff !important; color:#5c5c5c !important; }
.fcp-scheme-paper-mono .fcp-scope{ color:#5c5c5c !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-section-title,
.fcp-scheme-paper-mono .fcp-scope .fcp-hero__title,
.fcp-scheme-paper-mono .fcp-scope .fcp-phero__title,
.fcp-scheme-paper-mono .fcp-scope .fcp-cta__title,
.fcp-scheme-paper-mono .fcp-scope h1,
.fcp-scheme-paper-mono .fcp-scope h2,
.fcp-scheme-paper-mono .fcp-scope h3,
.fcp-scheme-paper-mono .fcp-scope h4,
.fcp-scheme-paper-mono .fcp-scope h5,
.fcp-scheme-paper-mono .fcp-scope h6,
.fcp-scheme-paper-mono .fcp-scope .fcp-cpanel h2,
.fcp-scheme-paper-mono .fcp-scope .fcp-lead h3,
.fcp-scheme-paper-mono .fcp-scope .fcp-mem h3,
.fcp-scheme-paper-mono .fcp-scope .fcp-post h3,
.fcp-scheme-paper-mono .fcp-scope .fcp-feature__body h3,
.fcp-scheme-paper-mono .fcp-scope .fcp-acc__name,
.fcp-scheme-paper-mono .fcp-scope .fcp-stat__num,
.fcp-scheme-paper-mono .fcp-scope .fcp-ticker__num,
.fcp-scheme-paper-mono .fcp-scope .fcp-sol-list__name,
.fcp-scheme-paper-mono .fcp-scope .fcp-cinfo__v,
.fcp-scheme-paper-mono .fcp-scope .fcp-book__v{ color:#0a0a0a !important; }
.fcp-scheme-paper-mono .fcp-scope p,
.fcp-scheme-paper-mono .fcp-scope li,
.fcp-scheme-paper-mono .fcp-scope blockquote,
.fcp-scheme-paper-mono .fcp-scope .fcp-section-sub,
.fcp-scheme-paper-mono .fcp-scope .fcp-hero__copy,
.fcp-scheme-paper-mono .fcp-scope .fcp-phero__copy,
.fcp-scheme-paper-mono .fcp-scope .fcp-cta__copy,
.fcp-scheme-paper-mono .fcp-scope .fcp-stat__label,
.fcp-scheme-paper-mono .fcp-scope .fcp-ticker__label,
.fcp-scheme-paper-mono .fcp-scope .fcp-mem__role,
.fcp-scheme-paper-mono .fcp-scope .fcp-cpanel__lead,
.fcp-scheme-paper-mono .fcp-scope .fcp-hours,
.fcp-scheme-paper-mono .fcp-scope .fcp-count-label,
.fcp-scheme-paper-mono .fcp-scope .fcp-empty,
.fcp-scheme-paper-mono .fcp-scope .fcp-form__note,
.fcp-scheme-paper-mono .fcp-scope .fcp-footer__brand p,
.fcp-scheme-paper-mono .fcp-scope .fcp-footer__col a,
.fcp-scheme-paper-mono .fcp-scope .fcp-crumbs,
.fcp-scheme-paper-mono .fcp-scope .fcp-crumbs a{ color:#5c5c5c !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-index,
.fcp-scheme-paper-mono .fcp-scope .fcp-eyebrow,
.fcp-scheme-paper-mono .fcp-scope .fcp-meta,
.fcp-scheme-paper-mono .fcp-scope .fcp-step__no,
.fcp-scheme-paper-mono .fcp-scope .fcp-acc__no,
.fcp-scheme-paper-mono .fcp-scope .fcp-exp-card__no,
.fcp-scheme-paper-mono .fcp-scope .fcp-ind__no,
.fcp-scheme-paper-mono .fcp-scope .fcp-mem__idx,
.fcp-scheme-paper-mono .fcp-scope .fcp-sol-list__no,
.fcp-scheme-paper-mono .fcp-scope .fcp-lead__tag,
.fcp-scheme-paper-mono .fcp-scope .fcp-cinfo__k,
.fcp-scheme-paper-mono .fcp-scope .fcp-book__k,
.fcp-scheme-paper-mono .fcp-scope .fcp-t-counter,
.fcp-scheme-paper-mono .fcp-scope .fcp-feature__flag,
.fcp-scheme-paper-mono .fcp-scope .fcp-tab__n,
.fcp-scheme-paper-mono .fcp-scope .fcp-footer__col h5,
.fcp-scheme-paper-mono .fcp-scope .fcp-footer__bottom p{ color:#0a0a0a !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--hero,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--invert,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--ink,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--solid{ background:#0a0a0a !important; color:#ffffff !important; border-color:#0a0a0a !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--outline-invert,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--ghost,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--outline{ background:transparent !important; color:#0a0a0a !important; border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--outline-invert:hover,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--ghost:hover,
.fcp-scheme-paper-mono .fcp-scope .fcp-btn--outline:hover{ background:#0a0a0a !important; color:#ffffff !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-exp-card,
.fcp-scheme-paper-mono .fcp-scope .fcp-ind,
.fcp-scheme-paper-mono .fcp-scope .fcp-mem,
.fcp-scheme-paper-mono .fcp-scope .fcp-post,
.fcp-scheme-paper-mono .fcp-scope .fcp-acc__item,
.fcp-scheme-paper-mono .fcp-scope .fcp-lead,
.fcp-scheme-paper-mono .fcp-scope .fcp-stat,
.fcp-scheme-paper-mono .fcp-scope .fcp-ticker__item,
.fcp-scheme-paper-mono .fcp-scope .fcp-sol-list li,
.fcp-scheme-paper-mono .fcp-scope .fcp-feature,
.fcp-scheme-paper-mono .fcp-scope .fcp-cinfo li,
.fcp-scheme-paper-mono .fcp-scope .fcp-field input,
.fcp-scheme-paper-mono .fcp-scope .fcp-field select,
.fcp-scheme-paper-mono .fcp-scope .fcp-field textarea,
.fcp-scheme-paper-mono .fcp-scope .fcp-tab,
.fcp-scheme-paper-mono .fcp-scope .fcp-search input,
.fcp-scheme-paper-mono .fcp-scope .fcp-footer__top,
.fcp-scheme-paper-mono .fcp-scope .fcp-footer__bottom,
.fcp-scheme-paper-mono .fcp-scope .fcp-book,
.fcp-scheme-paper-mono .fcp-scope .fcp-section-head{ border-color:rgba(10,10,10,.14) !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-eyebrow::before,
.fcp-scheme-paper-mono .fcp-scope .fcp-index::after,
.fcp-scheme-paper-mono .fcp-scope .fcp-dot{ background:#0a0a0a !important; }
.fcp-scheme-paper-mono .fcp-scope .fcp-marquee__track img{ filter:none !important; }
