/* ==========================================================================
   Nibblr Marketing Page Styles
   Combined from: tokens.css, base.css, components.css, layout.css, animations.css
   Scoped under .marketing-page to avoid conflicts with app.css
   ========================================================================== */

/* --- Tokens --- */

:root {
  --brand-espresso: #1E1712;
  --brand-gold: #F0A500;
  --brand-gold-hover: #D99400;
  --brand-terracotta: #C9472A;
  --brand-clay: #B89578;
  --brand-parchment: #F7F0E6;
  --brand-cocoa: #5C4033;
  --bg-primary: #F7F0E6;
  --bg-surface: #FEFCF9;
  --bg-muted: #EDE7DF;
  --text-primary: #352318;
  --text-secondary: #5C4033;
  --text-muted: #8B7355;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255, 255, 255, 0.8);
  --text-on-dark-subtle: rgba(255, 255, 255, 0.7);
  --status-pass: #4A7C3F;
  --font-display: 'Fraunces', serif;
  --font-body: var(--font-primary, 'DM Sans', sans-serif);
  --font-mono: 'DM Mono', monospace;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 96px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1312px;
  --page-padding: 64px;
}

@media (max-width: 768px) {
  :root {
    --page-padding: 24px;
  }
}

/* --- Base (scoped under .marketing-page) --- */

.marketing-page *, .marketing-page *::before, .marketing-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.marketing-page {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html:has(.marketing-page) {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.marketing-page h1, .marketing-page h2, .marketing-page h3, .marketing-page h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

.marketing-page img:not(.nav__logo-img):not(.footer__logo-img) {
  max-width: 100%;
  height: auto;
  display: block;
}

.marketing-page a {
  color: inherit;
  text-decoration: none;
}

/* --- Components --- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
  border: none;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--brand-gold);
  color: var(--brand-espresso);
  padding: 16px 32px;
  font-size: 16px;
}

.btn--primary:hover {
  background-color: var(--brand-gold-hover);
}

.btn--primary-sm {
  background-color: var(--brand-gold);
  color: var(--brand-espresso);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
}

.btn--primary-sm:hover {
  background-color: var(--brand-gold-hover);
}

.btn--primary-lg {
  background-color: var(--brand-gold);
  color: var(--brand-espresso);
  padding: 18px 40px;
  font-size: 18px;
}

.btn--primary-lg:hover {
  background-color: var(--brand-gold-hover);
}

/* Shimmer CTA button */
.btn--shimmer {
  background-color: #E8A230;
  padding: 18px 42px;
  font-size: 17px;
  font-weight: 500;
  border-radius: var(--radius-md);
  box-shadow: none;
  animation: btn-pulse 2.5s ease-in-out infinite;
  transition: box-shadow 0.2s ease;
}

.btn--shimmer span {
  background: linear-gradient(
    120deg,
    var(--brand-espresso) 0%,
    var(--brand-espresso) 20%,
    #2e2a24 28%,
    #3a3228 33%,
    #5a4d3a 38%,
    #8a7a5a 43%,
    #c4b488 47%,
    #fdf0d0 49.5%,
    #fffdf6 50%,
    #fdf0d0 50.5%,
    #c4b488 53%,
    #8a7a5a 57%,
    #5a4d3a 62%,
    #3a3228 67%,
    #2e2a24 72%,
    var(--brand-espresso) 80%,
    var(--brand-espresso) 100%
  );
  background-size: 600% 100%;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 11s ease-in-out infinite;
}

.btn--shimmer:hover {
  box-shadow: 0 8px 28px rgba(232, 162, 48, 0.35);
  animation: none;
}

.btn--shimmer:active {
  box-shadow: 0 4px 16px rgba(232, 162, 48, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--text-secondary);
}

.btn--ghost:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* Pain statements */
.pain-statement {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--bg-muted);
  position: relative;
  overflow: hidden;
}

.pain-statement:last-child {
  border-bottom: none;
}

.pain-statement__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-muted);
  flex-shrink: 0;
  min-width: 72px;
}

.pain-statement__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.pain-statement__title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.pain-statement__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}

.pain-statement__accent {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 48px;
  border-radius: 2px;
}

