
/* ============================================================
   PLATFORM SHOWCASE SECTION
   Two full-bleed panels: Android (Material You) + iOS (Liquid Glass)
   Scroll-driven: sticky panels zoom into the phone on scroll.
   ============================================================ */

.platform-showcase-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 3rem 0 0;
}

/* Transparent, permanently-mounted sticky elements — see the comment in
   index.html for why. Negative margin cancels their footprint in the flex
   column so they don't add visible spacing; height stays a few px so they
   still register as a valid sampling candidate. */
.safe-area-sticky-guard {
  position: sticky;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

.safe-area-sticky-guard--top {
  top: 0;
  margin-bottom: -4px;
}

.safe-area-sticky-guard--bottom {
  bottom: 0;
  margin-top: -4px;
}

/* ── Scroll scene: tall container that pins the panel sticky ──── */

.ps-scroll-scene {
  height: 400vh;
  position: relative;
}

/* ── Sticky panel shell ──────────────────────────────────────── */

.ps-panel {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.ps-panel__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.ps-panel__inner--ios {
  flex-direction: row-reverse;
}

.ps-panel__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.ps-panel__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  align-self: flex-end;
  padding-bottom: 3rem;
}

.ps-panel__media--ios {
  align-items: center;
  align-self: flex-end;
  padding-bottom: 3rem;
}

/* ── Chips row ───────────────────────────────────────────────── */

.ps-chips-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── Android 3D mascot ───────────────────────────────────────── */

.android-mascot-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.android-3d-head {
  width: clamp(72px, 9vw, 120px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
  animation: android-head-float 4s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes android-head-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-8px) rotate(3deg); }
}

/* ============================================================
   ANDROID PANEL — Material You
   ============================================================ */

.ps-panel--android {
  background-color: #EEF8EF;
  --ps-bg: #EEF8EF;
  border-bottom: 1px solid rgba(56, 102, 65, 0.10);
  transition: background-color 0.5s ease;
}

.ps-panel--android[data-android-color="yellow"] {
  background-color: #FBF8E8;
  --ps-bg: #FBF8E8;
  --dm-primary:               #7A5900;
  --dm-primary-container:     #FFE0A0;
  --dm-on-primary-container:  #261A00;
}
.ps-panel--android[data-android-color="purple"] {
  background-color: #F4EEF8;
  --ps-bg: #F4EEF8;
  --dm-primary:               #7D3DA2;
  --dm-primary-container:     #F0DAFF;
  --dm-on-primary-container:  #2B0050;
}
.ps-panel--android[data-android-color="orange"] {
  background-color: #FBF0E8;
  --ps-bg: #FBF0E8;
  --dm-primary:               #9B3D00;
  --dm-primary-container:     #FFDBCF;
  --dm-on-primary-container:  #360E00;
}

@media (prefers-color-scheme: dark) {
  .ps-panel--android {
    background-color: #0A1A0F;
    --ps-bg: #0A1A0F;
    border-bottom: 1px solid rgba(158, 208, 163, 0.08);
  }
  .ps-panel--android[data-android-color="yellow"] {
    background-color: #1A1500;
    --ps-bg: #1A1500;
    --dm-primary:               #F5C842;
    --dm-primary-container:     #574200;
    --dm-on-primary-container:  #FFE0A0;
  }
  .ps-panel--android[data-android-color="purple"] {
    background-color: #110A1A;
    --ps-bg: #110A1A;
    --dm-primary:               #DCABFF;
    --dm-primary-container:     #5C1E88;
    --dm-on-primary-container:  #F0DAFF;
  }
  .ps-panel--android[data-android-color="orange"] {
    background-color: #1A0C08;
    --ps-bg: #1A0C08;
    --dm-primary:               #FFB59A;
    --dm-primary-container:     #742A00;
    --dm-on-primary-container:  #FFDBCF;
  }
}

/* ── Material You Chips ──────────────────────────────────────── */

.my-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-family: 'Roboto Flex', 'Roboto', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  font-variation-settings: 'wght' 500, 'opsz' 14;
  letter-spacing: 0.006rem;
}

.my-chip .material-symbols-outlined {
  font-size: 16px;
}

.my-chip--platform {
  background-color: var(--dm-primary-container);
  color: var(--dm-on-primary-container);
  transition: background-color 0.5s ease, color 0.5s ease;
}

