/* ============================================
   FVM - WEBSITES SERVICE SECTION
   Exact Figma values — pixel perfect
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* ===================================================
   OUTER PANEL — fixed fullscreen, hidden by default
   =================================================== */
#fvm-websites-panel {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(100% 0 0 0);
  transition:
    clip-path 0.85s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0s linear 0.85s;
}

#fvm-websites-panel.is-active {
  visibility: visible;
  pointer-events: all;
  clip-path: inset(0% 0 0 0);
  transition:
    clip-path 0.85s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0s linear 0s;
}

/* ===================================================
   HORIZONTAL SCROLL TRACK — two screens side by side
   =================================================== */
.st-scroll-track {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 200vh;
  /* JS will translate this */
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  z-index: 2;
}

.st-scroll-track.at-second {
  transform: translateY(-100vh);
}

/* ===================================================
   SCREEN 1 — Hero (WEBSITES headline)
   =================================================== */
.st-screen {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
}

/* Canvas background */
#st-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* #636792c7 overlay with hard-light mix-blend-mode */
.st-bg-overlay {
  position: absolute;
  inset: 0;
  isolation: isolate;
  mix-blend-mode: hard-light;
  z-index: 1;
  pointer-events: none;
}

.st-bg-overlay-color {
  position: absolute;
  inset: 0;
  background: rgba(195, 191, 243, 0.8);
  /* #5297fde8 */
  z-index: -1;
}

/* [EXIT] — top right, same style as [SCROLL TO SEE MORE] */
.st-exit-btn {
  position: absolute;
  right: 9.27vw;
  top: 6.25vw;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 3.75vw;
  letter-spacing: 0.49vw;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  white-space: nowrap;
  padding: 0;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.6s ease 0.55s,
    transform 0.6s ease 0.55s,
    color 0.3s ease;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.st-exit-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

#fvm-websites-panel.is-active .st-exit-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Headline wrapper */
.st-headline-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  opacity: 0;
  transition:
    opacity 0.7s ease 0.2s,
    margin-top 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  padding-inline: 9.11vw;
}

#fvm-websites-panel.is-active .st-headline-wrap {
  opacity: 1;
  margin-top: -4vw;
}

#fvm-websites-panel.at-second .st-headline-wrap {
  transform: translate(-50%, calc(-50% - 100vh));
}

/* WEBSITES headline */
.st-headline {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 17.19vw;
  white-space: nowrap;
}

/* Both spans — 50% gray for hard-light knockout */
.st-headline .part-web,
.st-headline .part-sites {
  font-family: "Montserrat", sans-serif;
  font-size: 10.42vw;
  text-transform: uppercase;
  line-height: 17.19vw;
  color: #808080;
  white-space: nowrap;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

/* WEB: weight 300 */
.st-headline .part-web {
  font-weight: 300;
  letter-spacing: 3.65vw;
  opacity: 1;
}

/* SITES: weight 700 */
.st-headline .part-sites {
  font-weight: 700;
  letter-spacing: 3.65vw;
  opacity: 1;
}

/* [SCROLL TO MOVE FORWARD] + mouse icon */
.st-scroll-forward-wrap {
  position: absolute;
  bottom: 11.42vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
}

#fvm-websites-panel.is-active .st-scroll-forward-wrap {
  opacity: 1;
}

.st-scroll-forward-txt {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15vw;
  font-weight: 300;
  line-height: 3.75vw;
  letter-spacing: 0.49vw;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.st-mouse-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.st-mouse-icon svg {
  width: 22px;
  height: 34px;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
  fill: none;
}

.st-arrow-down {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  margin-top: 2px;
  animation: wsArrowBounce 1.6s ease-in-out infinite;
}

@keyframes wsArrowBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

.scroll-iconmove img {
  animation: MoveUpDown 3.5s linear infinite;
  position: relative;
}

@keyframes MoveUpDown {

  0%,
  100% {
    bottom: -15px;
  }

  50% {
    bottom: 0px;
  }
}

/* Bottom bar */
.st-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 6.25vw 3.13vw;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.5s,
    transform 0.7s ease 0.5s;
}

#fvm-websites-panel.is-active .st-bottom-bar {
  opacity: 1;
  transform: translateY(0);
}

.st-desc p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.04vw;
  font-weight: 300;
  line-height: 1.25vw;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
  max-width: 39.17vw;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

