/* ───────── 코치노트 랜딩 ───────── */
:root {
  --bg: #FBF9F5;
  --ink: #1D2733;
  --ink-soft: #5B6673;
  --teal: #0E7A6E;
  --teal-deep: #0A5D54;
  --teal-soft: #E3F1EE;
  --amber: #D97B2B;
  --amber-soft: #FCEFE0;
  --card: #FFFFFF;
  --line: #E9E4DB;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(29, 39, 51, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  word-break: keep-all;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; text-align: center; margin-bottom: 40px; letter-spacing: -.02em; }

/* ── 헤더 ── */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 245, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.top-in { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.logo-mark {
  width: 26px; height: 26px; border-radius: 8px; background: var(--teal);
  display: inline-block; position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; left: 7px; top: 7px; width: 10px; height: 6px;
  border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg);
}
.logo-mark.small { width: 20px; height: 20px; border-radius: 6px; }
.logo-mark.small::after { left: 5px; top: 5px; width: 8px; height: 5px; border-width: 2px; }
.top-cta {
  background: var(--teal); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: 999px; transition: background .2s;
}
.top-cta:hover { background: var(--teal-deep); }

/* ── 히어로 ── */
.hero { padding: 72px 0 80px; overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.badge {
  display: inline-block; background: var(--amber-soft); color: var(--amber);
  font-weight: 700; font-size: 13.5px; padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(34px, 5.4vw, 54px); font-weight: 900; line-height: 1.22; letter-spacing: -.03em; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { margin: 20px 0 32px; font-size: clamp(15px, 2vw, 18px); color: var(--ink-soft); }

/* 사전등록 폼 */
.signup-row { display: flex; gap: 8px; flex-wrap: wrap; }
.signup input[type="email"], .signup select {
  height: 52px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  padding: 0 16px; font-size: 15px; font-family: inherit; color: var(--ink); outline: none;
  transition: border-color .2s;
}
.signup input[type="email"] { flex: 1 1 220px; }
.signup select { flex: 0 1 190px; color: var(--ink-soft); }
.signup input:focus, .signup select:focus { border-color: var(--teal); }
#f-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup button {
  height: 52px; padding: 0 26px; border: 0; border-radius: 12px; cursor: pointer;
  background: var(--teal); color: #fff; font-size: 16px; font-weight: 800; font-family: inherit;
  transition: background .2s, transform .1s;
}
.signup button:hover { background: var(--teal-deep); }
.signup button:active { transform: scale(.98); }
.signup button:disabled { opacity: .6; cursor: default; }
.signup-note { margin-top: 12px; font-size: 13.5px; color: var(--ink-soft); }
.signup-note.ok { color: var(--teal); font-weight: 700; }
.signup-note.err { color: #C2410C; font-weight: 700; }

/* 폰 목업 */
.hero-mock { display: flex; justify-content: center; }
.phone {
  width: 280px; border-radius: 40px; background: #101820; padding: 12px;
  box-shadow: 0 24px 60px rgba(16, 24, 32, .25);
  transform: rotate(3deg);
}
.phone-screen {
  background: linear-gradient(170deg, #F6FBFA, #EDF5F3);
  border-radius: 30px; padding: 20px 16px; min-height: 480px;
}
.ps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ps-title { font-weight: 800; font-size: 15px; }
.ps-chip { background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.ps-ring-wrap { text-align: center; margin: 10px 0 18px; }
.ps-ring {
  width: 120px; height: 120px; margin: 0 auto; border-radius: 50%;
  background: conic-gradient(var(--teal) 0 72%, #DCE7E4 72% 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.ps-ring::after { content: ""; position: absolute; inset: 12px; background: #F6FBFA; border-radius: 50%; }
.ps-ring-num { position: relative; z-index: 1; font-size: 26px; font-weight: 900; color: var(--teal-deep); }
.ps-ring-label { margin-top: 8px; font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.ps-bars { display: flex; flex-direction: column; gap: 12px; }
.ps-bar-top { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; margin-bottom: 5px; }
.ps-bar-top .done { color: var(--teal); }
.ps-track { height: 8px; background: #DCE7E4; border-radius: 999px; overflow: hidden; }
.ps-track .fill { display: block; height: 100%; background: var(--teal); border-radius: 999px; width: 0; animation: fillup 1.2s ease forwards .3s; }
.fill.f100 { --w: 100%; }
.fill.f75 { --w: 75%; }
.fill.f68 { --w: 68%; }
@keyframes fillup { to { width: var(--w); } }
.ps-dday {
  margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; text-align: center; font-size: 13.5px; font-weight: 600;
}
.ps-dday strong { color: var(--amber); }

/* ── 공감 ── */
.pain { padding: 80px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pain-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
}
.pain-emoji { font-size: 30px; display: block; margin-bottom: 14px; }
.pain-card h3 { font-size: 16.5px; font-weight: 800; line-height: 1.4; margin-bottom: 10px; letter-spacing: -.01em; }
.pain-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ── 기능 ── */
.feat { padding: 90px 0; }
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 72px;
}
.feat-row.rev .feat-copy { order: 2; }
.feat-row.rev .feat-mock { order: 1; }
.feat-tag { color: var(--teal); font-weight: 800; font-size: 14px; letter-spacing: .02em; }
.feat-copy h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; line-height: 1.35; margin: 10px 0 14px; letter-spacing: -.02em; }
.feat-copy p { color: var(--ink-soft); font-size: 15.5px; }
.feat-mock { display: flex; justify-content: center; }
.mock-card {
  width: 100%; max-width: 400px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px;
}
.mc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 4px; border-bottom: 1px dashed var(--line); font-size: 14.5px; font-weight: 600;
}
.mc-row:last-child { border-bottom: 0; }
.mc-ok { color: var(--teal); font-weight: 800; }
.mc-warn { color: var(--amber); font-weight: 700; font-size: 13px; }
.mc-num { font-weight: 800; }
.mc-num i { font-style: normal; color: var(--ink-soft); font-weight: 600; font-size: 12px; margin-left: 4px; }
.mc-log {
  display: flex; align-items: center; gap: 10px; padding: 11px 4px;
  border-bottom: 1px dashed var(--line); font-size: 13.5px; font-weight: 600;
}
.mc-date { color: var(--ink-soft); font-weight: 700; }
.mc-paid { background: var(--amber-soft); color: var(--amber); font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; }
.mc-free { background: #EEF2F6; color: var(--ink-soft); font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; }
.mc-verify { margin-left: auto; color: var(--teal); font-size: 12px; font-weight: 800; }
.mc-export {
  margin-top: 14px; background: var(--teal); color: #fff; text-align: center;
  border-radius: 10px; padding: 12px; font-weight: 800; font-size: 14px;
}
.mc-match-head { font-weight: 800; font-size: 14.5px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.mc-match-body { display: flex; align-items: center; gap: 4px; padding: 16px 0; }
.mc-avatar, .mc-avatar2 {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.mc-avatar2 { margin-left: -12px; }
.mc-match-txt { margin-left: 12px; font-size: 13.5px; color: var(--ink-soft); }
.mc-match-txt strong { color: var(--ink); font-size: 15px; }
.mc-match-foot {
  background: var(--teal-soft); color: var(--teal-deep); border-radius: 10px;
  padding: 10px; text-align: center; font-size: 13px; font-weight: 700;
}
.feat-outsource {
  text-align: center; color: var(--ink-soft); font-size: 15px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; max-width: 640px; margin: 0 auto;
}
.feat-outsource strong { color: var(--ink); }

/* ── 2027 배너 ── */
.banner2027 { background: #21313F; color: #F3EFE7; padding: 34px 0; text-align: center; }
.banner2027 p { font-size: clamp(14.5px, 2vw, 17px); }
.banner2027 strong { color: #FFC97E; }

/* ── 가격 ── */
.price { padding: 90px 0; }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 22px; justify-content: center; }
.price-card {
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; position: relative;
}
.price-card.hot { border-color: var(--teal); box-shadow: var(--shadow); }
.price-flag {
  position: absolute; top: -14px; left: 24px; background: var(--amber); color: #fff;
  font-size: 12.5px; font-weight: 800; padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.price-num { font-size: 34px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 18px; }
.price-card.hot .price-num { color: var(--teal-deep); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 14.5px; color: var(--ink-soft); padding-left: 24px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.price-card li strong { color: var(--ink); }

/* ── FAQ ── */
.faq { padding: 0 0 90px; }
.faq details {
  max-width: 720px; margin: 0 auto 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px;
}
.faq summary { font-weight: 800; font-size: 15.5px; cursor: pointer; list-style: none; position: relative; padding-right: 28px; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: -2px; font-size: 22px; color: var(--teal); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }

/* ── 푸터 ── */
.foot { background: #21313F; color: #B9C4CE; padding: 44px 0; text-align: center; }
.foot-logo { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-weight: 800; font-size: 17px; margin-bottom: 14px; }
.foot-note { font-size: 13px; line-height: 1.8; }
.foot-note a { color: #8FD5CB; }
.foot-copy { margin-top: 14px; font-size: 12.5px; color: #7A8894; }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 60px; text-align: center; }
  .badge { margin-bottom: 16px; }
  .signup-row { justify-content: center; }
  .pc-br { display: none; }
  .phone { transform: rotate(0); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .feat-row.rev .feat-copy { order: 1; }
  .feat-row.rev .feat-mock { order: 2; }
  .feat-copy { text-align: center; }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .pain-grid { grid-template-columns: 1fr; }
  .signup input[type="email"], .signup select, .signup button { width: 100%; flex: 1 1 100%; }
}
