/*
============================================================
Just M Lab Shorts Studio OAuth 공개 페이지 공통 스타일
작성일시: 2026-08-29 19:35 KST
설명:
- 공개 홈페이지/개인정보처리방침의 공통 정적 스타일입니다.
- 외부 폰트, 외부 JavaScript, 추적 스크립트를 사용하지 않습니다.
============================================================
*/

:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.65;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0b1020;
  color: #eef2ff;
}

a {
  color: #a7c7ff;
}

a:hover {
  text-decoration-thickness: 2px;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, #6d5dfc, #4361ee);
  font-size: 28px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 4px;
  color: #9aa7c7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1.12;
}

h2 {
  margin-top: 0;
  font-size: 22px;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: #c7d0e5;
  font-size: 18px;
}

.muted {
  color: #9aa7c7;
}

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

.card {
  margin: 18px 0;
  padding: 26px 28px;
  border: 1px solid #26314b;
  border-radius: 18px;
  background: #11182a;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.actions a {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #33415f;
  border-radius: 10px;
  text-decoration: none;
}

.actions .primary {
  border-color: #6d5dfc;
  background: #5c4ee5;
  color: white;
}

.link-list {
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #26314b;
  color: #9aa7c7;
  font-size: 14px;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 22px, 920px);
    padding-top: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .card {
    padding: 20px;
    border-radius: 14px;
  }

  footer {
    flex-direction: column;
    gap: 4px;
  }
}