/* CTA button */
.st-cta-btn {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0.33) 100%),
    linear-gradient(252deg,
      rgba(233, 20, 196, 0.12) 0.21%,
      rgba(255, 255, 255, 0.12) 99.89%);
  box-shadow: 0 18px 40px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.2s ease;
}

.st-cta-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%);
  transform: scale(1.02);
}

.st-cta-btn .st-cta-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1;
  font-variant: all-small-caps;
  letter-spacing: 10px;
  color: #fff;
  text-transform: uppercase;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
      width: 32.4vw;
}

.st-cta-btn .st-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-cta-btn .st-cta-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

/* Screen 2 has a transparent background to show the canvas/overlay */
.st-screen-2 {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  justify-content: center;
  padding-inline: 15.42vw;
  filter: drop-shadow(1px 0 12px rgba(0, 0, 0, 0.25));
}

/* [EXIT] on screen 2 — same style, top right */
.st-exit-btn-2 {
  position: absolute;
  right: 9.27vw;
  top: 3.65vw;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 3.75vw;
  letter-spacing: 0.49vw;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  transition: color 0.3s ease;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.st-exit-btn-2:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Strategy css */
.exit-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  z-index: 100;
  font-family: "Inter", sans-serif;
}

.book-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  margin-top: -20px;
}

.book {
  position: relative;
  z-index: 20;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  perspective: 2500px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(25px);
}

.page {
  position: absolute;
  top: 0;
  border: none;
  overflow: hidden;
  border-radius: 0;
}

.page-left {
  left: 0;
  border-right: none;
  width: 50% !important;
  padding: 17px 13px;
  pointer-events: none;
}

.page-right {
  right: 0;
  background: #fff;
  width: 50% !important;
  pointer-events: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.spine {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #000;
  z-index: 50;
}

.spine::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100px;
  right: 0;
  background: linear-gradient(270deg,
      rgb(0 0 0 / 22%) 0%,
      rgba(255, 255, 255, 0) 39.29%);
  opacity: 0.5;
}

.spine::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100px;
  left: 0;
  background: linear-gradient(90deg,
      rgb(0 0 0 / 22%) 0%,
      rgba(255, 255, 255, 0) 39.29%);
  opacity: 0.5;
}

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 60px;
  padding-top: 150px;
  pointer-events: none;
}

.page-content-left {
  background-color: #fff;
}

img#left-img {
  pointer-events: none;
}

.page-content h2 {
  margin-bottom: 16px;
  color: #000;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 6.3px;
  text-transform: uppercase;
  line-height: 44px;
  border-bottom: 1px solid rgb(149 149 149 / 20%);
  padding-bottom: 18px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.page-content p {
  max-width: 90%;
  color: #959595;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}

.page-number {
  margin-top: 20px;
  color: #000;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
  text-transform: capitalize;
  width: 100px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 80%);
  margin-left: -57px;
}

.gutter-line {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 20;
  display: none;
}

.flip-page {
  position: absolute;
  top: 0;
  left: calc(50% - 1px) !important;
  width: 50% !important;
  height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: translateX(0);
  will-change: transform;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}

.flip-side {
  position: absolute;
  inset: 0;
  background-color: #fff;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.flip-back {
  transform: rotateY(180deg);
  border-radius: 24px 0 0 24px;
  background-color: #fff;
}

.flip-front {
  border-radius: 0 24px 24px 0;
  background-color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s;
  z-index: 40;
}

.dark-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.shine-overlay {
  display: none;
  background: linear-gradient(135deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
}

.peek {
  position: absolute;
  top: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  padding: 30px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(25px);
}

.book-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 86px;
  position: absolute;
  right: -25px;
  bottom: 100px;
}

.book-btn {
  padding: 6px 12px;
  text-align: right;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  margin-top: 40px;
  align-self: flex-end;
  color: #782b81;
  font-family: Montserrat;
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  line-height: 4px;
  transform: rotate(-90deg);
  display: block;
  position: relative;
}

.book-btn::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -38px;
  width: 131px;
  height: 97px;
  background: url(../images/flip-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  z-index: -1;
}

.peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.peek-left {
  border-radius: 10px 0 0 10px;
  transform-origin: right center;
}

.peek-right {
  border-radius: 0 10px 10px 0;
  transform-origin: left center;
}

#peeks-left,
#peeks-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

#peeks-left {
  left: 0;
}

