/* ============================================================
 * Windy Isle — DESIGN EXPERIMENTS (styles)
 * All rules are gated under body.exp-* selectors. Toggling a
 * flag in experiments.js fully removes the rule's effect.
 * ============================================================ */

/* ============================================================
 * 1) Cycling "Now featuring" pills under hero
 * ============================================================ */
body.exp-cycling-hero .exp-now-featuring {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
body.exp-cycling-hero .exp-nf-label {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-family: var(--font-display); font-weight: var(--weight-interface-strong);
}
body.exp-cycling-hero .exp-nf-pills {
  display: inline-flex; gap: 8px; flex-wrap: wrap;
}
body.exp-cycling-hero .exp-nf-pill {
  --show-color: #DB5300;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px; border-radius: 50px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78); font-family: var(--font-display); font-size: 13px; font-weight: var(--weight-interface);
  letter-spacing: 0.2px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
body.exp-cycling-hero .exp-nf-pill .exp-nf-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
body.exp-cycling-hero .exp-nf-pill.active {
  background: rgba(0,0,0,.35);
  border-color: var(--show-color);
  color: #fff;
  box-shadow: 0 0 0 1px var(--show-color), 0 6px 20px -8px var(--show-color);
}
body.exp-cycling-hero .exp-nf-pill.active .exp-nf-dot {
  background: var(--show-color);
  box-shadow: 0 0 14px 2px var(--show-color);
}
body.exp-cycling-hero .exp-nf-pill:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* ============================================================
 * 2) Per-show theming on production rows
 * ============================================================ */
body.exp-show-theming .exp-themed-row .badge {
  position: relative;
}
body.exp-show-theming .exp-themed-row .prod-cell-text h3 {
  position: relative; display: inline-block;
}
body.exp-show-theming .exp-themed-row .prod-cell-text h3::after {
  content: ""; display: block; height: 4px; width: 56px;
  margin-top: 12px;
  background: var(--show-color, var(--c-orange));
  border-radius: 2px;
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
}
body.exp-show-theming .exp-themed-row.is-visible .prod-cell-text h3::after,
body.exp-show-theming .prod-row[data-reveal].is-visible .prod-cell-text h3::after {
  transform: scaleX(1);
}
body.exp-show-theming .exp-themed-row .prod-cell-text .meta {
  color: var(--show-color, var(--c-orange));
  font-weight: var(--weight-interface);
}
body.exp-show-theming .exp-themed-row .learn {
  color: var(--show-color, var(--c-orange));
}
body.exp-show-theming .exp-themed-row .learn::after {
  background: var(--show-color, var(--c-orange));
}
body.exp-show-theming .exp-themed-row .prod-cell-image::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 100%, var(--show-color, transparent) 0%, transparent 50%);
  opacity: 0; mix-blend-mode: screen;
  transition: opacity 0.4s ease;
}
body.exp-show-theming .exp-themed-row .prod-cell-image:hover::after { opacity: 0.35; }

/* Production detail page tinting */
body.exp-show-theming .exp-themed-stage .stat-num,
body.exp-show-theming .exp-themed-stage .prods-detail-side .stat-num {
  color: var(--show-color, var(--c-orange));
}
body.exp-show-theming .exp-themed-stage .prods-visit {
  color: var(--show-color, var(--c-orange));
}

/* ============================================================
 * 3) Testimonial mosaic + typewriter caret
 * ============================================================ */
