/**
 * m/ 랜딩 — 미니멀 (제목 · 슬로건 · CTA)
 * body.m-mobile.m-app 로 한정 (style.css 와 충돌 완화)
 */

:root {
  --color-silver-light: #f5f5f5;
  --color-silver: #d0d0d0;
  --color-silver-dark: #a8a8a8;
  --color-black-primary: #000000;
  --color-white-text: #f5f5f5;

  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Noto Serif KR', serif;

  --shadow-text: 2px 2px 8px rgba(0, 0, 0, 0.8);

  --color-primary: var(--color-silver-light);
  --color-bg: #000000;
}

body.m-mobile.m-app,
body.m-mobile.m-app * {
  box-sizing: border-box;
}

body.m-mobile.m-app {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #000000;
  color: var(--color-white-text);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

html {
  background: #000000;
}

body.m-mobile.m-app #app.main {
  width: 100%;
  min-height: 100vh;
  padding-top: 0;
  background: #000000;
}

/* 헤더(시리즈·언어)는 DOM 유지, 화면에서만 숨김 */
body.m-mobile.m-app .m-landing__header {
  display: none !important;
}

/* ===== LANDING SECTION ===== */
body.m-mobile.m-app #landing-section,
body.m-mobile.m-app #landing-section.landing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
  padding: 0 0 32px;
  position: relative;
  z-index: 10;
  background: #000000;
}

/* ===== LANDING HERO — Ad Scent v2 (시네마틱 풀화면) ===== */
body.m-mobile.m-app .landing-hero--adscent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInDown 0.85s ease-out;
}

body.m-mobile.m-app .landing-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: visible;
  border-radius: 0;
  background: #000000;
}

body.m-mobile.m-app .landing-hero__image-wrap picture {
  display: block;
  width: 100%;
  max-width: 600px;
}

body.m-mobile.m-app .landing-hero__image-wrap::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 58%;
  width: 92%;
  height: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.55) 0%,
    rgba(180, 130, 40, 0.28) 35%,
    rgba(120, 80, 20, 0.1) 58%,
    transparent 72%
  );
  filter: blur(28px);
  animation: heroImageGlow 3.6s ease-in-out infinite;
  pointer-events: none;
}

body.m-mobile.m-app .landing-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  vertical-align: top;
}

body.m-mobile.m-app .landing-hero__image-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.25) 78%,
    rgba(0, 0, 0, 0.65) 90%,
    rgba(0, 0, 0, 0.88) 96%,
    #000000 100%
  );
  pointer-events: none;
}

body.m-mobile.m-app .landing-hero__trust-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 92%;
  margin: 0 auto 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(245, 236, 216, 0.72);
  font-size: 10.5px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
}

body.m-mobile.m-app .landing-hero__trust-line-short {
  display: none;
}

@media (max-width: 420px) {
  body.m-mobile.m-app .landing-hero__trust-line {
    max-width: 94%;
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 7px;
  }
}

@media (max-width: 390px) {
  body.m-mobile.m-app .landing-hero__trust-line-full {
    display: none;
  }

  body.m-mobile.m-app .landing-hero__trust-line-short {
    display: inline;
  }
}

body.m-mobile.m-app .landing-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 20px 12px;
  text-align: center;
}

body.m-mobile.m-app .landing-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 6px 14px;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f5ecd8;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
}

body.m-mobile.m-app .landing-hero__headline {
  width: 100%;
  margin: 0 auto 14px;
  padding: 0 4px;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 4.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
  color: #faf6ef;
  text-align: center;
  white-space: pre-line;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

body.m-mobile.m-app .landing-hero__sub {
  width: 100%;
  margin: 0 auto 22px;
  padding: 0 4px;
  font-size: clamp(0.92rem, 3.6vw, 1.02rem);
  line-height: 1.65;
  color: rgba(245, 236, 216, 0.88);
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
  white-space: pre-line;
  word-break: keep-all;
}

body.m-mobile.m-app .landing-card-trio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
  width: 80%;
  max-width: 336px;
  margin: 0 auto 24px;
  padding: 0 2px;
}

body.m-mobile.m-app .landing-card-slot {
  position: relative;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 6px;
  border-radius: 14px;
  background: rgba(20, 12, 18, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.22);
  text-align: center;
  animation: cardSlotGlow 2.8s ease-in-out infinite;
}