#peeks-right {
  right: 0;
}

.peek-paper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.05);
}

.peek-paper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;

  background: repeating-linear-gradient(to bottom,
      #ececec 0px,
      #ececec 2px,
      #ffffff 2px,
      #ffffff 4px);
}

.peek-left.peek .peek-paper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;

  box-shadow:
    inset -8px 0 12px rgba(0, 0, 0, 0.08),
    inset -20px 0 30px rgba(0, 0, 0, 0.04);

  border: 1px solid rgba(0, 0, 0, 0.05);
}

.st-screen.st-screen-1 .st-exit-btn {
  display: none;
}

/* ===================================================
   DESKTOP / MOBILE RESPONSIVE SWITCH
   =================================================== */
@media (max-width: 1200px) {

  .st-headline .part-web,
  .st-headline .part-sites {
    font-size: clamp(60px, 9vw, 200px);
    letter-spacing: 20px;
    line-height: 1.65;
  }

  .st-headline {
    line-height: 1.65;
  }

  .st-exit-btn,
  .st-exit-btn-2 {
    right: 40px;
    top: 60px;
    font-size: 16px;
    letter-spacing: 5px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .st-headline-wrap {
    padding-inline: 24px;
    top: 33%;
    transform: translate(-50%, -67%);
  }

  .st-headline {
    line-height: 1.3;
  }

  .st-headline .part-web,
  .st-headline .part-sites {
    font-size: clamp(42px, 12vw, 90px);
    letter-spacing: 8px;
    line-height: 1.3;
  }

  .st-scroll-forward-wrap {
    bottom: 270px;
  }

  .st-bottom-bar,
  .st-bottom-bar-2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 22px 36px;
  }

  .st-exit-btn,
  .st-exit-btn-2 {
    right: 24px;
    top: 32px;
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 1.4;
    font-weight: 400;
  }

  .st-scroll-forward-txt {
    font-size: 13px;
    letter-spacing: 4px;
    line-height: 1.4;
  }

  .st-scroll-track .scroll-iconmove {
    width: 24px;
  }

  .st-desc {
    padding-inline: 0;
  }

  .st-desc p {
    font-size: 14px;
    max-width: 100%;
    line-height: 20px;
  }

  .st-cta-btn .st-cta-text {
    font-size: 13px;
    letter-spacing: 2px;
    width: auto;
  }

  .st-cta-btn .st-cta-arrow svg {
    width: 16px;
    height: 16px;
  }

  .st-cta-btn {
    padding: 11px 16px;
    width: 100%;
    justify-content: space-between;
  }

  /* ------------------------------------------
     MOBILE STACKED CARD DECK (EXACT REFERENCE SCREENSHOT)
  ------------------------------------------ */
  .st-screen-2 {
    padding-inline: 4vw;
  }

  .book-container {
    margin-top: -120px;
    height: 63vh !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
  }

  /* Hide 3D book on mobile */
  .book,
  #peeks-left,
  #peeks-right {
    display: none !important;
  }

  /* Mobile Deck Container */
  .mobile-card-deck {
    display: block !important;
    position: relative;
    width: 100vw;
    max-width: 350px;
    height: 417px;
    margin: 0 auto;
    perspective: 1000px;
    touch-action: pan-y;
  }

  .mobile-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Individual Card in Stack */
  .mobile-card {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 18px 18px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    user-select: none;
    touch-action: none;
    will-change: transform, opacity;
    border: 1px solid #000;
    overflow: hidden;
    cursor: grab;
  }

  .mobile-card:active {
    cursor: grabbing;
  }

  /* Stacked depth layers on right side */
  .mobile-card.stack-0 {
    z-index: 10;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  .mobile-card.stack-1 {
    z-index: 9;
    transform: translate3d(8px, 0px, 0) scale(1);
    opacity: 0.98;
    pointer-events: none;
  }

  .mobile-card.stack-2 {
    z-index: 8;
    transform: translate3d(15px, 0px, 0) scale(1);
    opacity: 0.92;
    pointer-events: none;
  }

  .mobile-card.stack-3 {
    z-index: 7;
    transform: translate3d(22px, 0px, 0) scale(1);
    opacity: 0.8;
    pointer-events: none;
  }

  /* Card Header */
  .mc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .mc-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: normal;
    margin: 0;
    letter-spacing: 0.16px;
  }

  .mc-badge {
    background: #FFFAB8;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0;
    padding: 3px 4px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
    font-style: italic;
    line-height: 16px;
  }

  /* Card Product Image Area */
  .mc-image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 200px;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .mc-image-wrap img {
    max-width: 70%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  /* Card Description */
  .mc-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #000;
    margin-bottom: 9px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    height: 75px;
  }

  /* Card Footer */
  .mc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mc-number {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.5px;
    font-style: italic;
    text-decoration: underline;
    line-height: 18px;
    position: relative;
    bottom: -7px;
  }

  .mc-readmore-btn {
    background: #FFFAB8;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mc-readmore-btn:active {
    transform: scale(0.94);
    background: #eab308;
  }
  #fvm-websites-panel{
    height: 100%;
  }
  .st-scroll-track, .st-screen{
    height: 100%;
  }
  .st-scroll-track.at-second {
    transform: translateY(-100%);
}

