@font-face{font-family:'Ownglyph_ParkDaHyun';src:url('ParkDaHyun.woff2') format('woff2');font-weight:normal;font-style:normal;font-display:swap;}

  :root {
    /* 따뜻한 필름 흑백 — 기본 다크(암실) */
    --bg: #0e0e10;
    --surface: #1b1b1f;
    --surface2: #232329;
    --ink: #edecea;
    --ink-soft: #9a9a9d;
    --ink-faint: #6a6a70;
    --line: #3a3a42;
    --accent: #cfcfce;      /* 무채색 포인트 (흑백) */
    --accent-ink: #f0efec;
    --accent-soft: rgba(255, 255, 255, .08);
    --bleed: linear-gradient(105deg, #ffa24d, #ff5470 45%, #b06cff 75%, #4d9bff);

    --sans: "Ownglyph_ParkDaHyun", "Pretendard Variable", Pretendard, -apple-system,
      BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
    --serif: "Ownglyph_ParkDaHyun", "Pretendard Variable", Pretendard,
      "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
    --mono: "SF Mono", ui-monospace, "JetBrains Mono", Consolas, "Courier New", monospace;

    --r: 14px;
    --r-lg: 22px;
    --shadow: 0 30px 70px -34px rgba(0, 0, 0, .78);
  }
  @media (prefers-color-scheme: light) {
    :root {
      --bg: #f0efec;
      --surface: #ffffff;
      --surface2: #f5f4f2;
      --ink: #18181a;
      --ink-soft: #66666a;
      --ink-faint: #a0a0a4;
      --line: #e4e3e0;
      --accent: #2b2b2e;
      --accent-ink: #141416;
      --accent-soft: rgba(0, 0, 0, .05);
      --shadow: 0 30px 70px -40px rgba(0, 0, 0, .22);
    }
  }
  :root[data-theme="dark"] {
    --bg: #0e0e10; --surface: #1b1b1f; --surface2: #232329;
    --ink: #edecea; --ink-soft: #9a9a9d; --ink-faint: #6a6a70; --line: #3a3a42;
    --accent: #cfcfce; --accent-ink: #f0efec; --accent-soft: rgba(255, 255, 255, .08);
    --shadow: 0 30px 70px -34px rgba(0, 0, 0, .8);
  }
  :root[data-theme="light"] {
    --bg: #f0efec; --surface: #ffffff; --surface2: #f5f4f2;
    --ink: #18181a; --ink-soft: #66666a; --ink-faint: #a0a0a4; --line: #e4e3e0;
    --accent: #2b2b2e; --accent-ink: #141416; --accent-soft: rgba(0, 0, 0, .05);
    --shadow: 0 30px 70px -40px rgba(0, 0, 0, .22);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  .page {
    position: relative;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    min-height: 100%;
    overflow-x: hidden;
  }
  /* 필름 그레인 */
  .page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    opacity: .09;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  /* 필름 비네트 */
  .page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(0, 0, 0, .34) 100%);
  }
  @media (prefers-color-scheme: light) {
    .page::before { background: radial-gradient(120% 90% at 50% 42%, transparent 60%, rgba(90, 60, 35, .12) 100%); }
  }
  :root[data-theme="light"] .page::before { background: radial-gradient(120% 90% at 50% 42%, transparent 60%, rgba(90, 60, 35, .12) 100%); }
  :root[data-theme="dark"] .page::before { background: radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(0, 0, 0, .34) 100%); }

  .wrap {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 20px 70px;
  }

  .mono { font-family: var(--mono); }

  /* nav */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand > span:last-child {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .brand small {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    margin-top: 3px;
    white-space: nowrap;
  }
  .logo {
    width: 32px; height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-size: 15px; font-weight: 800;
    position: relative;
  }
  .theme-btn {
    font-family: var(--mono);
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-soft);
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: border-color .15s, color .15s;
  }
  .theme-btn:hover { color: var(--ink); border-color: var(--ink-soft); }

  .nav-right { display: flex; align-items: center; gap: 6px; }
  .nav-link {
    font-size: 12px; font-weight: 700;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 7px 11px;
    border-radius: 999px;
    white-space: nowrap;
    transition: color .15s, background .15s;
  }
  .nav-link:hover { color: var(--ink); background: var(--surface2); }
  .nav-cta { color: var(--ink); background: var(--accent-soft); }
  @media (max-width: 560px) {
    .nav { flex-wrap: wrap; }
    .nav-right { width: 100%; justify-content: space-between; margin-top: 4px; gap: 4px; }
    .nav-link { padding: 7px 9px; font-size: 11.5px; }
  }

  /* 후기 */
  .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  @media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
  .rv-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 20px 18px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .rv-quote { font-size: 12.5px; line-height: 1.65; font-weight: 600; }
  .rv-by { font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--ink-soft); }

  /* Q&A 아코디언 */
  .qna { display: flex; flex-direction: column; gap: 8px; }
  .qa {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .qa summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 12.5px; font-weight: 800;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
  }
  .qa summary::-webkit-details-marker { display: none; }
  .qa summary::after { content: "+"; font-size: 16px; font-weight: 700; color: var(--ink-soft); }
  .qa[open] summary::after { content: "−"; }
  .qa[open] summary { color: var(--accent-ink); }
  .qa p { margin: 0; padding: 0 16px 15px; font-size: 11.5px; line-height: 1.65; color: var(--ink-soft); }

  /* eyebrow */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent-soft), 0 0 8px var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
  }

  /* hero */
  .hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
    margin-top: 52px;
  }
  @media (max-width: 780px) { .hero { grid-template-columns: 1fr; gap: 36px; margin-top: 38px; } }

  h1.title {
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 22px 0 20px;
    text-wrap: balance;
  }
  @media (max-width: 780px) { h1.title { font-size: 40px; } }
  .tagline {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 0 0 16px;
  }
  .hl {
    background: var(--bleed);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: bleed 8s ease-in-out infinite;
  }
  @keyframes bleed {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  .lede {
    font-size: 13px;
    color: var(--ink-soft);
    max-width: 42ch;
    margin: 0 0 26px;
    line-height: 1.7;
  }

  .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
  .btn {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: -0.01em;
    padding: 12px 22px;
    border-radius: var(--r);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background .15s, color .15s, border-color .15s;
  }
  .btn-primary { background: var(--ink); color: var(--bg); }
  .btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

  /* contact sheet (film) */
  .phone-stage { position: relative; display: grid; place-items: center; }
  .blob {
    position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: .5; z-index: 0;
  }
  .blob.b1 { width: 150px; height: 150px; background: var(--ink); top: -20px; left: 0; opacity: .12; }
  .blob.b2 { width: 120px; height: 120px; background: var(--ink-soft); bottom: -10px; right: 6px; opacity: .12; }

  .phone {
    position: relative;
    z-index: 1;
    width: 300px;
    max-width: 100%;
    background: var(--surface2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    /* 겉 테두리 + 안쪽 마운트 선(이중 프레임) */
    box-shadow: var(--shadow), inset 0 0 0 6px var(--surface), inset 0 0 0 7px var(--line);
  }
  /* 필름 퍼포레이션(부드러운 점) */
  .phone-notch {
    height: 8px;
    margin: 0 4px 12px;
    background-image: radial-gradient(circle, var(--ink-faint) 1.4px, transparent 1.8px);
    background-size: 13px 8px;
    background-repeat: repeat-x;
    background-position: center;
    opacity: .55;
  }
  .phone-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2px 12px;
  }
  .phone-head b { font-size: 12px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
  .live {
    font-family: var(--mono);
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-ink);
    display: inline-flex; align-items: center; gap: 4px;
  }
  .shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
  .shot {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid; place-items: center;
    font-size: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s ease;
  }
  .shot:hover { transform: scale(1.06); z-index: 2; }
  .shot .tm {
    position: absolute; left: 0; right: 0; bottom: 0;
    font-family: var(--sans);
    font-size: 7.5px; font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    padding: 2px 3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .shots-cap {
    font-family: var(--mono);
    text-align: center;
    font-size: 8.5px;
    letter-spacing: 0.05em;
    color: var(--ink-faint);
    margin-top: 12px;
    text-transform: uppercase;
  }

  /* sections */
  .section { margin-top: 84px; }
  .section-head { margin-bottom: 26px; }
  .section-head h2, .apply-top h2 {
    font-family: var(--serif);
    font-size: 27px; font-weight: 700; letter-spacing: -0.015em; margin: 10px 0 8px;
  }
  .section-head p { font-size: 12px; color: var(--ink-soft); margin: 0; }

  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  @media (max-width: 620px) { .steps { grid-template-columns: repeat(2, 1fr); } }
  .step {
    background: var(--surface);
    border-radius: var(--r);
    padding: 14px 13px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .step .num {
    font-family: var(--mono);
    font-size: 9px; font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
  }
  .step .ico {
    font-size: 18px;
    margin: 7px 0 6px;
  }
  .step h3 { font-size: 12.5px; font-weight: 800; margin: 0 0 4px; letter-spacing: -0.02em; }
  .step p { font-size: 10.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

  /* apply */
  .apply {
    margin-top: 84px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .apply-top {
    padding: 30px 26px 6px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 26px;
  }
  .apply-top p { font-size: 12px; color: var(--ink-soft); margin: 0; max-width: 44ch; }

  form { padding: 26px; }
  .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 560px) { .grid2 { grid-template-columns: 1fr; } }

  .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
  .field label {
    font-size: 11px; font-weight: 700; letter-spacing: -0.01em;
  }
  .field label em { color: var(--accent); font-style: normal; }
  .field input, .field select, .field textarea {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 12px 13px;
    outline: none;
    width: 100%;
    transition: border-color .15s, box-shadow .15s;
  }
  .field textarea { resize: vertical; min-height: 78px; line-height: 1.6; }
  .field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }

  /* 날짜별 신청 */
  .date-list { display: flex; flex-direction: column; gap: 8px; }
  .date-opt { position: relative; display: block; cursor: pointer; }
  .date-opt input { position: absolute; opacity: 0; pointer-events: none; }
  .do-main {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 12px 14px;
    transition: border-color .15s, background .15s;
  }
  .date-opt:hover .do-main { border-color: var(--ink-soft); }
  .date-opt input:checked + .do-main {
    border-color: var(--accent);
    background: var(--accent-soft);
  }
  .date-opt input:focus-visible + .do-main { box-shadow: 0 0 0 3px var(--accent-soft); }
  .do-date { font-size: 12.5px; font-weight: 800; }
  .do-count { font-family: var(--mono); display: inline-flex; gap: 6px; font-size: 10.5px; font-weight: 700; }
  .do-count .f { color: var(--ink); }
  .do-count .m { color: var(--ink-soft); }
  .do-count .sep { color: var(--ink-faint); font-weight: 400; }
  .do-count.loading { color: var(--ink-faint); font-weight: 400; letter-spacing: 0.02em; }

  /* 그룹별 모집 현황 카드 */
  .group-status { display: flex; flex-direction: column; gap: 8px; }
  .grp-card {
    width: 100%;
    font-family: var(--sans);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "label badge" "prog badge";
    gap: 3px 10px;
    align-items: center;
    text-align: left;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
  }
  .grp-card:hover { border-color: var(--ink-soft); }
  .grp-card.active { border-color: var(--accent); background: var(--accent-soft); }
  .grp-label { grid-area: label; font-size: 12.5px; font-weight: 800; }
  .grp-prog { grid-area: prog; font-family: var(--mono); font-size: 10.5px; font-weight: 700; }
  .grp-prog .m { color: var(--ink-soft); }
  .grp-prog .f { color: var(--ink); }
  .grp-prog .sep { color: var(--ink-faint); }
  .grp-badge {
    grid-area: badge;
    font-size: 10px; font-weight: 800;
    padding: 5px 11px; border-radius: 999px;
    background: var(--surface2); color: var(--ink-soft);
    white-space: nowrap;
  }
  .grp-badge.done { background: var(--accent-soft); color: var(--accent-ink); }

  /* 날짜별 참가자 패널 (연생 그룹별로 구분) */
  .date-panel:not([hidden]) { display: block; margin-top: 10px; animation: pop .3s ease; }
  .dp-group { margin-bottom: 12px; }
  .dp-group:last-child { margin-bottom: 0; }
  .dp-gtitle {
    font-size: 11px; font-weight: 800; color: var(--ink);
    padding: 7px 11px; margin-bottom: 7px;
    background: var(--accent-soft);
    border-radius: 999px;
    display: inline-block;
  }
  .dp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .dp-col { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 11px 12px; }
  .dp-head { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; font-weight: 800; margin-bottom: 9px; }
  .dp-head b { color: var(--ink-soft); font-family: var(--mono); }
  .dp-list { display: flex; flex-direction: column; gap: 7px; }
  .dp-item { font-size: 10.5px; line-height: 1.45; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
  .dp-item:last-child { border-bottom: none; padding-bottom: 0; }
  .dp-item b { font-weight: 800; }
  .dp-item .dp-sub { color: var(--ink-soft); font-weight: 600; }
  .dp-line { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .dp-status {
    font-size: 8.5px; font-weight: 800;
    padding: 2px 7px; border-radius: 999px;
    background: var(--surface2); color: var(--ink-soft);
    white-space: nowrap; flex: 0 0 auto;
  }
  .dp-status.done { background: var(--accent-soft); color: var(--accent-ink); }
  .dp-merit { color: var(--ink-soft); margin-top: 3px; font-size: 10px; line-height: 1.5; }
  .dp-empty { font-size: 10px; color: var(--ink-faint); }

  /* 참여 조건 */
  .cond {
    display: flex; flex-direction: column; gap: 3px;
    margin-top: 14px;
    padding: 12px 14px;
    background: var(--accent-soft);
    border-radius: var(--r);
    font-size: 11px; color: var(--ink);
  }
  .cond b { font-size: 11px; font-weight: 800; margin-bottom: 2px; }
  .cond span { color: var(--ink-soft); font-weight: 600; }
  .cond span::before { content: "· "; color: var(--ink-faint); }

  /* 무드 chips — 평소 흑백, 선택 시 색이 번짐 */
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip { position: relative; }
  .chip input { position: absolute; opacity: 0; pointer-events: none; }
  .chip label {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg);
    color: var(--ink-soft);
    cursor: pointer;
    user-select: none;
    transition: all .18s ease;
  }
  .chip input:checked + label {
    color: var(--ink);
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-1px);
  }
  .chip input:focus-visible + label { box-shadow: 0 0 0 3px var(--accent-soft); }

  /* 사진 업로드 */
  .photo-drop {
    display: block;
    border: 1px dashed var(--line);
    border-radius: var(--r);
    background: var(--bg);
    padding: 15px;
    cursor: pointer;
    transition: border-color .15s;
  }
  .photo-drop:hover { border-color: var(--ink-soft); }
  .photo-drop:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
  .photo-empty:not([hidden]) { display: flex; align-items: center; gap: 12px; }
  .photo-preview:not([hidden]) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
  .photo-ico {
    width: 42px; height: 42px; flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 18px;
  }
  .photo-txt { font-size: 11.5px; font-weight: 700; line-height: 1.4; }
  .photo-txt span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 10px; margin-top: 3px; }
  .photo-grid { display: flex; flex-wrap: wrap; gap: 6px; }
  .photo-grid img {
    width: 48px; height: 48px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(1);
    transition: filter .4s;
  }
  .photo-grid img:hover { filter: grayscale(0); }
  .photo-change { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.03em; color: var(--accent-ink); text-transform: uppercase; }

  /* 제출 자료 3종 */
  .docs { display: flex; flex-direction: column; gap: 8px; }
  .photo-drop.doc { display: flex; align-items: center; gap: 12px; padding: 12px 14px; }
  .doc-txt { display: flex; flex-direction: column; font-size: 12px; font-weight: 800; min-width: 0; }
  .doc-sub { font-weight: 500; color: var(--ink-soft); font-size: 10px; margin-top: 2px; }
  .doc-thumb {
    width: 42px; height: 42px; flex: 0 0 42px;
    object-fit: cover;
    border-radius: 9px;
    margin-left: auto;
    filter: grayscale(1);
    transition: filter .4s;
  }
  .photo-drop.doc:hover .doc-thumb { filter: grayscale(0); }

  /* 참가비 */
  .pay-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .pay-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12px; }
  .pay-row span { color: var(--ink-soft); font-weight: 600; }
  .pay-row b { font-family: var(--mono); font-weight: 700; font-size: 13px; }
  .pay-note { font-size: 10px; color: var(--ink-soft); margin: 2px 0 0; line-height: 1.6; }
  .pay-note b { color: var(--accent-ink); font-weight: 700; }

  .agree {
    display: flex; align-items: flex-start; gap: 9px;
    margin: 4px 0 16px;
    font-size: 10.5px; color: var(--ink-soft); line-height: 1.55;
  }
  .agree input { margin-top: 2px; accent-color: var(--accent); }

  .submit {
    width: 100%;
    color: #fff;
    background: var(--bleed);
    background-size: 200% 100%;
    border: none;
    font-size: 14px; font-weight: 800;
    padding: 14px;
    border-radius: var(--r);
    transition: background-position .5s ease, transform .12s;
  }
  .submit:hover { background-position: 100% 50%; transform: translateY(-2px); }
  .submit.loading { opacity: .7; pointer-events: none; }

  .form-note { text-align: center; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.03em; color: var(--ink-faint); margin-top: 12px; }
  .err-note {
    display: none; text-align: center;
    font-size: 11px; font-weight: 700;
    color: var(--bg); background: var(--ink);
    border-radius: var(--r);
    padding: 9px 12px; margin: 12px 0 0;
  }
  .err-note.show { display: block; }

  /* 완료 */
  .toast { display: none; text-align: center; padding: 46px 26px 52px; }
  .toast.show { display: block; animation: pop .4s ease; }
  @keyframes pop { 0% { opacity: 0; transform: scale(.96); } 100% { opacity: 1; transform: scale(1); } }
  .toast .big {
    width: 60px; height: 60px; margin: 0 auto 18px;
    border: 1.5px solid var(--accent);
    color: var(--accent-ink);
    display: grid; place-items: center;
    font-size: 26px; font-weight: 700;
    border-radius: 50%;
  }
  .toast h2 { font-family: var(--serif); font-size: 23px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px; }
  .toast p { font-size: 12px; color: var(--ink-soft); margin: 0 auto; max-width: 34ch; line-height: 1.65; }
  .toast p b { color: var(--ink); }

  footer {
    text-align: center;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
    text-transform: uppercase;
  }
  footer .heart {
    background: var(--bleed);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-weight: 700;
  }

  /* 후기 페이지 — 기수 기록 + 캡처 갤러리 */
  .cohorts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .cohort {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--r);
    padding: 14px 18px;
    display: flex; align-items: baseline; gap: 10px;
  }
  .cohort b { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
  .cohort span { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
  .rv-subhead { font-size: 13px; font-weight: 800; margin: 4px 0 14px; }
  .gallery { columns: 2; column-gap: 14px; }
  @media (min-width: 720px) { .gallery { columns: 3; } }
  .shot-card {
    break-inside: avoid; margin: 0 0 14px;
    border: 1px solid var(--line); border-radius: 14px;
    overflow: hidden; background: var(--surface);
    box-shadow: 0 8px 24px -14px rgba(0, 0, 0, .3);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .shot-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .42); }
  .shot-card img { width: 100%; display: block; }
  .rv-note { font-size: 11px; color: var(--ink-soft); margin: 0 0 18px; line-height: 1.6; }
  .back-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; color: var(--ink-soft);
    text-decoration: none; margin-top: 18px;
  }
  .back-link:hover { color: var(--ink); }
  a.brand { text-decoration: none; color: inherit; }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
  }

/* 진행 중인 셋로그 */
.ongoing-list{display:flex;flex-direction:column;gap:10px}
.og-card{display:flex;align-items:center;gap:10px;flex-wrap:wrap;background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:14px 16px}
.og-card.running{border-color:var(--accent);background:var(--accent-soft)}
.og-label{font-size:12.5px;font-weight:800}
.og-prog{font-family:var(--mono);font-size:10.5px;font-weight:700;color:var(--ink-soft)}
.og-badge{margin-left:auto;font-size:10px;font-weight:800;padding:5px 11px;border-radius:999px;background:var(--surface2);color:var(--ink-soft);white-space:nowrap}
.og-badge.done{background:var(--ink);color:var(--bg)}
/* 진행 중인 셋로그 — 기수 카드 */
.og-cohort{font-family:var(--mono);font-size:12px;font-weight:800;color:var(--accent-ink);background:var(--accent-soft);padding:3px 9px;border-radius:999px;flex:0 0 auto}
.og-date{font-family:var(--mono);font-size:10.5px;font-weight:700;color:var(--ink-soft)}
.og-empty{font-size:11.5px;color:var(--ink-soft);text-align:center;padding:18px;border:1px dashed var(--line);border-radius:var(--r)}