body.exp-testimonial-mosaic .testimonials { position: relative; overflow: hidden; }
body.exp-testimonial-mosaic .exp-mosaic {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 0;
}
body.exp-testimonial-mosaic .exp-mosaic img {
  position: absolute;
  width: 60px; height: 60px; border-radius: 50%;
  object-fit: cover;
  opacity: 0.18; filter: grayscale(0.2) blur(0.4px);
  border: 2px solid rgba(255,255,255,.12);
  animation: exp-mosaic-float 14s ease-in-out infinite;
}
/* Hand-placed positions, deterministic via --i */
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(1) { top: 12%; left:  6%; width: 70px; height: 70px; animation-delay: -2s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(2) { top: 64%; left:  3%; width: 50px; height: 50px; animation-delay: -5s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(3) { top:  8%; right: 8%; width: 56px; height: 56px; animation-delay: -7s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(4) { top: 70%; right: 6%; width: 80px; height: 80px; animation-delay: -3s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(5) { top: 38%; left:  2%; width: 44px; height: 44px; animation-delay: -9s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(6) { top: 32%; right: 3%; width: 64px; height: 64px; animation-delay: -1s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(7) { top: 86%; left: 50%; width: 40px; height: 40px; animation-delay: -6s; }
body.exp-testimonial-mosaic .exp-mosaic img:nth-child(8) { top:  2%; left: 50%; width: 36px; height: 36px; animation-delay: -4s; }
@keyframes exp-mosaic-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.04); opacity: 0.28; }
}
body.exp-testimonial-mosaic .testimonials > *:not(.exp-mosaic) { position: relative; z-index: 1; }

/* Typewriter caret */
body.exp-testimonial-mosaic .t-quote::after {
  content: "";
  display: inline-block;
  width: 2px; height: 1em; vertical-align: -0.15em;
  background: var(--c-pink);
  margin-left: 4px;
  animation: exp-caret 0.9s steps(2) infinite;
}
@keyframes exp-caret { 50% { opacity: 0; } }

/* ============================================================
 * 4) Stats banner — skewed banner with animated dot pattern
 * ============================================================ */
body.exp-stats-banner .stats-bar {
  position: relative; overflow: hidden;
  transform: skewY(-2.4deg);
  margin: 60px 0;
  padding: 70px 0 !important;
  background: linear-gradient(95deg,
    var(--c-purple) 0%,
    #2a0e3d 35%,
    #0a0512 70%,
    var(--c-purple-deep, #1a0828) 100%);
}
body.exp-stats-banner .stats-bar::before {
  content: ""; position: absolute; inset: -20px 0;
  background-image: radial-gradient(rgba(235,188,220,.18) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  animation: exp-dotdrift 30s linear infinite;
  opacity: 0.7;
}
@keyframes exp-dotdrift {
  to { background-position: 220px 220px; }
}
body.exp-stats-banner .stats-bar .stats-row {
  position: relative; z-index: 2;
  transform: skewY(2.4deg);
}
body.exp-stats-banner .stats-bar .stat b {
  background: linear-gradient(90deg, #fff 0%, var(--c-pink) 60%, var(--c-orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
 * 5) News reading-progress bar + next-article card
 * ============================================================ */
body.exp-news-reading-progress #exp-read-bar {
  position: fixed; left: 0; right: 0; top: 0;
  height: 3px;
  background: rgba(255,255,255,.05);
  z-index: 999;
  pointer-events: none;
}
body.exp-news-reading-progress #exp-read-bar i {
  display: block; height: 100%; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink), var(--c-purple));
  transition: transform 0.08s linear;
}
body:not(.exp-news-reading-progress) #exp-read-bar { display: none; }

body.exp-news-reading-progress .exp-next-article {
  display: grid; grid-template-columns: 200px 1fr;
  max-width: 900px; margin: 60px auto 80px; padding: 0 32px;
  gap: 24px; align-items: center;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease;
}
body.exp-news-reading-progress .exp-next-article:hover { transform: translateX(6px); }
body.exp-news-reading-progress .exp-na-img {
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.08);
}
body.exp-news-reading-progress .exp-na-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
body.exp-news-reading-progress .exp-next-article:hover .exp-na-img img { transform: scale(1.06); }
body.exp-news-reading-progress .exp-na-eyebrow {
  font-family: var(--font-display); font-size: 11px; font-weight: var(--weight-interface-strong); letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--c-orange);
}
body.exp-news-reading-progress .exp-na-body h3 {
  font-size: 22px; font-weight: var(--weight-display); color: #fff; margin: 8px 0 6px;
  line-height: 1.25;
}
body.exp-news-reading-progress .exp-na-meta {
  color: rgba(255,255,255,.55); font-size: 13px;
}
@media (max-width: 700px) {
  body.exp-news-reading-progress .exp-next-article { grid-template-columns: 1fr; }
}

/* Pull-quote treatment in article body */
body.exp-news-reading-progress .article-body blockquote {
  margin: 30px 0; padding: 24px 28px;
  border-left: 3px solid var(--c-orange);
  background: rgba(219,83,0,.06);
  font-size: 22px; font-style: italic; color: #fff;
  line-height: 1.45;
}

/* ============================================================
 * 6) Polaroid-style founder cards
 * ============================================================ */
body.exp-founders-polaroid .founders-cards {
  gap: 50px;
  padding: 20px 0;
}
@keyframes polaroidRiseOdd {
  from { opacity: 0; transform: translateY(36px) rotate(0deg); }
  to   { opacity: 1; transform: translateY(0)    rotate(-2.4deg); }
}
@keyframes polaroidRiseEven {
  from { opacity: 0; transform: translateY(36px) rotate(0deg); }
  to   { opacity: 1; transform: translateY(0)    rotate( 1.8deg); }
}
body.exp-founders-polaroid .founder-card-v2 {
  background: #fdfaf3;
  padding: 16px 16px 22px;
  border-radius: 4px;
  box-shadow:
    0 14px 40px -12px rgba(0,0,0,.55),
    0 2px 6px rgba(0,0,0,.25);
  position: relative;
  color: #2c1a3a;
  /* Hover transition only — reveal uses keyframe animation instead */
  transition: transform 0.5s cubic-bezier(.2,.6,.2,1), box-shadow 0.5s ease;
}
/* Default settled rotation when no reveal is involved */
body.exp-founders-polaroid .founder-card-v2:nth-child(odd)  { transform: rotate(-2.4deg); }
body.exp-founders-polaroid .founder-card-v2:nth-child(even) { transform: rotate( 1.8deg); }
/* Pre-reveal state: invisible, ready to animate up */
body.exp-founders-polaroid .founder-card-v2[data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(36px);
  animation: none;
}
/* Reveal kicks off the keyframe animation; staggers via existing data-reveal-delay */
body.exp-founders-polaroid .founder-card-v2[data-reveal].is-visible:nth-child(odd) {
  animation: polaroidRiseOdd 0.9s cubic-bezier(.2,.6,.2,1) both;
}
body.exp-founders-polaroid .founder-card-v2[data-reveal].is-visible:nth-child(even) {
  animation: polaroidRiseEven 0.9s cubic-bezier(.2,.6,.2,1) both;
}
body.exp-founders-polaroid .founder-card-v2[data-reveal-delay="2"].is-visible {
  animation-delay: 0.16s;
}
body.exp-founders-polaroid .founder-card-v2[data-reveal-delay="3"].is-visible {
  animation-delay: 0.24s;
}
body.exp-founders-polaroid .founder-card-v2:hover {
  animation: none;
  transform: translateY(-8px) rotate(0deg) scale(1.02);
  box-shadow:
    0 30px 60px -18px rgba(0,0,0,.7),
    0 4px 8px rgba(0,0,0,.3);
}
body.exp-founders-polaroid .founder-card-v2 .founder-photo-wrap {
  border-radius: 2px; aspect-ratio: 1 / 1;
  overflow: hidden;
}
body.exp-founders-polaroid .founder-card-v2 .founder-photo-wrap img {
  filter: saturate(0.95) contrast(1.02);
}
body.exp-founders-polaroid .founder-card-v2 .body {
  padding: 18px 6px 4px;
}
body.exp-founders-polaroid .founder-card-v2 .body p {
  color: #4a3257; font-size: 13.5px; line-height: 1.55; margin: 0;
}
body.exp-founders-polaroid .founder-card-v2 .role-pill {
  top: auto; bottom: 12px; left: 12px; right: auto;
}
body.exp-founders-polaroid .founder-card-v2 .name-overlay {
  position: static; padding: 14px 6px 0; background: none; color: #2c1a3a;
}
body.exp-founders-polaroid .founder-card-v2 .name-overlay h3 {
  color: #2c1a3a; font-size: 22px; font-weight: var(--weight-display); margin: 0;
  text-shadow: none;
}

/* ============================================================
 * 7) Awards by year — timeline spine
 * ============================================================ */
body.exp-awards-timeline .awards-grid.exp-awards-timeline {
  display: block;
  position: relative;
}
body.exp-awards-timeline .awards-grid.exp-awards-timeline::before {
  content: ""; position: absolute;
  left: 96px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-orange), var(--c-pink), transparent);
  border-radius: 2px;
}
@media (max-width: 800px) {
  body.exp-awards-timeline .awards-grid.exp-awards-timeline::before { left: 28px; }
}
body.exp-awards-timeline .exp-aw-year {
  position: relative;
  padding: 28px 0 28px 140px;
}
@media (max-width: 800px) {
  body.exp-awards-timeline .exp-aw-year { padding-left: 60px; }
}
body.exp-awards-timeline .exp-aw-spine {
  position: absolute; left: 0; top: 28px;
  display: flex; align-items: center; gap: 12px;
}
body.exp-awards-timeline .exp-aw-year-label {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 86px; height: 36px; padding: 0 14px;
  background: var(--c-bg); color: var(--c-orange);
  font-family: var(--font-display); font-size: 13px; font-weight: var(--weight-figure); letter-spacing: 1px;
  border: 2px solid var(--c-orange);
  border-radius: 50px;
  position: relative; z-index: 2;
}
@media (max-width: 800px) {
  body.exp-awards-timeline .exp-aw-year-label { min-width: 64px; }
}
body.exp-awards-timeline .exp-aw-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* ============================================================
 * 8) Contact bubble placeholders
 * ============================================================ */