.st-modal-sheet{
    overscroll-behavior: contain;
    touch-action: pan-y;
  }


  .st-modal-content-wrap{
    max-height:70vh;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
  }


  #fvm-websites-panel{
    overscroll-behavior:none;
  }

}

@media (min-width: 769px) {
  .mobile-card-deck {
    display: none !important;
  }
}

/* ===================================================
   READ MORE MODAL POPUP (MOBILE BOTTOM SHEET)
   =================================================== */
.st-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(74, 18, 80, 0.80);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.st-modal-overlay::before {
  content: "";
  position: absolute;
  border-radius: 390.31px;
  background: #782A84;
  width: 390.31px;
  height: 295px;
  filter: blur(100px);
  bottom: 20%;
  left: -50%;
  transform: translateY(-50%);
}

.st-modal-overlay::after {
  content: "";
  position: absolute;
  border-radius: 390.31px;
  background: #EE4780;
  width: 390.31px;
  height: 295px;
  filter: blur(100px);
  bottom: 20%;
  right: -50%;
  transform: translateY(-50%);
}

.st-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.st-modal-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px 20px 80px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  border-top: 0px solid rgba(255, 255, 255, 0.00);
  border-right: 1px solid rgba(255, 255, 255, 0.00);
  border-left: 1px solid rgba(255, 255, 255, 0.00);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.80) 100%);
  box-shadow: 0 -9px 100px 12px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.st-modal-overlay.is-active .st-modal-sheet {
  transform: translateY(0);
}

.st-modal-close-btn {
    position: relative;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 8px;
    transition: background-color 0.2s ease, transform 0.15s ease;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%), linear-gradient(252deg, rgba(233, 20, 196, 0.12) 0.21%, rgba(255, 255, 255, 0.12) 99.89%);
    box-shadow: 0 18px 40px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
}

.st-modal-close-btn:active {
  transform: scale(0.9);
  background: rgba(0, 0, 0, 0.3);
}

.st-modal-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 4px;
}

/* Header Nav with Prev/Next Arrows and Highlighted Pill */
.st-modal-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 60px;
    margin-bottom: 24px;
}

.st-modal-arrow-btn {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.st-modal-arrow-btn:active {
  transform: scale(0.85);
}

.st-modal-arrow-btn svg {
    width: 16px;
    height: 16px;
    stroke: #000;
    stroke-width: 3;
    fill: none;
}

.st-modal-pill {
    background: #FFFAB8;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 4px;
    letter-spacing: 0.3px;
}

/* Content Area inside Modal */
.st-modal-content-wrap {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.st-modal-content-wrap.slide-out-left {
  opacity: 0;
  transform: translateX(-20px);
}

.st-modal-content-wrap.slide-out-right {
  opacity: 0;
  transform: translateX(20px);
}

.st-modal-step-tag {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #000;
    margin-bottom: 6px;
    line-height: normal;
}

.st-modal-title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0 0 6px 0;
    line-height: normal;
}
.st-modal-body {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #000;
    margin: 0;
    font-weight: 400;
}
.st-modal-body p {
  margin-bottom: 12px;
}

.st-modal-body p:last-child {
  margin-bottom: 0;
}