/* ── Discuss Project — Strip-Split Scroll Spread ── */

.discuss-project-section {
  position: relative;
  background: #92b0de;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.discuss-project-section .yes-text {
  display: none;
}

.discuss-project-section.is-animated {
  height: 250vh;
  min-height: auto;
  display: block;
  padding: 0;
  overflow: visible;
}

/* ── Sticky viewport ── */

.discuss-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ── Ghost text (faded, static, visible in gaps) ── */

.discuss-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family:
    "Inter",
    "Arial Black",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(7rem, 17vw, 22rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 3;
  background-color: #92b0de;
}

/* ── Strips container ── */

.discuss-strips {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ── Individual strip (each is a full copy of the text, clipped to its band) ── */

.discuss-strip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family:
    "Inter",
    "Arial Black",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(7rem, 17vw, 22rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.04em;
  will-change: transform;
}

/* ── Center overlay content ── */

.discuss-container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.is-animated .discuss-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.discuss-container .upper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.discuss-container .upper-content > span:first-child {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0a1b3085;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.discuss-container .upper-content > span:nth-child(2) {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 20px;
  color: #0a1b3085;
  font-weight: 400;
  /* max-width: 500px; */
  line-height: 1.5;
}

.discuss-container .upper-content h3 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #4873b7;
  margin: 1rem 0 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .discuss-project-section.is-animated {
    height: 200vh;
  }

  .discuss-strip,
  .discuss-ghost {
    font-size: clamp(5rem, 18vw, 9rem);
  }
  .discuss-strip,
  .discuss-ghost {
    font-size: clamp(3.5rem, 18vw, 6.1rem);
  }
}

@media (max-width: 480px) {
  .discuss-project-section.is-animated {
    height: 180vh;
  }

  .discuss-strip,
  .discuss-ghost {
    font-size: clamp(3.5rem, 18vw, 6.1rem);
  }
}
