/* ==========================================================================
   QUOYO SATELLITE PAGES — COMMON CSS
   Shared system for informational/editorial child pages
   ========================================================================== */

.qy-page--satellite {
  --sat-max: 1600px;
  --sat-narrow: 1120px;
  --sat-text: 760px;
  --sat-pad: clamp(24px, 4vw, 48px);
  --sat-white: #f7f7f4;
  --sat-off: #efefec;
  --sat-black: #0b0b0b;
  --sat-muted: #666;
  --sat-line: rgba(0,0,0,.88);
  --sat-soft-line: rgba(0,0,0,.12);
  --sat-gap: clamp(56px, 6vw, 92px);

  background: var(--sat-white);
  color: var(--qy-black);
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: block;
}

.qy-sat-wrap {
  max-width: var(--sat-max);
  margin: 0 auto;
  padding-left: var(--sat-pad);
  padding-right: var(--sat-pad);
}

.qy-sat-wrap--narrow {
  max-width: var(--sat-text);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.qy-sat-hero {
  position: relative;
  min-height: clamp(340px, 56vw, 700px);
  overflow: hidden;
  background: #000;
}

.qy-sat-hero__media,
.qy-sat-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.qy-sat-hero__image {
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.04) brightness(.8);
}

.qy-sat-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.48) 0%, rgba(0,0,0,.14) 46%, rgba(0,0,0,.04) 100%);
}

.qy-sat-hero__content {
  position: relative;
  z-index: 2;
  min-height: clamp(340px, 56vw, 700px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--sat-pad) 24px;
}

.qy-sat-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: .88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .88);
}

.qy-sat-hero__copy {
  margin: 14px 0 0;
  max-width: 28ch;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.52;
  color: rgba(245, 242, 236, .84);
}

/* ==========================================================================
   COMMON TYPO
   ========================================================================== */

.qy-sat-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sat-muted);
  line-height: 1.2;
}

.qy-sat-hero .qy-sat-kicker {
  color: rgba(245, 242, 236, .62);
}

.qy-sat-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 5.4vw, 4.8rem);
  line-height: .94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--qy-black);
}

.qy-sat-copy p,
.qy-sat-card__copy,
.qy-sat-timeline__copy,
.qy-sat-faq__answer p,
.qy-sat-final__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.04rem, 1.06vw, 1.14rem);
  line-height: 1.62;
  color: var(--qy-black);
}

.qy-sat-copy p + p,
.qy-sat-faq__answer p + p {
  margin-top: 18px;
}

/* ==========================================================================
   RHYTHM
   ========================================================================== */

.qy-sat-intro,
.qy-sat-grid-cards,
.qy-sat-split,
.qy-sat-timeline,
.qy-sat-editorial,
.qy-sat-faq,
.qy-sat-final {
  margin-top: var(--sat-gap);
}

/* ==========================================================================
   INTRO / EDITORIAL
   ========================================================================== */

.qy-sat-intro,
.qy-sat-editorial {
  background: var(--sat-white);
}

.qy-sat-editorial--off {
  background: var(--sat-off);
  padding: clamp(56px, 7vw, 96px) 0;
}

.qy-sat-intro .qy-sat-wrap,
.qy-sat-editorial .qy-sat-wrap {
  padding-top: 0;
}

/* ==========================================================================
   CARD GRID
   ========================================================================== */

.qy-sat-grid-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.qy-sat-card {
  border: 1px solid var(--sat-line);
  background: var(--sat-white);
  padding: 24px 22px 22px;
  min-height: 240px;
}

.qy-sat-card__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--qy-black);
}

/* ==========================================================================
   SPLIT
   ========================================================================== */

.qy-sat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--sat-white);
}

.qy-sat-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 108px) var(--sat-pad);
  min-height: 560px;
}

.qy-sat-split__visual {
  min-height: 440px;
  max-height: 720px;
  overflow: hidden;
  background: #dcdcd8;
}

.qy-sat-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.qy-sat-timeline__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.qy-sat-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--sat-line);
  border-left: 1px solid var(--sat-line);
}

