/* September 2026 hosted sale — neon urgency bar (glow pulse, not strobe) */
.cfw-urgency {
  position: relative;
  z-index: 10050;
  background: #0a0014;
  background-image:
    linear-gradient(90deg, #12001f 0%, #001a22 40%, #0a1400 70%, #1a0028 100%);
  border-bottom: 3px solid #ff00ea;
  box-shadow:
    0 0 18px rgba(255, 0, 234, 0.55),
    0 0 36px rgba(0, 255, 247, 0.28),
    inset 0 0 40px rgba(57, 255, 20, 0.08);
  animation: cfw-urgency-glow 1.8s ease-in-out infinite;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.cfw-urgency-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.2rem;
  text-align: center;
}
.cfw-urgency-flash {
  margin: 0;
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: #fff100;
  text-shadow:
    0 0 8px #ff00ea,
    0 0 18px #00fff7,
    0 0 32px rgba(255, 0, 234, 0.85);
  animation: none;
}
.cfw-urgency-perks {
  margin: 0;
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: #39ff14;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(0, 255, 247, 0.45);
  animation: none;
  animation-delay: 0;
}
.cfw-urgency-cta {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 800;
  text-decoration: none;
  color: #0a0014 !important;
  background: linear-gradient(90deg, #fff100, #39ff14 55%, #00fff7);
  border: 2px solid #ff00ea;
  box-shadow:
    0 0 12px rgba(255, 0, 234, 0.7),
    0 0 22px rgba(0, 255, 247, 0.45);
  animation: cfw-urgency-cta 1.8s ease-in-out infinite;
}
.cfw-urgency-cta:hover,
.cfw-urgency-cta:focus {
  filter: brightness(1.08);
  outline: 2px solid #00fff7;
  outline-offset: 2px;
}
@keyframes cfw-urgency-glow {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(255, 0, 234, 0.45),
      0 0 28px rgba(0, 255, 247, 0.22),
      inset 0 0 30px rgba(57, 255, 20, 0.06);
    border-bottom-color: #ff00ea;
  }
  50% {
    box-shadow:
      0 0 26px rgba(0, 255, 247, 0.55),
      0 0 48px rgba(255, 0, 234, 0.35),
      inset 0 0 44px rgba(255, 241, 0, 0.1);
    border-bottom-color: #00fff7;
  }
}
@keyframes cfw-urgency-text {
  0%, 100% {
    color: #fff100;
    text-shadow: 0 0 6px #ff00ea, 0 0 14px #00fff7, 0 0 24px rgba(255, 0, 234, 0.65);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 8px #00fff7, 0 0 18px #39ff14, 0 0 30px rgba(0, 255, 247, 0.75);
  }
}
@keyframes cfw-urgency-cta {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 0, 234, 0.55), 0 0 18px rgba(0, 255, 247, 0.35);
  }
  50% {
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.65), 0 0 28px rgba(255, 241, 0, 0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cfw-urgency,
  .cfw-urgency-flash,
  .cfw-urgency-cta {
    animation: none !important;
  }
}
@media (max-width: 640px) {
  .cfw-urgency-inner {
    padding: 0.75rem 0.75rem 0.9rem;
    gap: 0.4rem;
  }
  .cfw-urgency-cta {
    width: 100%;
    max-width: 22rem;
  }
}