.pain-statement__accent--gold {
  background-color: var(--brand-gold);
}

.pain-statement__accent--green {
  background-color: var(--status-pass);
}

.pain-statement__accent--terracotta {
  background-color: var(--brand-terracotta);
}

/* Feature rows */
.feature-row {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.feature-row--reverse {
  flex-direction: row-reverse;
}

.feature-row__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-row__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(240, 165, 0, 0.2);
}

.feature-row__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-row__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-row__image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 560px;
  position: relative;
}

.feature-row__image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-row__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

/* Quote cards */
.quote-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-card__text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.quote-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.quote-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-muted);
}

.quote-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-card__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Stat items */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat__value {
  font-family: var(--font-body);
  font-size: 45px;
  font-weight: 900;
  color: var(--brand-clay);
  line-height: 1;
}

.stat__unit {
  font-size: 28px;
}

.stat__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-clay);
}

/* --- Layout --- */

/* Section container */
.section {
  width: 100%;
  padding: var(--space-4xl) var(--page-padding);
  overflow: hidden;
}

.section--surface {
  background-color: var(--bg-surface);
}

.section--parchment {
  background-color: var(--bg-primary);
}

.section--espresso {
  background-color: var(--brand-espresso);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Section header (centered titles) */
.section-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.section-header__tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-header__title {
  font-size: 36px;
  font-weight: 800;
}

.section-header__desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  height: 72px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--bg-muted);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  padding: 0;
}

.nav__toggle-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-espresso);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle-bar:nth-child(1) { top: 0; }
.nav__toggle-bar:nth-child(2) { top: 9px; }
.nav__toggle-bar:nth-child(3) { top: 18px; }

.nav__toggle.is-open .nav__toggle-bar:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.nav__toggle.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open .nav__toggle-bar:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 28px;
  width: auto;
}

/* Hero */
.hero-wrap {
  background: linear-gradient(
    to right,
    rgba(30, 23, 18, 0.7) 0%,
    rgba(30, 23, 18, 0.45) 50%,
    rgba(30, 23, 18, 0.15) 100%
  ),
  url('/img/marketing/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-3xl) var(--page-padding);
  max-width: calc(var(--max-width) + var(--page-padding) * 2);
  margin: 0 auto;
  overflow: visible;
}

.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero-wrap .hero__headline {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
}

.hero-wrap .hero__subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.marketing-page .hero-wrap .btn.btn--ghost-light {
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: var(--brand-espresso);
  padding: 18px 42px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

.marketing-page .hero-wrap .btn.btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.hero__right {
  flex: 1;
  min-height: 400px;
  margin-bottom: calc(-1 * var(--space-3xl) - 40px);
  position: relative;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(240, 165, 0, 0.6) 0%,
    rgba(240, 165, 0, 0.35) 30%,
    rgba(240, 165, 0, 0.15) 50%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.hero__right img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: var(--space-xl) var(--page-padding);
  background-color: var(--brand-espresso);
  position: relative;
  z-index: 1;
}

/* Section content gap (below header) */
.section__content {
  margin-top: var(--space-2xl);
}

/* Pain stack */
.pain-stack {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Quote grid */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

/* Vision cards */
.vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.vision-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.vision-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vision-card__badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--status-pass);
  background: rgba(74, 124, 63, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.vision-card__badge--later {
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.05);
}

.vision-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.vision-card__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-5xl) var(--page-padding);
  max-width: 860px;
  margin: 0 auto;
}

.marketing-page .final-cta__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.2;
}

.final-cta__sub {
  font-size: 18px;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.final-cta__note {
  font-size: 14px;
  color: var(--text-on-dark-muted);
}

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--page-padding);
  gap: var(--space-sm);
  background-color: var(--brand-espresso);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 20px;
  width: auto;
  opacity: 0.8;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-on-dark-subtle);
}

.marketing-page .footer__email {
  font-size: 14px;
  color: var(--text-on-dark);
}