body.m-mobile.m-app .landing-card-slot--center {
  border-color: rgba(212, 175, 55, 0.55);
  animation: cardSlotGlowCenter 2.4s ease-in-out infinite;
  transform: scale(1.03);
}

body.m-mobile.m-app .landing-card-slot__icon {
  font-size: 1.35rem;
  line-height: 1;
}

body.m-mobile.m-app .landing-card-slot__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8d5a8;
}

body.m-mobile.m-app .landing-card-slot__hint {
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(245, 236, 216, 0.72);
  word-break: keep-all;
}

body.m-mobile.m-app .landing-cta--primary {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 16px 20px;
  text-align: center;
  text-decoration: none;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #1a0a0a;
  background: linear-gradient(135deg, #e8d5a8 0%, #c9a227 48%, #d4af37 100%);
  border: 1px solid rgba(255, 240, 200, 0.65);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
  animation: fadeInUp 0.9s ease-out;
}

body.m-mobile.m-app .landing-cta--primary:active {
  transform: scale(0.98);
}

body.m-mobile.m-app .landing-hero__micro {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(245, 236, 216, 0.55);
  letter-spacing: 0.02em;
}

body.m-mobile.m-app .landing-hero__topics {
  margin: 0 0 14px;
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d4af37;
  line-height: 1.5;
}

body.m-mobile.m-app .landing-trust-strip {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 28px;
  padding: 14px 20px 0;
  text-align: center;
}

body.m-mobile.m-app .landing-trust-box {
  padding: 14px 18px 16px;
  margin-top: 4px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

body.m-mobile.m-app .landing-trust-box__title {
  margin: 0 0 6px;
  font-size: clamp(0.84rem, 3.2vw, 0.92rem);
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

body.m-mobile.m-app .landing-trust-strip p,
body.m-mobile.m-app .landing-trust-box__sub {
  margin: 0;
  font-size: clamp(0.78rem, 3vw, 0.88rem);
  line-height: 1.6;
  color: rgba(232, 213, 168, 0.9);
  word-break: keep-all;
}

/* ===== CREATOR MINI CARD (조용한 제작자 신뢰) ===== */
body.m-mobile.m-app .creator-mini-card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 12px 16px 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

body.m-mobile.m-app .creator-mini-card__label {
  margin: 0 0 6px;
  font-size: clamp(0.68rem, 2.6vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(200, 200, 200, 0.72);
  text-transform: none;
}

body.m-mobile.m-app .creator-mini-card__name {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 3.2vw, 0.96rem);
  font-weight: 600;
  color: rgba(232, 213, 168, 0.95);
  line-height: 1.45;
}

body.m-mobile.m-app .creator-mini-card__role {
  margin: 0 0 8px;
  font-size: clamp(0.72rem, 2.8vw, 0.8rem);
  line-height: 1.5;
  color: rgba(180, 180, 180, 0.78);
}

body.m-mobile.m-app .creator-mini-card__desc {
  margin: 0;
  font-size: clamp(0.72rem, 2.8vw, 0.8rem);
  line-height: 1.55;
  color: rgba(160, 160, 160, 0.82);
  word-break: keep-all;
}

/* ===== LANDING HERO (legacy title) ===== */
body.m-mobile.m-app .landing-hero {
  text-align: center;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease-out;
}

body.m-mobile.m-app .landing-hero--adscent .landing-title {
  font-size: clamp(1.65rem, 7vw, 2.15rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  line-height: 1.25;
  color: #f5ecd8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

body.m-mobile.m-app .landing-title {
  font-family: var(--font-title);
  font-size: clamp(48px, 12vw, 96px);
  font-style: italic;
  font-weight: 700;
  color: var(--color-silver-light);
  text-shadow:
    0 0 10px rgba(208, 208, 208, 0.4),
    0 0 20px rgba(208, 208, 208, 0.2);
  letter-spacing: 4px;
  margin: 0 0 20px;
  line-height: 1;
}

body.m-mobile.m-app .landing-tagline {
  font-family: var(--font-body);
  font-size: clamp(16px, 3vw, 24px);
  color: var(--color-silver);
  text-shadow: var(--shadow-text);
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
}

/* ===== CTA ===== */
body.m-mobile.m-app .landing-cta {
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--color-silver) 0%, var(--color-silver-dark) 100%);
  border: 2px solid var(--color-silver-light);
  color: #000000;
  font-family: var(--font-button, 'Pretendard', 'Noto Sans KR', sans-serif);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(208, 208, 208, 0.4);
  transition: all 0.4s ease;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

body.m-mobile.m-app .landing-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(208, 208, 208, 0.6);
  background: linear-gradient(135deg, var(--color-silver-light) 0%, var(--color-silver) 100%);
}

@keyframes heroImageGlow {
  0%, 100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes cardSlotGlow {
  0%, 100% {
    box-shadow:
      0 0 6px rgba(212, 175, 55, 0.15),
      0 0 14px rgba(212, 175, 55, 0.08);
  }
  50% {
    box-shadow:
      0 0 14px rgba(212, 175, 55, 0.4),
      0 0 28px rgba(212, 175, 55, 0.22),
      0 0 42px rgba(180, 130, 40, 0.12);
  }
}

@keyframes cardSlotGlowCenter {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(212, 175, 55, 0.25),
      0 0 20px rgba(212, 175, 55, 0.12);
  }
  50% {
    box-shadow:
      0 0 18px rgba(212, 175, 55, 0.55),
      0 0 36px rgba(212, 175, 55, 0.32),
      0 0 52px rgba(255, 220, 140, 0.18);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  body.m-mobile.m-app #landing-section,
  body.m-mobile.m-app #landing-section.landing-section {
    padding: 0 0 24px;
  }

  body.m-mobile.m-app .landing-hero--adscent .landing-title {
    font-size: 1.55rem;
    letter-spacing: 0.04em;
  }

  body.m-mobile.m-app .landing-hero__copy {
    margin-top: -1.25rem;
    padding: 0 16px 10px;
  }

  body.m-mobile.m-app .landing-card-trio {
    width: 80%;
    max-width: 100%;
    margin-bottom: 12px;
  }

  body.m-mobile.m-app .landing-card-slot__hint {
    font-size: 0.62rem;
  }

  body.m-mobile.m-app .landing-title {
    font-size: 48px;
    letter-spacing: 2px;
  }

  body.m-mobile.m-app .landing-tagline {
    font-size: 14px;
  }

  body.m-mobile.m-app .landing-cta {
    padding: 14px 35px;
    font-size: 16px;
  }
}

/* ===== 앤티크 시집 본문 (랜딩) ===== */
body.m-mobile.m-app .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.m-mobile.m-app .m-book-site {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Gowun Batang', 'Nanum Myeongjo', 'Noto Serif KR', serif;
  color: #f5ecd8;
  --m-book-gold: #e8d5a8;
  --m-book-cream: #faf6ef;
}

body.m-mobile.m-app .m-book-site > .m-book-block {
  margin-bottom: 48px;
}

body.m-mobile.m-app #landing-section .m-book-block {
  margin-bottom: 64px;
}

body.m-mobile.m-app .m-book-block {
  text-align: center;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

/* 인트로 첫 줄(「마녀님이」) 숨김 — 반복·스크롤 단축 (i18n 키 유지) */
body.m-mobile.m-app #landing-section .m-book-site > .m-book-block:first-of-type .m-book-line:first-of-type {
  display: none;
}

body.m-mobile.m-app .m-book-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.m-mobile.m-app .m-book-line,
body.m-mobile.m-app .m-book-p {
  margin: 0 0 16px;
  text-align: center;
  color: var(--m-book-cream);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.8;
}

body.m-mobile.m-app #landing-section .m-book-line,
body.m-mobile.m-app #landing-section .m-book-p {
  margin-bottom: 10px;
}

body.m-mobile.m-app .m-book-h2,
body.m-mobile.m-app .m-book-h3 {
  margin: 40px 0 16px;
  text-align: center;
  color: var(--m-book-cream);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.45;
}

body.m-mobile.m-app .m-book-block > .m-book-h2:first-child,
body.m-mobile.m-app .m-book-block > .m-book-h3:first-child {
  margin-top: 0;
}

body.m-mobile.m-app .m-book-h2 {
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 700;
  color: var(--m-book-gold);
  line-height: 1.35;
}

/* 「마녀님의 리딩 방식」블록: 상단 여백 축소 */
body.m-mobile.m-app .m-book-sec-reading {
  padding-top: clamp(1.75rem, 8vw, 3rem);
}

/* 제목만 한 포인트 전후로 크게 */
body.m-mobile.m-app .m-book-h2--reading-steps {
  font-size: clamp(calc(1.15rem + 1pt), calc(4vw + 1pt), calc(1.35rem + 1pt));
  margin-top: 0;
  margin-bottom: 16px;
}

body.m-mobile.m-app .m-book-h3 {
  font-size: clamp(1rem, 3.5vw, 1.12rem);
  font-weight: 700;
  color: #f0e4c8;
  line-height: 1.45;
}

body.m-mobile.m-app .m-book-p {
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  font-weight: 400;
}

body.m-mobile.m-app #landing-section .m-book-block .m-book-p:last-child,
body.m-mobile.m-app #landing-section .m-book-block .m-book-line:last-child {
  margin-bottom: 0;
}

