body.landing {
  margin: 0;
  min-height: 100vh;
  background: #fafafa;
  color: #111111;
  font-family: "Pretendard", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.landing a {
  color: inherit;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: max(16px, env(safe-area-inset-top)) 24px 16px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
}

.landing-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
}

.landing-brand:hover {
  opacity: 0.5;
}

.landing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  justify-content: flex-end;
  align-items: center;
}

.landing-nav a {
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  padding: 8px 12px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.landing-nav a:hover {
  color: rgba(0, 0, 0, 0.72);
}

.landing-nav a.is-active {
  color: #000000;
  border-color: #000000;
  background: #ffffff;
}

.landing-main {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px max(64px, env(safe-area-inset-bottom));
}

/* 메인과 동일 고정 탑바 사용 시 본문 시작 위치 */
body.landing .topbar + .landing-main {
  padding-top: max(104px, calc(56px + env(safe-area-inset-top)));
}

.landing-hero {
  text-align: center;
  margin-bottom: 8px;
}

.landing-kicker {
  margin: 0 0 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.landing-title {
  margin: 0 0 20px;
  font-size: clamp(24px, 5.5vw, 32px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

.landing-lead {
  margin: 0 auto 40px;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a4a;
  text-align: center;
}

.landing-quotes {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-quote {
  margin: 0;
  padding: 32px 0 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-quote:first-of-type {
  padding-top: 36px;
}

.landing-quote-body {
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 2px solid #000000;
}

.landing-quote-body p {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(16px, 3.9vw, 18px);
  font-weight: 400;
  line-height: 1.92;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.landing-quote-by {
  margin: 20px 0 0;
  padding: 0;
  font-family: "Pretendard", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
  text-align: right;
}

.landing-quote-by::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 0 0 14px auto;
  background: rgba(0, 0, 0, 0.18);
}

.landing-cta {
  margin-top: 48px;
  padding-top: 8px;
  text-align: center;
}

.landing-cta a {
  display: inline-block;
  padding: 14px 32px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  transition: background 0.2s, border-color 0.2s;
}

.landing-cta a:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.landing-cta p {
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.75;
  color: #767676;
  max-width: 320px;
}

.landing-footer-note {
  margin-top: 48px;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.32);
}

.landing-main .landing-footer-note + .landing-footer-legal {
  margin-top: 16px;
}

/* 인터뷰 목록·본문 */
.interviews-lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 12px 0 0;
}

.interview-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

a.interview-card {
  display: block;
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

a.interview-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.interview-card-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
}

.interview-card-title {
  margin: 14px 0 8px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #151515;
}

.interview-card-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: #5a5a5a;
}

.interview-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.55);
}

.interview-back-wrap {
  margin-bottom: 8px;
}

.interview-back {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.interview-back:hover {
  color: #000000;
}

.interviews-article .interview-body {
  text-align: left;
}

.interview-article-head {
  margin-bottom: 32px;
}

.interview-article-title {
  margin: 10px 0 12px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #151515;
  line-height: 1.35;
}

.interview-article-meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.interview-body .interview-block {
  margin-bottom: 28px;
}

.interview-q {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  color: #252525;
}

.interview-a {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #3d3d3d;
}

.interview-foot {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 11px !important;
  line-height: 1.75;
}

body.landing .nav a[aria-current="page"] {
  color: #000000;
  border-bottom-color: #000000;
}

/* 개인정보처리방침 등 문서 페이지 */
.legal-main .legal-doc {
  max-width: 38rem;
  margin: 0 auto;
}

.legal-head {
  margin-bottom: 28px;
}

.legal-title {
  margin: 10px 0 8px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.legal-updated {
  margin: 0;
  font-size: 12px;
  color: #5c5c5c;
}

.legal-lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.85;
  color: #3a3a3a;
}

.legal-doc h2 {
  margin: 32px 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111827;
}

.legal-doc p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #3a3a3a;
}

.legal-list {
  margin: 8px 0 0;
  padding-left: 1.15rem;
  font-size: 14px;
  line-height: 1.8;
  color: #3a3a3a;
}

.legal-list li {
  margin-bottom: 10px;
}

.legal-contact {
  font-weight: 600;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 600px) {
  .landing-main {
    max-width: 540px;
    padding-top: 48px;
  }

  .landing-quote-body {
    padding-left: 22px;
  }
}
