/*
  ChatMC 공개 사이트 스타일.

  다크 테마 단일 디자인. 앱의 실제 액센트 녹색(#34c759)을 브랜드 색으로 쓰고,
  밝은 앱 화면(스크린샷·목업)을 어두운 배경 위에 띄워 대비로 시선을 모은다.

  Demo 스크린샷은 여백이 많으므로 전체를 보여주지 않는다.
  고정 크기 프레임에 object-fit: cover로 넣고, 스크린샷마다 의미 있는 영역이
  다르므로(서버 목록은 위, 빠른 입력·인벤토리 시트는 아래, 지도는 중간)
  변형 클래스로 object-position을 지정한다.
*/

:root {
  --brand: #34c759;
  --brand-bright: #5ce283;
  --brand-dim: #1f9c43;

  --bg: #0a0f0c;
  --bg-raise: #0f1511;
  --card: #121a15;
  --card-raise: #16201a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #eef4ef;
  --text-soft: #9fb0a6;
  --text-faint: #6e7f75;

  /* 목업 안 밝은 앱 화면 전용. 실제 앱의 라이트 팔레트를 따른다. */
  --app-bg: #f4f5f4;
  --app-card: #ffffff;
  --app-ink: #101511;
  --app-ink-soft: #8a938d;
  --app-name-teal: #2a9d9f;
  --app-name-green: #2f9e44;
  --app-name-orange: #c07b2a;

  --radius: 20px;
  --shell: 1120px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Pretendard",
    "Noto Sans KR", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Pretendard", "Noto Sans KR", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--brand-bright); }

::selection { background: rgba(52, 199, 89, 0.32); }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  word-break: keep-all;
  text-wrap: balance;
}

/* ---------- 헤더 ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}

/* 큐브를 연상시키되 Minecraft 로고를 흉내내지 않는 중립적인 마크. */
.brand-mark {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dim) 100%);
  box-shadow: 0 0 18px rgba(52, 199, 89, 0.35);
  display: grid;
  place-items: center;
  flex: none;
}

.brand-mark::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 2px;
  border: 2.5px solid #fff;
  border-bottom-color: transparent;
  border-right-color: transparent;
  rotate: -45deg;
  translate: 1px 1px;
}

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 10px;
}

.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.site-nav a[aria-current="page"] { color: var(--text); font-weight: 600; }

.lang-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  white-space: nowrap;
}

.lang-link:hover { color: var(--brand-bright); border-color: var(--brand-dim); }

/* ---------- 히어로 ---------- */

.hero {
  position: relative;
  padding: 84px 0 96px;
  overflow: hidden;
}

/* 위쪽 녹색 광원과 미세한 픽셀 그리드로 배경에 깊이를 준다. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(56% 48% at 72% 30%,
      rgba(52, 199, 89, 0.16) 0%, transparent 70%),
    radial-gradient(40% 36% at 18% 12%,
      rgba(52, 199, 89, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(70% 70% at 60% 30%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 30%, #000 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 470px);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand-bright);
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  display: block;
}

h1 {
  font-size: clamp(2.5rem, 5.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 .accent {
  color: var(--brand-bright);
  text-shadow: 0 0 34px rgba(52, 199, 89, 0.4);
}

.lede {
  margin-top: 24px;
  max-width: 32em;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: var(--text-soft);
  word-break: keep-all;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 13px;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-primary {
  color: #06130a;
  background: linear-gradient(160deg, var(--brand-bright), var(--brand));
  box-shadow: 0 8px 28px rgba(52, 199, 89, 0.32);
}

.button-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(52, 199, 89, 0.42); }

.button-ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover { border-color: var(--text-faint); background: rgba(255, 255, 255, 0.07); }

.hero-note { margin-top: 20px; font-size: 0.84rem; color: var(--text-faint); }

/* ---------- 히어로 폰 목업 ----------

   실제 앱의 채팅 화면을 CSS로 재현한다. Demo 캡처는 채팅이 세 줄뿐이라
   히어로에 쓰면 허전하므로, 같은 디자인 언어로 더 살아있는 장면을 구성한다. */

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-visual .halo {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(52, 199, 89, 0.22) 0%,
    rgba(52, 199, 89, 0.05) 45%,
    transparent 70%);
  filter: blur(4px);
}

.phone {
  position: relative;
  z-index: 2;
  width: 292px;
  border-radius: 46px;
  padding: 9px;
  background: linear-gradient(165deg, #2a3630, #141b17 60%);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  transform: rotate(-1.5deg);
}

.screen {
  position: relative;
  text-align: left;
  border-radius: 38px;
  overflow: hidden;
  background: var(--app-bg);
  color: var(--app-ink);
  padding: 12px 16px 12px;
  display: flex;
  flex-direction: column;
  height: 560px;
}

.notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 14px;
  background: #0b0d0c;
  z-index: 3;
}

.statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.sb-right { display: inline-flex; align-items: center; gap: 4px; }