body.m-mobile.m-app .m-book-lead {
  font-size: clamp(1.02rem, 3.4vw, 1.12rem);
  color: var(--m-book-gold);
}

body.m-mobile.m-app .m-book-emoji {
  margin: 0.5em 0 0;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

body.m-mobile.m-app .m-book-story-cta {
  margin: 1.25rem 0 1.25rem;
  text-align: center;
}

body.m-mobile.m-app .landing-story-link {
  display: inline;
  font-family: inherit;
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  letter-spacing: 0.12em;
  color: #f4e8c8;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.55);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.m-mobile.m-app .landing-story-link:active,
body.m-mobile.m-app .landing-story-link:hover {
  color: #fff5e0;
  border-bottom-color: rgba(255, 230, 180, 0.85);
}

body.m-mobile.m-app .m-book-footer {
  padding: 0 0 12px;
  margin-top: 48px;
  margin-bottom: 48px;
  text-align: center;
}

body.m-mobile.m-app .m-book-footer__langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 1.25rem;
}

body.m-mobile.m-app .m-book-lang {
  background: #14110e;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #f0e4c8;
  font-family: 'Gowun Batang', 'Nanum Myeongjo', serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.m-mobile.m-app .m-book-lang.lang-btn.active {
  border-color: #e8d5a8;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

body.m-mobile.m-app .m-book-copyright {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(245, 236, 216, 0.55);
  line-height: 1.55;
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; filter: drop-shadow(0 0 20px currentColor); }
}

/* ── 랜딩 전용 보석 (#landing-section만 — 결과 #result-section·훅은 건드리지 않음) ── */
body.m-mobile.m-app #landing-section .gem-divider {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 48px;
  max-height: 48px;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}

/* 위계: 인트로 보석(HTML에 없을 수 있음 — 클래스 유지 시) */
body.m-mobile.m-app #landing-section .gem-divider--intro {
  max-width: 22px;
  opacity: 0.55;
  animation: glowPulse 2.5s ease-in-out infinite, gemFloat 6s ease-in-out infinite;
}