body.exp-contact-bubble .contact-form-card textarea,
body.exp-contact-bubble .gs-form textarea {
  transition: background 0.4s ease, border-color 0.4s ease;
}
body.exp-contact-bubble .contact-form-card textarea:focus,
body.exp-contact-bubble .gs-form textarea:focus {
  background: rgba(219,83,0,.04);
}
body.exp-contact-bubble .contact-form-card textarea::placeholder,
body.exp-contact-bubble .gs-form textarea::placeholder {
  transition: opacity 0.4s ease;
}

/* ============================================================
 * 9) Custom cursor + magnetic CTAs + image wipe
 * ============================================================ */
body.exp-micro-interactions #exp-cursor {
  position: fixed; top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0; transition: opacity 0.2s ease;
  mix-blend-mode: difference;
}
body.exp-micro-interactions #exp-cursor.on { opacity: 1; }
body.exp-micro-interactions #exp-cursor .ring {
  position: absolute; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
body.exp-micro-interactions #exp-cursor .dot {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 4px;
  border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%);
}
body.exp-micro-interactions #exp-cursor.hover .ring {
  width: 44px; height: 44px;
  border-color: #fff;
  background: rgba(219,83,0,.25);
}
@media (hover: none) {
  body.exp-micro-interactions #exp-cursor { display: none; }
}