.sb-wifi {
  width: 14px;
  height: 10px;
  background: conic-gradient(from -55deg at 50% 100%, var(--app-ink) 0 110deg, transparent 110deg);
  -webkit-mask: radial-gradient(circle at 50% 100%, #000 0 9px, transparent 9px);
  mask: radial-gradient(circle at 50% 100%, #000 0 9px, transparent 9px);
}

.sb-batt {
  width: 21px;
  height: 10px;
  border: 1px solid rgba(16, 21, 17, 0.5);
  border-radius: 3px;
  padding: 1px;
}

.sb-batt::before { content: ""; display: block; height: 100%; width: 80%; border-radius: 1.5px; background: var(--app-ink); }

.chat-nav {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  padding: 2px 0 10px;
}

.chat-title { grid-column: 2; text-align: center; font-size: 14px; font-weight: 650; }

.chat-more {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--app-card);
  display: grid;
  place-items: center;
  color: var(--app-ink);
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.chat-log {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 4px 2px;
  font-size: 12.5px;
  line-height: 1.45;
  overflow: hidden;
}

.chat-log p { word-break: keep-all; }
.chat-log b { font-weight: 600; }
.n-teal { color: var(--app-name-teal); }
.n-green { color: var(--app-name-green); }
.n-orange { color: var(--app-name-orange); }
.chat-log .sys { color: #b39a37; font-size: 11.5px; }

/* 빠른 입력 칩. 실제 앱의 빠른 입력을 채팅 위 한 줄로 요약해 보여준다. */
.quick-row {
  display: flex;
  gap: 7px;
  padding: 8px 0 10px;
  overflow: hidden;
}

.quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--app-card);
  color: var(--app-ink);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.quick-chip.cmd { color: var(--app-name-green); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; }

.composer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--app-card);
  border-radius: 22px;
  padding: 6px 6px 6px 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.composer .ph { flex: 1; color: var(--app-ink-soft); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.c-history {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef0ee;
  display: grid;
  place-items: center;
  color: #5d665f;
  font-size: 13px;
}

.c-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(52, 199, 89, 0.45);
}

.home-indicator {
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: rgba(16, 21, 17, 0.28);
  margin: 10px auto 0;
}

/* 폰 주변 떠 있는 정보 칩 */
.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--card-raise) 82%, transparent);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.float-chip small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--text-faint); letter-spacing: 0.06em; text-transform: uppercase; }

.float-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  flex: none;
}

.chip-status { top: 148px; right: -72px; }
.chip-quick { bottom: 120px; left: -26px; flex-direction: column; align-items: flex-start; gap: 3px; }
.chip-quick code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.8rem; color: var(--brand-bright); }

/* ---------- 스탯 스트립 ---------- */

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raise);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 24px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat span { font-size: 0.85rem; color: var(--text-faint); word-break: keep-all; }

/* ---------- 공통 섹션 ---------- */

section { padding: 104px 0; }

.section-head { max-width: 44em; margin-bottom: 56px; }

.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 14px;
}

h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }

.section-head p { margin-top: 16px; color: var(--text-soft); word-break: keep-all; font-size: 1.05rem; }

h3 { font-size: 1.08rem; margin-bottom: 8px; }

/* ---------- 기능 패널 ----------

   기능마다 어두운 유리 패널 하나. 문구와 스크린샷 프레임을 나란히 두고
   행마다 좌우를 뒤집는다. */

.features { padding-top: 96px; }

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(170deg, var(--card-raise), var(--card) 70%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 4.5vw, 56px);
  overflow: hidden;
  position: relative;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(48% 62% at 84% 20%, rgba(52, 199, 89, 0.09), transparent 70%);
  pointer-events: none;
}

.feature-panel + .feature-panel { margin-top: 26px; }

.feature-panel.flip { grid-template-columns: 300px minmax(0, 1fr); }
.feature-panel.flip .feature-copy { order: 2; }
.feature-panel.flip .shot-frame { order: 1; }
.feature-panel.flip::before { background: radial-gradient(48% 62% at 16% 20%, rgba(52, 199, 89, 0.09), transparent 70%); }

.feature-copy { position: relative; }
.feature-copy h2 { font-size: clamp(1.45rem, 2.9vw, 1.95rem); margin-bottom: 16px; }
.feature-copy p { color: var(--text-soft); max-width: 30em; word-break: keep-all; text-wrap: pretty; }

/*
  스크린샷 프레임. 실제 Demo 캡처(560x1217)를 고정 창에 cover로 넣고
  변형 클래스가 보여줄 영역을 고른다.
*/
.shot-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(165deg, #26312b, #10160f 65%);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.09);
}

/*
  실제 크롭은 .shot-clip이 담당한다. 이미지 폭(줌)과 음수 margin(위치)을
  변형 클래스마다 지정한다. margin 퍼센트는 컨테이너 폭 기준이라
  프레임 크기가 달라져도 같은 영역이 보인다.
*/
.shot-clip {
  overflow: hidden;
  border-radius: 27px;
  height: 430px;
  background: var(--app-bg);
}