/* 섹션 구분 — 작은 보석 */
body.m-mobile.m-app #landing-section .gem-divider--section {
  max-width: 32px;
  opacity: 0.6;
  animation: glowPulse 3s ease-in-out infinite, gemFloat 6s ease-in-out infinite;
}

/* 마녀님을 만나세요 / CTA 직전 등 포인트 — 큰 보석 */
body.m-mobile.m-app #landing-section .gem-divider--feature {
  max-width: 45px;
  opacity: 0.85;
  animation: glowPulse 2.5s ease-in-out infinite, gemFloat 5s ease-in-out infinite;
}

/* 랜딩 보석: 전역 .gem-glow-* 와 동일한 강한 색별 drop-shadow (glowPulse와 함께) */
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-purple {
  filter: drop-shadow(0 0 12px rgba(160, 80, 255, 0.7)) drop-shadow(0 0 25px rgba(160, 80, 255, 0.3));
}
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-white {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(200, 220, 255, 0.4));
}
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-gold {
  filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.7)) drop-shadow(0 0 25px rgba(255, 200, 0, 0.3));
}
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-aqua {
  filter: drop-shadow(0 0 12px rgba(0, 200, 220, 0.7)) drop-shadow(0 0 25px rgba(0, 200, 220, 0.3));
}
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-red {
  filter: drop-shadow(0 0 12px rgba(200, 30, 30, 0.7)) drop-shadow(0 0 25px rgba(200, 30, 30, 0.3));
}
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-amber {
  filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.7)) drop-shadow(0 0 25px rgba(255, 140, 0, 0.3));
}
body.m-mobile.m-app #landing-section .gem-divider.gem-glow-pearl {
  filter: drop-shadow(0 0 12px rgba(220, 210, 255, 0.6)) drop-shadow(0 0 25px rgba(220, 210, 255, 0.3));
}