.my-chip--system {
  background-color: transparent;
  border: 1.5px solid var(--dm-primary);
  color: var(--dm-primary);
  transition: border-color 0.5s ease, color 0.5s ease;
}

/* ── Material You Typography ─────────────────────────────────── */

/*
  Nunito (Google Sans analog): very round terminals, single-story 'a',
  variable weight 200–900. Rounded letterforms mirror Google Sans's playful
  character — the defining trait of M3 Expressive display typography.

  M3 Expressive editorial treatment: dramatic within-headline weight contrast.
  The context line runs at 200 (Extra-Light), the accent jumps to 900 (Black)
  + italic — weight + style together create the "bold, emphasized, playful"
  personality that M3 Expressive calls out as its signature headline move.
*/

.my-display-small {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--dm-on-surface);
  margin: 0;
}

/* context line — Extra-Light, wide tracking, creates maximum contrast */
.my-display-small__light {
  font-weight: 200;
  letter-spacing: 0.01em;
}

/* accent line — Black italic + primary color = M3 Expressive emphasis */
.my-display-small__accent {
  font-weight: 900;
  font-style: italic;
  color: var(--dm-primary);
  transition: color 0.5s ease;
}

.my-body-large {
  font-family: 'Roboto Flex', 'Roboto', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-variation-settings: 'wght' 400, 'opsz' 16;
  line-height: 1.6;
  letter-spacing: 0.031rem;
  color: var(--dm-on-surface-variant);
  margin: 0;
}

.my-body-large strong {
  color: var(--dm-on-surface);
  font-weight: 600;
}

/* ── Material You Feature chips ──────────────────────────────── */

.my-feature-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.my-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--dm-surface-container);
  color: var(--dm-on-surface);
  font-family: 'Roboto Flex', 'Roboto', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  font-variation-settings: 'wght' 500, 'opsz' 14;
  letter-spacing: 0.006rem;
  border: 1px solid var(--dm-outline-variant);
}

.my-feature-chip .material-symbols-outlined {
  font-size: 18px;
  color: var(--dm-primary);
  transition: color 0.5s ease;
}

/* ── Phone zoom frame (shared Android + iOS) ─────────────────── */

.phone-zoom-outer {
  width: min(280px, 38vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 0;
  overflow: visible;
  /* box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    0 8px 30px rgba(0, 0, 0, 0.30); */
  flex-shrink: 0;
  position: relative;
  transform-origin: center bottom;
}

.phone-zoom-outer--android {
  aspect-ratio: 771 / 1628;
}

.phone-zoom-outer--android .phone-zoom-inner {
  position: absolute;
  top: 1.61%;
  bottom: 2.07%;
  left: 4.05%;
  right: 4.51%;
  width: auto;
  height: auto;
  border-radius: 12.77% / 5.74%;
}

.android-phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 2;
  pointer-events: none;
}

.phone-zoom-outer--ios {
  transform-origin: bottom center;
  aspect-ratio: 1470 / 3000;
}

.phone-zoom-outer--ios .phone-zoom-inner {
  position: absolute;
  top: 2.2%;
  bottom: 2.2%;
  left: 5.1%;
  right: 5.1%;
  width: auto;
  height: auto;
  border-radius: 9%;
}

.phone-zoom-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 11%;
  overflow: hidden;
}

/* ── Android zoom slides ─────────────────────────────────────── */

.android-zoom-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 0;
}

.android-zoom-slide--active {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keeps the outgoing slide fully visible underneath while the new one fades in */
.android-zoom-slide--prev {
  opacity: 1;
  z-index: 0;
}

.android-slide--green,
.android-slide--yellow,
.android-slide--purple,
.android-slide--orange { background: transparent; }

.android-zoom-slide img,
.android-zoom-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Placeholder shown until real screenshot is added */
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.screenshot-placeholder .material-symbols-outlined {
  font-size: 3rem;
  color: rgba(255,255,255,0.55);
}

.screenshot-placeholder__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  font-family: 'Roboto Flex', system-ui, sans-serif;
  letter-spacing: 0.2px;
}

/* ── Carousel color dots ─────────────────────────────────────── */

.android-carousel__dots {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}

.android-carousel__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.android-carousel__dot:hover { transform: scale(1.15); }

