/* =============================================
   FLORIQUE — Landing Page Styles
   Design: Dark purple + gold, glassmorphism
   Matching app UI from marketplace screenshots
   ============================================= */

/* === VARIABLES === */
:root {
  --purple-darkest: #1a0830;
  --purple-dark:    #220c38;
  --purple-mid:     #2e1050;
  --purple-light:   #4a1a60;

  --gold:           #f5c518;
  --gold-light:     #ffe066;
  --gold-dim:       rgba(245, 197, 24, 0.15);

  --pink:           #e91e63;

  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.70);
  --text-muted:     rgba(255, 255, 255, 0.42);

  --glass-bg:       rgba(255, 255, 255, 0.055);
  --glass-bg-hover: rgba(255, 255, 255, 0.09);
  --glass-border:   rgba(255, 255, 255, 0.10);
  --glass-border-h: rgba(255, 255, 255, 0.22);

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Poppins', system-ui, -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  background-color: #1a0830;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

a { color: inherit; text-decoration: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a0830; }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 3px; }

/* === UTILITIES === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* Section divider line */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

/* CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0a0218;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.45);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 8, 48, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.85; }

.nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

/* === HERO === */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg,
    #2e1050 0%,
    #4a1a60 18%,
    #6a2468 36%,
    #8e3460 54%,
    #a84048 70%,
    #c05030 85%,
    #cc6820 100%
  );
}

/* Decorative floral SVGs */
.hero-floral {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 260px;
  height: 100%;
  pointer-events: none;
}

.hero-floral-left  { left: -20px; }
.hero-floral-right { right: -20px; }

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 110px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 197, 24, 0.11);
  border: 1px solid rgba(245, 197, 24, 0.32);
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-text h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 480px;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  transition: var(--transition);
  cursor: pointer;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Highlighted badge for detected platform */
.store-badge.active {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.09);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 28px rgba(245, 197, 24, 0.2);
}

.badge-store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-sub-text {
  font-size: 0.71rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

.badge-main-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.free-note {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-phone-img {
  position: relative;
  z-index: 1;
  max-height: 78vh;
  width: auto;
  border-radius: 36px;
  filter: drop-shadow(0 28px 80px rgba(0, 0, 0, 0.65));
  animation: float 4.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  z-index: 2;
  transition: color var(--transition);
  animation: hint-bounce 2.2s ease-in-out infinite;
}

.scroll-hint:hover { color: var(--text-secondary); }

@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* === BEFORE / AFTER === */
#before-after {
  padding: 110px 0;
  background: linear-gradient(180deg, #220c38 0%, #1a0830 100%);
  position: relative;
}

#before-after::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ba-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--glass-border);
  touch-action: pan-y;
}

/* Both images fill the slider box */
.ba-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
}

/* After image clipped to left portion */
.ba-after-clip {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.ba-after-clip .ba-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
  will-change: left;
}

.ba-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.ba-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(30, 10, 60, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Tags: Before / After */
.ba-tag {
  position: absolute;
  top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-tag-before {
  left: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-secondary);
  backdrop-filter: blur(6px);
}

.ba-tag-after {
  right: 14px;
  background: rgba(245, 197, 24, 0.9);
  color: #0a0218;
}

.ba-caption {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

/* === FEATURES === */
#features {
  padding: 110px 0;
  background: #1a0830;
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 38px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-h);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.feature-icon-wrap {
  width: 62px;
  height: 62px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(245, 197, 24, 0.22);
}

.feature-emoji {
  font-size: 1.85rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* === VIDEO === */
#video-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #1a0830 0%, #220c38 100%);
  position: relative;
}

#video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.video-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  max-width: 380px;
  margin: 0 auto;
}

.app-video {
  width: 100%;
  height: auto;
  display: block;
}

/* === SCREENSHOTS === */
#screenshots {
  padding: 110px 0 0;
  background: #1a0830;
  overflow: hidden;
  position: relative;
}

#screenshots::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.screenshots-outer {
  margin-top: 20px;
  overflow-x: auto;
  padding: 16px 24px 60px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.screenshots-outer::-webkit-scrollbar { display: none; }
.screenshots-outer.is-dragging { cursor: grabbing; }

.screenshots-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.screenshot-item {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.screenshot-item img {
  width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
}

.screenshot-item figcaption {
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

/* === HOW IT WORKS === */
#how-it-works {
  padding: 110px 0;
  background: #220c38;
  position: relative;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.steps-row {
  display: flex;
  align-items: flex-start;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
}

.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.68;
  max-width: 220px;
}

.step-arrow {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.35;
  flex-shrink: 0;
  padding-top: 56px;
  align-self: flex-start;
}

/* === DOWNLOAD CTA === */
#download {
  padding: 110px 0 130px;
  background: linear-gradient(180deg, #220c38 0%, #1a0830 100%);
  position: relative;
}

#download::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.download-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-dim);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.download-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.download-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 38px;
  line-height: 1.65;
}

.download-card .store-badges {
  justify-content: center;
}

.platform-hint {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  min-height: 1.4em;
}

/* === FOOTER === */
#footer {
  background: #140628;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 52px 0 36px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.footer-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-platforms {
  display: flex;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 120px 24px 90px;
    gap: 48px;
  }

  .hero-text {
    align-items: center;
  }

  .hero-sub { max-width: 560px; margin: 0 auto; }

  .hero-visual { display: none; }

  .hero-floral { opacity: 0.4; }

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

  .ba-slider {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

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

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .step { padding: 0; max-width: 360px; }
  .step p { max-width: 100%; }

  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    font-size: 1.4rem;
  }

  .download-card { padding: 56px 28px; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .store-badges {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
  }

  .store-badge { justify-content: center; }

  .features-grid { gap: 16px; }

  .feature-card { padding: 28px 22px; }

  .screenshots-track { gap: 16px; }
  .screenshot-item { width: 180px; }
  .screenshot-item img { width: 180px; }

  .download-card { border-radius: var(--radius-lg); padding: 44px 22px; }

  .download-card .store-badges {
    flex-direction: column;
    align-items: center;
    max-width: 260px;
    margin: 0 auto;
  }

  .section-header { margin-bottom: 44px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 2.1rem; }
  .hero-badge   { font-size: 0.78rem; }
}

/* =============================================
   STICKY MOBILE DOWNLOAD BANNER
   Only shown on iOS / Android via JS
   ============================================= */
#mobile-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(26, 8, 48, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);

  /* Slide-up entrance */
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#mobile-banner.visible {
  transform: translateY(0);
}

/* hidden attribute overrides display — remove it via JS */
#mobile-banner[hidden] {
  display: none;
}

.mobile-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.mobile-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.mobile-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-banner-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.mobile-banner-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.mobile-banner-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #0a0218;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.mobile-banner-btn:hover,
.mobile-banner-btn:active {
  background: var(--gold-light);
  transform: scale(1.03);
}

.mobile-banner-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--transition);
}

.mobile-banner-close:hover {
  color: var(--text-secondary);
}