.shot-clip img { display: block; width: 100%; height: auto; }

/* 채팅: 화면 위쪽(내비게이션 + 메시지) */
.shot-chat .shot-clip { height: 330px; }
.shot-chat img { width: 112%; margin: -4% 0 0 -6%; }

/* 빠른 입력·인벤토리: 아래쪽 시트를 보여준다 */
.shot-quick .shot-clip,
.shot-inventory .shot-clip { height: 400px; }
.shot-quick img,
.shot-inventory img { width: 108%; margin: -111% 0 0 -4%; }

/* 지도: 지형과 좌표, 이동 버튼이 함께 보이는 중간 영역 */
.shot-map img { margin-top: -29%; }

/* 서버 목록: 제목과 서버 카드 */
.shot-servers .shot-clip { height: 340px; }
.shot-servers img { width: 106%; margin: -17% 0 0 -3%; }

/* ---------- 카드 그리드 ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.card:hover { border-color: rgba(52, 199, 89, 0.3); background: var(--card-raise); }

.card p { color: var(--text-soft); font-size: 0.94rem; word-break: keep-all; }

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.22);
  color: var(--brand-bright);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.card-icon svg { width: 21px; height: 21px; }

/* ---------- 언어 ---------- */

.languages { padding-top: 0; }

.lang-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 56em;
}

.lang-cloud span {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text-soft);
  font-size: 0.88rem;
  white-space: nowrap;
}

.lang-cloud span:nth-child(3n) { border-color: rgba(52, 199, 89, 0.24); color: var(--text); }

/* ---------- CTA ---------- */

.cta { padding-top: 0; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(52, 199, 89, 0.22);
  background:
    radial-gradient(90% 130% at 50% -30%, rgba(52, 199, 89, 0.2), transparent 60%),
    var(--card);
  padding: clamp(44px, 6vw, 76px);
  text-align: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(75% 90% at 50% 0%, #000, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 90% at 50% 0%, #000, transparent 100%);
  pointer-events: none;
}

.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.cta-band p { margin: 16px auto 0; max-width: 34em; color: var(--text-soft); word-break: keep-all; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- 본문 페이지 ---------- */

.page-head {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 130% at 50% -40%, rgba(52, 199, 89, 0.1), transparent 70%);
}

.page-head h1 { font-size: clamp(2rem, 4.6vw, 2.8rem); }
.page-head p { margin-top: 14px; color: var(--text-soft); }

.prose { padding: 52px 24px 104px; max-width: calc(46em + 48px); }
.prose h2 { margin: 44px 0 14px; font-size: 1.32rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 8px; font-size: 1.04rem; }
.prose p { margin-bottom: 14px; color: var(--text-soft); word-break: keep-all; }
.prose ul { margin: 0 0 16px 1.15em; color: var(--text-soft); }
.prose li { margin-bottom: 8px; word-break: keep-all; }
.prose strong { color: var(--text); font-weight: 650; }

.note {
  background: rgba(52, 199, 89, 0.07);
  border: 1px solid rgba(52, 199, 89, 0.22);
  border-left: 3px solid var(--brand);
  border-radius: 13px;
  padding: 17px 19px;
  margin: 24px 0;
}

.note p { margin: 0; font-size: 0.94rem; }

.meta { font-size: 0.86rem; color: var(--text-faint); }

/* ---------- 푸터 ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
  padding: 56px 0 36px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.footer-main > div:first-child { max-width: 24em; }
.footer-main p { margin-top: 14px; color: var(--text-faint); font-size: 0.9rem; word-break: keep-all; }

.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }

.footer-links strong {
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-links a { color: var(--text-soft); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--brand-bright); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-bottom span { max-width: 52em; word-break: keep-all; }

/* ---------- 반응형 ---------- */

@media (max-width: 960px) {
  .hero { padding: 64px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: auto; margin-top: 20px; }
  .chip-status { right: max(-6px, calc(50% - 240px)); }
  .chip-quick { left: max(-6px, calc(50% - 240px)); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .feature-panel,
  .feature-panel.flip { grid-template-columns: 1fr; }
  .feature-panel.flip .feature-copy { order: 1; }
  .feature-panel.flip .shot-frame { order: 2; }
  .shot-frame { margin: 0 auto; max-width: 280px; }
  .shot-frame img { height: 380px; }
}

@media (max-width: 620px) {
  section { padding: 76px 0; }
  .header-inner { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 4px 10px; }
  .brand { order: 1; margin-right: auto; }
  .lang-link { order: 2; }
  .site-nav { order: 3; width: 100%; margin-left: -12px; }

  .phone { width: 258px; }
  .screen { height: 500px; }
  .float-chip { padding: 10px 13px; font-size: 0.76rem; }
  .chip-status { top: 26px; }
  .chip-quick { bottom: 16px; }

  .stats-grid { gap: 18px; padding: 26px 24px; }
  .stat b { font-size: 1.25rem; }

  .hero .button { width: 100%; max-width: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