.android-dot--green  { background: #386641; }
.android-dot--yellow { background: #F9A825; }
.android-dot--purple { background: #6A1B9A; }
.android-dot--orange { background: #D84315; }

.android-carousel__dot--active {
  border-color: var(--dm-on-surface);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ── iOS glass Apple logo ────────────────────────────────────── */

.ios-mascot-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.ios-glass-logo {
  width: clamp(96px, 12vw, 160px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.20))
          drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

@media (prefers-color-scheme: light) {
  .ios-glass-logo {
    filter: drop-shadow(0 0 1px rgba(100, 100, 120, 0.55))
            drop-shadow(0 0 1px rgba(100, 100, 120, 0.55))
            drop-shadow(0 0 1px rgba(100, 100, 120, 0.55))
            drop-shadow(0 6px 20px rgba(160, 120, 210, 0.30))
            drop-shadow(0 18px 44px rgba(120, 180, 220, 0.22));
  }
}

/* ============================================================
   iOS PANEL — Liquid Glass
   ============================================================ */

.ps-panel--ios {
  background:
    radial-gradient(ellipse 55% 60% at 15% 25%, rgba(160, 100, 220, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 55% at 85% 75%, rgba(80, 160, 220, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 65% 15%, rgba(220, 120, 180, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 40% 85%, rgba(80, 200, 170, 0.12) 0%, transparent 70%),
    transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (prefers-color-scheme: light) {
  .ps-panel--ios {
    background:
      radial-gradient(ellipse 55% 60% at 15% 25%, rgba(200, 170, 240, 0.28) 0%, transparent 70%),
      radial-gradient(ellipse 50% 55% at 85% 75%, rgba(140, 200, 235, 0.24) 0%, transparent 70%),
      radial-gradient(ellipse 40% 45% at 65% 15%, rgba(240, 175, 210, 0.20) 0%, transparent 70%),
      radial-gradient(ellipse 35% 40% at 40% 85%, rgba(160, 230, 210, 0.18) 0%, transparent 70%),
      #dfdfdf;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
}

/* ── Ambient orbs ────────────────────────────────────────────── */

.lg-ambient {
  display: none;
}

/* ── iOS/Apple Typography ────────────────────────────────────── */

.lg-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 1.03;
  margin: 0;
  color: #ffffff;
}

.lg-glass-word {
  background:
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(152, 233, 221, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(210, 150, 177, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 90% 25%, rgba(230, 176, 232, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 35% 30% at 50% 95%, rgba(234, 197, 122, 0.8) 0%, transparent 70%),
    #dddde4;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  filter:
      drop-shadow(0 0 1px rgba(100, 100, 120, 0.35))
      drop-shadow(0 0 1px rgba(100, 100, 120, 0.35))
      drop-shadow(0 0 1px rgba(100, 100, 120, 0.3))
      drop-shadow(0 6px 20px rgba(160, 120, 210, 0.1))
      drop-shadow(0 18px 44px rgba(120, 180, 220, 0.13))
      drop-shadow(20px 20px 50px rgb(170, 137, 172));
}

@media (prefers-color-scheme: light) {
  .lg-headline { color: #1D1D1F; }
}

.lg-body {
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: -0.012em;
  color: rgba(255,255,255,0.70);
  margin: 0;
}

@media (prefers-color-scheme: light) {
  .lg-body { color: rgba(28,28,30,0.65); }
}

.lg-body strong {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

@media (prefers-color-scheme: light) {
  .lg-body strong { color: rgba(28,28,30,0.92); }
}


/* ── iOS eyebrow separator dot ──────────────────────────────── */

.lg-chip-sep {
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}

@media (prefers-color-scheme: light) {
  .lg-chip-sep { color: rgba(28,28,30,0.25); }
}

/* ── iOS Chips — Apple-style glass capsule labels ────────────── */

.lg-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.375rem 0.9rem;
  border-radius: 999px;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
}

@media (prefers-color-scheme: light) {
  .lg-chip {
    background: rgba(255, 255, 255, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }
}

.lg-chip ion-icon { font-size: 14px; }

/* Platform + system chips: same muted white/gray */
.lg-chip--platform,
.lg-chip--system {
  color: rgba(255, 255, 255, 0.70);
}

@media (prefers-color-scheme: light) {
  .lg-chip--platform,
  .lg-chip--system {
    color: rgba(28, 28, 30, 0.55);
  }
}

/* ── iOS Feature chips (Liquid Glass style) ──────────────────── */

.lg-feature-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lg-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 980px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.72);
}

@media (prefers-color-scheme: light) {
  .lg-feature-chip {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.09);
    color: rgba(28,28,30,0.65);
  }
}

.lg-feature-chip .material-symbols-outlined {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
}

@media (prefers-color-scheme: light) {
  .lg-feature-chip .material-symbols-outlined { color: rgba(28,28,30,0.40); }
}

/* ── iOS phone frame overlay ─────────────────────────────────── */

.ios-phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 2;
  pointer-events: none;
}

/* ── iOS zoom video / image / placeholder ────────────────────── */

.ios-zoom-video,
.ios-zoom-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Chrome renders <video> through a hardware overlay plane for power
   efficiency, which sits outside the normal layer tree — anything with
   backdrop-filter above it (the floating page nav, the app tabbar) can't
   see it and blurs everything else instead. A no-op transform forces the
   video onto a regular GPU compositing layer, where backdrop-filter works
   like it does over the <img> fallback. */
.ios-zoom-video {
  transform: translateZ(0);
}

.ios-zoom-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

@media (prefers-color-scheme: light) {
  .ios-zoom-placeholder { background: rgba(0,0,0,0.03); }
}

.ios-zoom-placeholder .material-symbols-outlined {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.30);
}

@media (prefers-color-scheme: light) {
  .ios-zoom-placeholder .material-symbols-outlined { color: rgba(28,28,30,0.28); }
}

.ios-zoom-placeholder__text {
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: -0.02em;
}

@media (prefers-color-scheme: light) {
  .ios-zoom-placeholder__text { color: rgba(28,28,30,0.38); }
}

/* ── Responsive — stack layout, keep scroll animation active ─── */

@media (max-width: 960px) {
  .ps-scroll-scene {
    height: 350vh;
  }

  .ps-panel__inner,
  .ps-panel__inner--ios {
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .ps-panel__text,
  .ps-panel__text--ios {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .ps-chips-row {
    justify-content: center;
  }

  .android-mascot-row,
  .ios-mascot-row {
    justify-content: center;
  }

  .my-feature-row {
    justify-content: center;
  }

  .ps-panel__media,
  .ps-panel__media--ios {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .phone-zoom-outer {
    width: min(160px, 35vw);
  }
}

/* ── iOS panel mobile: phone takes all spare space, text shrinks to content ── */
@media (max-width: 960px) {
  .ps-panel--ios .ps-panel__inner {
    justify-content: flex-end;
    padding-bottom: 2rem;
    gap: 1rem;
  }

  .ps-panel--ios .ps-panel__media {
    flex: 1;
    min-height: 0;
  }

  .ps-panel--ios .ps-panel__text {
    flex: 0 0 auto;
  }

  .phone-zoom-outer--ios {
    height: 100%;
    width: auto;
  }
}

/* iOS panel: on narrow phones, height-driven sizing makes the mockup too
   wide (its media area has no sibling to share height with, unlike Android's
   carousel dots) — cap it by width instead once the viewport gets tight. */
@media (max-width: 480px) {
  .phone-zoom-outer--ios {
    width: min(200px, 55vw);
    height: auto;
  }
}

/* ── Android panel mobile: phone below text with gradient fade ── */
@media (max-width: 960px) {
  .ps-panel--android .my-feature-row {
    display: none;
  }

  .ps-panel--android .ps-panel__inner {
    justify-content: flex-start;
    padding-top: clamp(2rem, 5vh, 3.5rem);
    gap: 0;
  }

  .ps-panel--android .ps-panel__text {
    position: relative;
    z-index: 2;
    padding-bottom: 1.5rem;
  }

  .ps-panel--android .ps-panel__media {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    min-height: 0;
    flex-direction: column;
    align-items: center;
  }

  .phone-zoom-outer--android {
    height: 100%;
    width: auto;
  }

  /* Solid cover + gradient fade at the bottom edge of the cover.
     Extends all the way to the top of the panel so the zoomed phone
     never peeks through above the fade line. */
  .ps-panel--android .ps-panel__media::before {
    content: '';
    position: absolute;
    top: -100vh;
    left: -100vw;
    right: -100vw;
    height: calc(100vh);
    background-color: var(--ps-bg, #EEF8EF);
    transition: background-color 0.5s ease;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 160px), transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 160px), transparent 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 10;
    pointer-events: none;
  }
}
