/* ══════════════════════════════════════════
   Artlogy — Landing Page CSS
   (global.css 위에 적용)
   ══════════════════════════════════════════ */

/* 랜딩 페이지 body 오버라이드: 흰 배경 */
body {
  background: #fff;
  color: #1a1a1a;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #FFFDF8 0%, #fff 100%);
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.55);
  pointer-events: none;
}

.hero-headline {
  font-family: 'Noto Serif KR', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 20px;
  max-width: 560px;
  word-break: keep-all;
  position: relative;
  z-index: 1;
}

.hero-sub {
  font-size: 16px;
  color: #555;
  max-width: 480px;
  margin-bottom: 40px;
  word-break: keep-all;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.hero-cta:hover {
  background: #333;
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
  position: relative;
  z-index: 1;
}

/* ── Section common ── */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-alt {
  background: #FAFAF8;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #8B7355;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  word-break: keep-all;
}

.section-body {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.section-body p {
  margin-bottom: 16px;
}

/* ── Pain points ── */
.pain-list {
  list-style: none;
  margin-top: 24px;
}

.pain-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C4A77D;
}

/* ── Feature cards ── */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px 24px;
}

.section-alt .feature-card {
  background: #fff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-num {
  font-size: 12px;
  font-weight: 600;
  color: #8B7355;
  margin-bottom: 8px;
}

.feature-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ── Quote / highlight ── */
.landing-quote {
  border-left: 3px solid #C4A77D;
  padding: 20px 24px;
  margin: 32px 0;
  background: #FFFDF8;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  word-break: keep-all;
}

/* ── Stat cards ── */
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #FFFDF8;
  border: 1px solid #E0D8CE;
  border-radius: 12px;
}

.stat-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 28px;
  font-weight: 700;
  color: #8B7355;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 8px;
}

.stat-sub {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* ── Target audience ── */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.audience-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
}

/* ── MBTI CTA Card ── */
.mbti-card {
  display: block;
  margin-top: 28px;
  text-decoration: none;
  background: #FFFDF8;
  border: 1px solid #E0D8CE;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}

.mbti-card:hover {
  border-color: #C4A77D;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
  transform: translateY(-2px);
}

.mbti-card-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mbti-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mbti-card-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.mbti-card-sub {
  font-size: 13px;
  color: #888;
}

.mbti-card-arrow {
  font-size: 20px;
  color: #C4A77D;
  flex-shrink: 0;
}

/* ── Blog Cards ── */
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.2s;
}

.blog-card:hover {
  border-color: #C4A77D;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.blog-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8B7355;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.blog-card-sub {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.blog-more {
  margin-top: 20px;
  text-align: center;
}

.blog-more a {
  font-size: 14px;
  color: #8B7355;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-more a:hover {
  color: #6B5B4F;
}

/* ── CTA section ── */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: #1a1a1a;
  color: #fff;
}

.cta-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  word-break: keep-all;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-button:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

/* ── Signup form ── */
.signup-form {
  max-width: 440px;
  margin: 0 auto;
}

.signup-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.signup-input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
  min-width: 0;
}

.signup-input::placeholder {
  color: #888;
}

.signup-input:focus {
  background: rgba(255,255,255,0.12);
}

.signup-button {
  padding: 14px 24px;
  border: none;
  background: #C4A77D;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.signup-button:hover {
  background: #D4B98D;
}

.signup-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.signup-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: #999;
  cursor: pointer;
}

.signup-consent input[type="checkbox"] {
  accent-color: #C4A77D;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.signup-consent a {
  color: #C4A77D;
  text-decoration: underline;
}

.signup-consent a:hover {
  color: #D4B98D;
}

.signup-msg {
  margin-top: 12px;
  font-size: 13px;
  min-height: 20px;
}

.signup-msg--ok {
  color: #7ECB8B;
}

.signup-msg--err {
  color: #E57373;
}

/* ── Landing Footer ── */
.landing-footer {
  background: #111;
  padding: 48px 24px;
  text-align: center;
}

.landing-footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.landing-footer-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.landing-footer-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.landing-footer-links {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.landing-footer-links a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.landing-footer-links a:hover {
  color: #ccc;
}

.landing-footer-copy {
  margin-top: 20px;
  font-size: 12px;
  color: #555;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .section { padding: 100px 24px; }
  .section-title { font-size: 28px; }
  .features { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr 1fr; }
  .blog-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .hero-headline { font-size: 44px; }
  .section-inner { max-width: 800px; }
  .blog-cards { grid-template-columns: 1fr 1fr 1fr; }
}