/* Responsive */
@media (max-width: 1120px) {
  .hero {
    flex-direction: column;
    padding-bottom: var(--space-xl);
  }

  .hero-wrap .hero__headline {
    font-size: 40px;
  }

  .hero__right {
    width: 100%;
    min-height: 300px;
  }

  /* Feature rows: num -> title -> image -> description */
  .feature-row,
  .feature-row--reverse {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .feature-row__text {
    display: contents;
  }

  .feature-row__num {
    order: 1;
  }

  .feature-row__title {
    order: 2;
  }

  .feature-row__image {
    order: 3;
    width: 100%;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .feature-row__image img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .feature-row__desc {
    order: 4;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--bg-primary);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--bg-muted);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .hero__headline {
    font-size: 36px;
  }

  .section-header__title {
    font-size: 28px;
  }

  .final-cta__title {
    font-size: 32px;
  }

  .stats-bar {
    flex-wrap: wrap;
    height: auto;
    padding: var(--space-lg) var(--page-padding);
    gap: var(--space-lg) 0;
  }

  .stats-bar .stat {
    flex: 0 0 50%;
    text-align: center;
  }

  .stat__value {
    font-size: 32px;
  }

  .stat__unit {
    font-size: 20px;
  }

  .pain-statement {
    flex-direction: column;
    gap: var(--space-md);
  }

  .pain-statement__num {
    font-size: 40px;
    min-width: auto;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .vision-cards {
    grid-template-columns: 1fr;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--shimmer, .btn--primary, .btn--ghost, .btn--ghost-light {
    text-align: center;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--page-padding);
  }
}

/* --- Animations --- */

/* Progressive disclosure animations */

/* Base state: hidden, shifted down */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children: each child delays slightly */
.reveal-stagger > .reveal {
  transition-delay: 0s;
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }

/* Pain statements: stagger reveal as they scroll in */
.pain-stack > .pain-statement.reveal:nth-child(1) { transition-delay: 0s; }
.pain-stack > .pain-statement.reveal:nth-child(2) { transition-delay: 0.15s; }
.pain-stack > .pain-statement.reveal:nth-child(3) { transition-delay: 0.3s; }

/* Slide from left (for feature text) */
.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right (for feature images) */
.reveal--right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hero specific: fade up faster, no delay */
.hero__left .reveal {
  transition-duration: 0.5s;
}

.hero__left .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero__left .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero__left .reveal:nth-child(3) { transition-delay: 0.4s; }

/* Stats bar: count-up feel with stagger */
.stats-bar .reveal:nth-child(1) { transition-delay: 0s; }
.stats-bar .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-bar .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats-bar .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Feature image: subtle scale on reveal */
.feature-row__image-wrap {
  position: relative;
}

.feature-row__image-wrap .feature-row__image {
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Gradient glow behind images */
.glow {
  position: relative;
}

.glow::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    ellipse at center,
    rgba(240, 165, 0, 0.12) 0%,
    rgba(240, 165, 0, 0.04) 50%,
    transparent 80%
  );
  z-index: 0;
  filter: blur(24px);
  transition: opacity 0.8s ease-out;
  opacity: 0;
}

.glow.is-visible::before {
  opacity: 1;
}

/* Hero image glow: slightly warmer and larger */
.hero__right.glow::before {
  inset: -24px;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(240, 165, 0, 0.15) 0%,
    rgba(185, 149, 120, 0.08) 40%,
    transparent 75%
  );
  filter: blur(32px);
}

/* Feature image glow variants */
.glow--warm::before {
  background: radial-gradient(
    ellipse at center,
    rgba(240, 165, 0, 0.1) 0%,
    rgba(247, 240, 230, 0.3) 50%,
    transparent 80%
  );
}

.glow--cool::before {
  background: radial-gradient(
    ellipse at center,
    rgba(74, 124, 63, 0.08) 0%,
    rgba(247, 240, 230, 0.2) 50%,
    transparent 80%
  );
}

/* Shimmer button animations */
@keyframes text-shimmer {
  0%, 10% { background-position: 0% center; }
  70%, 100% { background-position: 100% center; }
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232, 162, 48, 0.2); }
  50% { box-shadow: 0 5px 28px rgba(232, 162, 48, 0.35), 0 0 40px rgba(232, 162, 48, 0.08); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .glow::before {
    opacity: 1;
    transition: none;
  }

  .btn--shimmer {
    animation: none;
  }

  .btn--shimmer span {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--brand-espresso);
  }
}