/* Hide native cursor only on devices that support hover.
 * Keep native cursor visible inside text inputs/textareas so users
 * can see the I-beam while typing.
 */
@media (hover: hover) and (pointer: fine) {
  body.exp-micro-interactions { cursor: none; }
  body.exp-micro-interactions a,
  body.exp-micro-interactions button,
  body.exp-micro-interactions [role="button"] { cursor: none; }
  body.exp-micro-interactions input[type="text"],
  body.exp-micro-interactions input[type="email"],
  body.exp-micro-interactions input[type="search"],
  body.exp-micro-interactions input:not([type]),
  body.exp-micro-interactions textarea { cursor: text; }
}

/* Magnetic CTAs — translation handled in JS, but smooth + reset */
body.exp-micro-interactions .btn,
body.exp-micro-interactions .btn-outline {
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

/* Image wipe reveal */
body.exp-micro-interactions .exp-wipe { position: relative; overflow: hidden; }
body.exp-micro-interactions .exp-wipe::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--c-orange) 0%, var(--c-pink) 50%, var(--c-purple) 100%);
  transform-origin: right center;
  z-index: 5; pointer-events: none;
  transition: transform 0.9s cubic-bezier(.7,.05,.2,1);
}
body.exp-micro-interactions .exp-wipe.exp-wipe-go::after {
  transform: scaleX(0);
}
/* Skip the wipe on the hero backgrounds (would blanket entire page on load) */
body.exp-micro-interactions .hero.exp-wipe::after,
body.exp-micro-interactions .digital-hero-bg.exp-wipe::after,
body.exp-micro-interactions .about-hero-bg.exp-wipe::after {
  display: none;
}

/* ============================================================
 * 10) Numbered section labels + display italic flourishes
 * ============================================================ */