/* Big center sale popup — must click Close / No thanks (or Esc). Backdrop does not dismiss. */
html.cfw-sale-popup-open, html.cfw-sale-popup-open body { overflow: hidden; }
.cfw-sale-popup[hidden] { display: none !important; }
.cfw-sale-popup {
  position: fixed; inset: 0; z-index: 10060;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.cfw-sale-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 0, 12, 0.78);
  backdrop-filter: blur(3px);
}
.cfw-sale-popup-card {
  position: relative; z-index: 1;
  width: min(92vw, 34rem);
  padding: 1.6rem 1.4rem 1.35rem;
  border-radius: 1.1rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,0,234,.28), transparent 55%),
    radial-gradient(100% 80% at 100% 100%, rgba(0,255,247,.22), transparent 50%),
    #12001f;
  border: 3px solid #ff00ea;
  box-shadow:
    0 0 0 2px #00fff7,
    0 0 40px rgba(255,0,234,.55),
    0 0 70px rgba(57,255,20,.25);
  animation: cfw-popup-in .35s ease-out, cfw-urgency-glow 1.8s ease-in-out infinite;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.cfw-sale-popup-close {
  position: absolute; top: .45rem; right: .55rem;
  width: 2.4rem; height: 2.4rem;
  border: 2px solid #00fff7; border-radius: 999px;
  background: #0a0014; color: #fff100;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  box-shadow: 0 0 12px rgba(0,255,247,.5);
}
.cfw-sale-popup-kicker {
  margin: 0 0 .35rem;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 800; letter-spacing: .08em;
  color: #39ff14;
  text-shadow: 0 0 10px rgba(57,255,20,.7);
}
.cfw-sale-popup-card h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  line-height: 1.15;
  color: #fff100;
  text-shadow: 0 0 8px #ff00ea, 0 0 18px #00fff7;
}
.cfw-sale-popup-perks {
  list-style: none; margin: 0 0 1.1rem; padding: 0;
  display: grid; gap: .45rem;
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 700;
}
.cfw-sale-popup-perks li {
  padding: .45rem .6rem;
  border-radius: .55rem;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(0,255,247,.35);
}
.cfw-sale-popup-cta {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 .65rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 900;
  text-decoration: none;
  color: #0a0014 !important;
  background: linear-gradient(90deg, #fff100, #39ff14 50%, #00fff7);
  border: 2px solid #ff00ea;
  box-shadow: 0 0 18px rgba(255,0,234,.65);
}
.cfw-sale-popup-dismiss {
  display: block; width: 100%;
  margin: 0; padding: .55rem;
  border: 0; background: transparent;
  color: #c4b5fd; font-size: .95rem; cursor: pointer;
  text-decoration: underline;
}
@keyframes cfw-popup-in {
  from { transform: translateX(110%) scale(.96); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cfw-sale-popup-card { animation: none !important; }
}

/* Flash the Big Sept hosted sale paragraph + deposit banner copy */
.lede[data-i18n="hero.lead"],
p[data-i18n="hero.lead"],
.deposit-banner.sale-banner p[data-i18n="deposit.banner"],
.deposit-banner p[data-i18n="deposit.banner"] {
  animation: none !important;
  font-weight: 800 !important;
  color: #fff100 !important;
  text-shadow: 0 0 8px rgba(255,0,234,.55), 0 0 16px rgba(0,255,247,.35);
}
@keyframes cfw-sale-para-flash {
  0%, 100% { opacity: 1; filter: brightness(1); color: inherit; }
  50% { opacity: 0.72; filter: brightness(1.35); }
}
@media (prefers-reduced-motion: reduce) {
  .lede[data-i18n="hero.lead"],
  p[data-i18n="hero.lead"],
  .deposit-banner p[data-i18n="deposit.banner"] {
    animation: none !important;
  }
}

.cfw-sale-flash-para {
  animation: none !important;
  font-weight: 800 !important;
  color: #fff100 !important;
  text-shadow: 0 0 8px rgba(255,0,234,.55), 0 0 16px rgba(0,255,247,.35);
}

/* Flash text ABOVE and BELOW the One-stop / $49 h1 (badges, kicker, lead) */
.hero .badges,
.hero .badge,
.hero-kicker,
.hero .hero-kicker,
p.hero-lead,
.hero-lead[data-i18n="hero.lead"],
.hero .lede,
.hero p[data-i18n="hero.lead"],
.hero .hero-note {
  animation: none !important;
  font-weight: 800 !important;
  text-shadow: 0 0 8px rgba(255,0,234,.55), 0 0 16px rgba(0,255,247,.35);
}
@media (prefers-reduced-motion: reduce) {
  .hero .badges,
  .hero .badge,
  .hero-kicker,
  p.hero-lead,
  .hero .lede,
  .hero .hero-note {
    animation: none !important;
  }
}


/* Compact BLACK site header/nav — NOT the neon sale bar */
header,
.site-header,
body > header,
body header.site-header {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-shadow: none !important;
}
header .nav,
.site-header .nav,
body header .nav {
  min-height: 2.35rem !important;
  height: auto !important;
  padding: 0.15rem 0 !important;
  gap: 0.4rem !important;
}
header .logo,
.site-header .logo,
body header .logo {
  font-size: 0.98rem !important;
  line-height: 1.1 !important;
  padding: 0 !important;
}
header nav ul,
.site-header nav ul,
.nav-links {
  gap: 0.45rem !important;
  font-size: 0.68rem !important;
  line-height: 1.1 !important;
}
header .nav-end,
header .nav-actions,
.site-header .nav-end,
.site-header .nav-actions,
.nav-end,
.nav-actions {
  gap: 0.3rem !important;
}
header .btn,
.site-header .btn,
header .nav-end .btn,
header .nav-actions .btn,
.site-header .btn-primary,
.site-header .btn-secondary,
.site-header .btn-fill {
  padding: 0.22rem 0.55rem !important;
  font-size: 0.72rem !important;
  line-height: 1.1 !important;
  min-height: 0 !important;
  box-shadow: 1px 1px 0 #000 !important;
  transform: none !important;
  border-width: 2px !important;
}
header .lang button,
header .lang-btn,
.site-header .lang-btn,
.lang-btn {
  padding: 0.05rem 0.25rem !important;
  font-size: 0.68rem !important;
}
header .mark,
.site-header .mark {
  width: 0.95rem !important;
  height: 0.95rem !important;
}
@media (max-width: 960px) {
  header nav ul,
  .site-header nav ul,
  .nav-links {
    display: none !important;
  }
}

/* Compact "now showing / pick a design" showcase bar — ~half height; reel buttons stay big */
.cfw-showcase::before,
.cfw-showcase::after {
  height: 4px !important;
  background-size: 28px 4px, 100% 100% !important;
}
.cfw-showcase-inner {
  padding: 0.45rem 0 0.4rem !important;
}
.cfw-showcase-kicker {
  font-size: 0.58rem !important;
  letter-spacing: 0.12em !important;
  gap: 0.3rem !important;
}
.cfw-rec {
  width: 0.45rem !important;
  height: 0.45rem !important;
}
.cfw-showcase-hit {
  margin: 0.1rem 0 0.05rem !important;
  font-size: clamp(0.85rem, 2.2vw, 1.15rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important;
}
.cfw-showcase-hit em {
  font-size: 0.85em !important;
}
.cfw-showcase-sub {
  margin: 0 auto 0.35rem !important;
  max-width: 40rem !important;
  font-size: 0.72rem !important;
  line-height: 1.25 !important;
}
.cfw-reels {
  padding: 0.05rem 0 0.2rem !important;
  gap: 0.4rem !important;
}
/* keep design buttons big as requested */
.cfw-reel {
  flex-basis: 7.4rem !important;
  min-height: 4.2rem !important;
  padding: 0.65rem 0.7rem !important;
}
.cfw-reel-name { font-size: 0.82rem !important; }
.cfw-reel-blurb { font-size: 0.72rem !important; }
.cfw-now {
  margin: 0.05rem 0 0 !important;
  font-size: 0.7rem !important;
}
@media (max-width: 860px) {
  .cfw-showcase-inner { padding: 0.4rem 0 0.35rem !important; }
  .cfw-showcase-hit em { display: inline !important; margin-top: 0 !important; }
}

/* On this page outline — horizontal skinny row like design reels */
.buddy-outline,
aside.buddy-outline,
#page-outline {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem 0.75rem !important;
  padding: 0.35rem 0.75rem !important;
  margin: 0 !important;
  min-height: 0 !important;
  background: rgba(7, 7, 12, 0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
  text-align: center !important;
}
.buddy-outline-k,
#page-outline .buddy-outline-k {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  opacity: 0.85 !important;
}
.buddy-outline ul,
#page-outline ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem 0.45rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.buddy-outline li,
#page-outline li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
.buddy-outline a,
#page-outline a {
  display: inline-block !important;
  padding: 0.35rem 0.7rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.06) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.buddy-outline a:hover,
#page-outline a:hover {
  border-color: rgba(122,247,255,.55) !important;
  background: rgba(122,247,255,.12) !important;
}