/* 랜딩 밖 보석(유료 훅 등): 색별 글로우 — #landing-section 보석은 위에서 덮어씀 */
.gem-glow-purple {
  filter: drop-shadow(0 0 12px rgba(160, 80, 255, 0.7)) drop-shadow(0 0 25px rgba(160, 80, 255, 0.3));
  animation: gemFloat 3s ease-in-out infinite, glowPulse 2.5s ease-in-out infinite;
}
.gem-glow-white {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(200, 220, 255, 0.4));
  animation: gemFloat 3.2s ease-in-out infinite, glowPulse 2.8s ease-in-out infinite;
}
.gem-glow-gold {
  filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.7)) drop-shadow(0 0 25px rgba(255, 200, 0, 0.3));
  animation: gemFloat 2.8s ease-in-out infinite, glowPulse 2.3s ease-in-out infinite;
}
.gem-glow-aqua {
  filter: drop-shadow(0 0 12px rgba(0, 200, 220, 0.7)) drop-shadow(0 0 25px rgba(0, 200, 220, 0.3));
  animation: gemFloat 3.5s ease-in-out infinite, glowPulse 2.6s ease-in-out infinite;
}
.gem-glow-red {
  filter: drop-shadow(0 0 12px rgba(200, 30, 30, 0.7)) drop-shadow(0 0 25px rgba(200, 30, 30, 0.3));
  animation: gemFloat 3s ease-in-out infinite, glowPulse 2.4s ease-in-out infinite;
}
.gem-glow-amber {
  filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.7)) drop-shadow(0 0 25px rgba(255, 140, 0, 0.3));
  animation: gemFloat 3.3s ease-in-out infinite, glowPulse 2.7s ease-in-out infinite;
}
.gem-glow-pearl {
  filter: drop-shadow(0 0 12px rgba(220, 210, 255, 0.6)) drop-shadow(0 0 25px rgba(220, 210, 255, 0.3));
  animation: gemFloat 3.1s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

/* ===== 랜딩 아코디언 + 스토리 이미지 ===== */
body.m-mobile.m-app #landing-section .landing-accordion {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px 20px 32px;
  box-sizing: border-box;
}

body.m-mobile.m-app #landing-section .landing-accordion__item {
  margin: 0 0 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  background: rgba(20, 12, 18, 0.72);
  overflow: hidden;
}

body.m-mobile.m-app #landing-section .landing-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  font-family: 'Gowun Batang', 'Noto Serif KR', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f5ecd8;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  word-break: keep-all;
}

body.m-mobile.m-app #landing-section .landing-accordion__summary::-webkit-details-marker {
  display: none;
}

body.m-mobile.m-app #landing-section .landing-accordion__summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 400;
  color: #d4af37;
  transition: transform 0.2s ease;
}

body.m-mobile.m-app #landing-section .landing-accordion__item[open] .landing-accordion__summary::after {
  content: '−';
}

body.m-mobile.m-app #landing-section .landing-accordion__body {
  padding: 0 16px 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

body.m-mobile.m-app #landing-section .landing-accordion__body p {
  margin: 0 0 8px;
  font-family: 'Gowun Batang', 'Nanum Myeongjo', 'Noto Serif KR', serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245, 236, 216, 0.88);
  text-align: center;
  word-break: keep-all;
}

body.m-mobile.m-app #landing-section .landing-accordion__body p:last-child {
  margin-bottom: 0;
}

body.m-mobile.m-app #landing-section .landing-story-image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

body.m-mobile.m-app #landing-section .landing-story-cta {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 8px auto 28px;
  text-align: center;
}

body.m-mobile.m-app #landing-section .landing-hero__copy {
  margin-top: -1.5rem;
}

body.m-mobile.m-app #landing-section .landing-hero__sub {
  display: none;
}

@media (max-width: 480px) {
  body.m-mobile.m-app #landing-section .landing-accordion__summary {
    font-size: 0.92rem;
    padding: 12px 14px;
  }

  body.m-mobile.m-app #landing-section .landing-story-image {
    max-width: 100%;
    margin-bottom: 14px;
  }
}