body.exp-typography .section-title em,
body.exp-typography .mission-h2 em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  background: none;
  -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--c-orange);
}
body.exp-typography section .section-title[data-exp-num]::before {
  content: attr(data-exp-num);
  display: inline-block;
  margin-right: 14px; vertical-align: 0.18em;
  font-family: var(--font-display); font-size: 0.42em; font-weight: var(--weight-interface-strong);
  letter-spacing: 2px;
  color: var(--c-orange);
  padding: 4px 10px; border-radius: 4px;
  background: rgba(219,83,0,.1);
  border: 1px solid rgba(219,83,0,.3);
}
/* Don't show numbers on About hero h1 etc. — only section-title */
body.exp-typography .news-other-head h2[data-exp-num]::before,
body.exp-typography .footer-col [data-exp-num]::before { content: none; }

/* ============================================================
 * 11) Footer "Now in production" + newsletter
 * ============================================================ */
body.exp-footer-enhanced .exp-footer-extra {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  padding: 30px 0 50px;
  border-bottom: 1px solid var(--c-line-dark);
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  body.exp-footer-enhanced .exp-footer-extra { grid-template-columns: 1fr; gap: 28px; }
}
body.exp-footer-enhanced .exp-now-card,
body.exp-footer-enhanced .exp-newsletter {
  display: flex; flex-direction: column; gap: 12px;
}
body.exp-footer-enhanced .exp-now-eyebrow,
body.exp-footer-enhanced .exp-nl-eyebrow {
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--c-orange); font-family: var(--font-display); font-weight: var(--weight-interface-strong);
}
body.exp-footer-enhanced .exp-now-show {
  --show-color: var(--c-orange);
  display: flex; gap: 16px; align-items: center;
  text-decoration: none; color: #fff;
  padding: 12px; border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative; overflow: hidden;
}
body.exp-footer-enhanced .exp-now-show::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, var(--show-color), transparent 60%);
  opacity: 0.15; pointer-events: none;
}
body.exp-footer-enhanced .exp-now-show:hover {
  border-color: var(--show-color); transform: translateY(-2px);
}
body.exp-footer-enhanced .exp-now-show img {
  width: 60px; height: 60px; border-radius: 10px; object-fit: cover;
  flex: 0 0 auto;
}
body.exp-footer-enhanced .exp-now-show strong {
  display: block; font-family: var(--font-display); font-size: 15px; font-weight: var(--weight-interface-strong);
}
body.exp-footer-enhanced .exp-now-show span {
  display: block; font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px;
}
body.exp-footer-enhanced .exp-newsletter label {
  display: flex; gap: 8px; align-items: stretch;
  padding: 6px 6px 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  transition: border-color 0.3s ease;
}
body.exp-footer-enhanced .exp-newsletter label:focus-within {
  border-color: var(--c-orange);
}
body.exp-footer-enhanced .exp-newsletter input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: 14px; font-family: inherit;
}
body.exp-footer-enhanced .exp-newsletter input::placeholder {
  color: rgba(255,255,255,.4);
}
body.exp-footer-enhanced .exp-newsletter button {
  background: var(--c-orange); color: #fff;
  border: none; border-radius: 50px;
  padding: 8px 18px; font-weight: var(--weight-interface-strong); font-size: 13px;
  cursor: pointer; transition: background 0.2s ease;
}
body.exp-footer-enhanced .exp-newsletter button:hover { background: #f06316; }
body.exp-footer-enhanced .exp-newsletter.done button { background: #2d9c5b; }
body.exp-footer-enhanced .exp-nl-tag {
  font-size: 12px; color: rgba(255,255,255,.5);
}

/* ============================================================
 * 12) Tone-down — hide some pre-existing flourishes that
 * compete for attention now that the new layer is in place.
 * ============================================================ */
body.exp-tone-down-noise .hero::before { display: none; }              /* floating orange dot */
body.exp-tone-down-noise .section.purple::before { display: none; }    /* purple-section accent line */
body.exp-tone-down-noise .btn:not(.btn-orange):not(.btn-pink)::after {  /* button sheen except primary */
  display: none;
}
body.exp-tone-down-noise .award-card::before { display: none; }        /* award-card vertical bar (replaced by timeline) */
body.exp-tone-down-noise .prod-cell-text .prod-eyebrow::before {        /* tiny dash before eyebrow */
  display: none;
}