/* 2026-09-13: homepage sale words STATIC + bright, no flash */
.lede[data-i18n="hero.lead"],
p[data-i18n="hero.lead"],
.hero .lede,
.hero p[data-i18n="hero.lead"],
.hero .lede.cfw-sale-flash-para,
p.lede.cfw-sale-flash-para,
.cfw-sale-flash-para {
  animation: none !important;
  animation-name: none !important;
  filter: none !important;
  opacity: 1 !important;
  color: #fff100 !important;
  font-weight: 800 !important;
}
.hero .lede.cfw-sale-flash-para,
p.lede.cfw-sale-flash-para {
  max-width: 42rem !important;
  background: rgba(255, 241, 0, 0.10);
  border-left: 4px solid #fff100;
  padding: 0.7rem 0.9rem;
  border-radius: 0 12px 12px 0;
}
.cfw-urgency-flash,
.cfw-urgency-perks {
  animation: none !important;
}


/* 2026-09-14b: READABILITY — body copy not neon; neon only on dark urgency bar */
.lede[data-i18n="hero.lead"],
p[data-i18n="hero.lead"],
.hero .lede,
.hero p[data-i18n="hero.lead"],
.hero .lede.cfw-sale-flash-para,
p.lede.cfw-sale-flash-para,
.cfw-sale-flash-para,
p.hero-lead,
.hero-lead[data-i18n="hero.lead"],
.hero .hero-note,
.hero-kicker,
.hero .hero-kicker,
.hero .badges,
.hero .badge {
  animation: none !important;
  filter: none !important;
  opacity: 1 !important;
  /* High-contrast ink on light heroes; stays readable on dark looks too via strong shadow */
  color: #111111 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  padding: 0.65rem 0.85rem !important;
  border-radius: 10px !important;
  border-left: 4px solid #c9a000 !important;
  max-width: 42rem !important;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.hero .hero-note a,
.lede a {
  color: #0b5fff !important;
  text-decoration: underline;
  text-shadow: none !important;
}
/* Urgency bar stays neon but text gets black outline so yellow reads on the bar */
.cfw-urgency,
.cfw-urgency * {
  /* keep bar dark */
}
.cfw-urgency-flash,
.cfw-urgency .cfw-urgency-flash,
.cfw-urgency-perks,
.cfw-urgency strong {
  color: #ffe566 !important;
  font-weight: 800 !important;
  text-shadow:
    0 0 2px #000,
    0 1px 0 #000,
    1px 0 0 #000,
    -1px 0 0 #000,
    0 -1px 0 #000,
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000,
    0 2px 4px rgba(0,0,0,.9) !important;
}