.qy-sat-timeline__item {
  min-height: 260px;
  padding: 22px 20px 24px;
  border-right: 1px solid var(--sat-line);
  border-bottom: 1px solid var(--sat-line);
  background: var(--sat-white);
}

.qy-sat-timeline__step {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sat-muted);
}

.qy-sat-timeline__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.35vw, 1.48rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--qy-black);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.qy-sat-faq__list {
  border-top: 1px solid var(--sat-line);
}

.qy-sat-faq__item {
  border-bottom: 1px solid var(--sat-line);
}

.qy-sat-faq__question {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--qy-black);
  position: relative;
  padding-right: 30px;
}

.qy-sat-faq__question::-webkit-details-marker {
  display: none;
}

.qy-sat-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.qy-sat-faq__item[open] .qy-sat-faq__question::after {
  content: "–";
}

.qy-sat-faq__answer {
  padding: 0 0 22px;
  max-width: 60ch;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.qy-sat-final {
  position: relative;
  padding: clamp(110px, 14vw, 180px) 0 clamp(120px, 16vw, 200px);
  background: var(--sat-off);
  border-top: 1px solid var(--qy-black);
  border-bottom: 1px solid var(--qy-black);
  overflow: hidden;
}

.qy-sat-final::before {
  content: "QUOYO";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: .78;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.qy-sat-final__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.qy-sat-final__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--qy-black);
}

.qy-sat-final__copy {
  max-width: 34ch;
  margin: 0 auto;
}

.qy-sat-final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ==========================================================================
   BUTTONS SAFETY
   ========================================================================== */

.qy-page--satellite .qy-btn {
  min-width: 220px;
  justify-content: center;
  text-align: center;
}

.qy-page--satellite .qy-btn--ghost,
.qy-page--satellite .qy-btn.qy-btn--ghost {
  background: transparent;
}

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

@media (max-width: 991px) {
  .qy-sat-grid-cards__grid {
    grid-template-columns: 1fr;
  }

  .qy-sat-split {
    grid-template-columns: 1fr;
  }

  .qy-sat-timeline__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .qy-page--satellite {
    --sat-pad: 16px;
    --sat-gap: 38px;
  }

  .qy-sat-hero {
    min-height: 280px;
  }

  .qy-sat-hero__content {
    min-height: 280px;
    padding: 0 var(--sat-pad) 16px;
  }

  .qy-sat-kicker {
    font-size: 10px;
    letter-spacing: .16em;
  }

  .qy-sat-hero__title,
  .qy-sat-title,
  .qy-sat-final__title {
    font-size: clamp(2.15rem, 12vw, 3.9rem);
    line-height: .94;
  }

  .qy-sat-hero__copy,
  .qy-sat-copy p,
  .qy-sat-card__copy,
  .qy-sat-timeline__copy,
  .qy-sat-faq__answer p,
  .qy-sat-final__copy {
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
  }

  .qy-sat-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .qy-sat-split__text {
    padding: 34px var(--sat-pad) 40px;
    min-height: auto;
  }

  .qy-sat-split__visual {
    min-height: 260px;
    max-height: 360px;
  }

  .qy-sat-timeline__grid {
    grid-template-columns: 1fr;
  }

  .qy-sat-timeline__item {
    min-height: auto;
    padding: 18px 16px 20px;
  }

  .qy-sat-timeline__question {
    font-size: 1.06rem;
  }

  .qy-sat-faq__question {
    font-size: 1.05rem;
    padding: 18px 26px 18px 0;
  }

  .qy-sat-faq__question::after {
    top: 16px;
  }

  .qy-sat-final {
    padding: 84px 0 120px;
  }

  .qy-sat-final::before {
    font-size: clamp(4.5rem, 19vw, 7rem);
  }

  .qy-sat-final__actions {
    flex-direction: column;
    gap: 12px;
  }

  .qy-page--satellite .qy-btn,
  .qy-page--satellite .qy-btn--ghost {
    width: 100%;
    min-width: 0;
  }
}