﻿
  :root {
    --bg: #FFFFFF;
    --bg-2: #F9FAFB;
    --bg-3: #F2F4F6;
    --card: #FFFFFF;
    --hover: #F2F4F6;
    --input: #F9FAFB;
    --border: #E5E8EB;
    --border-2: #D1D6DB;
    --border-strong: #B0B8C1;

    --text: #191F28;
    --text-2: #4E5968;
    --text-3: #8B95A1;
    --text-4: #B0B8C1;

    --accent: #4C9F7A;
    --accent-hover: #3F8968;
    --accent-strong: #2E7F5E;
    --accent-subtle: rgba(76, 159, 122, 0.09);
    --accent-line: rgba(76, 159, 122, 0.22);
    --accent-tint: #EBF5F0;

    --ok: #17A66C;
    --hold: #C08B2B;
    --deny: #D14A3F;
    --ok-bg: #E6F4EC;
    --hold-bg: #FCF3E1;
    --deny-bg: #FDECEA;

    --r-sm: 8px;
    --r: 12px;
    --r-lg: 16px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px -4px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 60px -20px rgba(20,30,50,0.12), 0 8px 20px -8px rgba(20,30,50,0.08);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html, body {
    background: var(--bg);
    color: var(--text);
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
  }
  body { min-height: 100vh; position: relative; overflow-x: hidden;}

  .num, .mono { font-family: "Inter", sans-serif; font-variant-numeric: tabular-nums;}
  a { color: inherit; text-decoration: none;}
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit;}

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px;}

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .logo {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--text);
  }
  .logo-mark {
    width: 24px; height: 24px; border-radius: 7px;
    background: var(--accent); color: #fff;
    display: grid; place-items: center;
    font-weight: 800; font-size: 13px; font-family: "Inter", sans-serif;
  }
  .nav-back {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-2); font-size: 14.5px; font-weight: 500;
  }
  .nav-back:hover { color: var(--text);}
  .nav-right { display: flex; align-items: center; gap: 8px;}
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 10px;
    font-size: 15px; font-weight: 600; line-height: 1;
    transition: transform 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .btn-primary { background: var(--accent); color: #fff;}
  .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(76,159,122,0.4);}
  .btn-secondary { background: var(--bg-3); color: var(--text);}
  .btn-secondary:hover { background: #E5E8EB;}
  .btn-ghost { color: var(--text-2); padding: 13px 12px;}
  .btn-ghost:hover { color: var(--text);}
  .btn-lg { padding: 17px 30px; font-size: 17px; border-radius: 12px;}

  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 6px;
    font-size: 12px; font-weight: 700;
    font-family: "Inter", sans-serif; line-height: 1;
    letter-spacing: -0.01em;
  }
  .badge-ok { background: var(--ok-bg); color: var(--ok);}
  .badge-hold { background: var(--hold-bg); color: var(--hold);}
  .badge-deny { background: var(--deny-bg); color: var(--deny);}
  .badge .dot-s { width: 5px; height: 5px; border-radius: 50%; background: currentColor;}

  /* ============ PAGE HEAD ============ */
  .page-head {
    padding: 72px 0 36px;
    text-align: center;
    position: relative;
  }
  .page-head::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(700px 300px at 50% 0%, rgba(76,159,122,0.10), transparent 60%);
    pointer-events: none;
    z-index: -1;
  }
  .eyebrow {
    display: inline-flex; align-items: center;
    font-size: 15px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .page-title {
    margin-top: 18px;
    font-size: clamp(36px, 4.4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.032em;
    line-height: 1.12;
    color: var(--text);
  }
  .page-lead {
    margin-top: 20px;
    color: var(--text-2);
    font-size: 18px;
    line-height: 1.55;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .page-lead b { color: var(--text); font-weight: 700;}

  .no-signup {
    margin-top: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--bg-3);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
  }
  .no-signup .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent);}

  /* ============ MAIN STAGE ============ */
  .stage {
    margin: 40px auto 100px;
    max-width: 1280px;
    padding: 0 32px;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  @media (max-width: 980px){ .split { grid-template-columns: 1fr;}}

  .stage.input-state .split {
    grid-template-columns: minmax(0, 680px);
    justify-content: center;
  }
  .stage.input-state .report-col { display: none;}

  /* ============ CHAT PANEL (LEFT) ============ */
  .chat-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex; flex-direction: column;
    height: calc(100vh - 240px);
    min-height: 640px;
    max-height: 820px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .chat-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
  }
  .chat-head .left { display: flex; align-items: center; gap: 12px;}
  .chat-head .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent);
    display: grid; place-items: center;
    font-weight: 700; color: #fff; font-size: 15px;
    font-family: "Inter", sans-serif;
    position: relative;
  }
  .chat-head .avatar::after {
    content: ""; position: absolute;
    bottom: -1px; right: -1px;
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--ok); border: 2px solid var(--card);
  }
  .chat-head .name { font-weight: 700; font-size: 15.5px; letter-spacing: -0.015em;}
  .chat-head .role {
    color: var(--text-3);
    font-size: 12.5px;
    margin-top: 2px;
    display: flex; align-items: center; gap: 5px;
    font-weight: 500;
  }
  .chat-head .role .live { width: 5px; height: 5px; border-radius: 50%; background: var(--accent);}
  .chat-head .badge-secured {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--text-3);
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
  }

  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 26px 22px 12px;
    display: flex; flex-direction: column; gap: 12px;
    scroll-behavior: smooth;
    background: var(--bg-2);
  }
  .chat-body::-webkit-scrollbar { width: 6px;}
  .chat-body::-webkit-scrollbar-track { background: transparent;}
  .chat-body::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px;}

  .day-divider {
    text-align: center;
    color: var(--text-3);
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin: 6px 0;
    position: relative;
  }
  .day-divider span {
    background: var(--bg-2);
    padding: 0 12px;
    position: relative; z-index: 1;
  }
  .day-divider::before {
    content: ""; position: absolute; left: 20px; right: 20px; top: 50%;
    height: 1px; background: var(--border);
  }

  .msg-group { display: flex; align-items: flex-end; gap: 10px;}
  .msg-group.user { flex-direction: row-reverse;}
  .msg-group .msg-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 700; color: #fff; font-size: 12px;
    font-family: "Inter", sans-serif;
    flex-shrink: 0;
    background: var(--accent);
  }
  .msg-group.user .msg-avatar {
    background: linear-gradient(135deg, #E8D9C0, #A67B4A);
    color: #3A2F1A;
  }
  .msg-group .msg-avatar.ghost { visibility: hidden;}

  .bubble-stack { display: flex; flex-direction: column; gap: 4px; max-width: 78%;}
  .msg-group.user .bubble-stack { align-items: flex-end;}

  .bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14.5px;
    line-height: 1.55;
    letter-spacing: -0.005em;
    animation: bubbleIn 350ms cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
  }
  .bubble.bot {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top-left-radius: 6px;
    color: var(--text);
  }
  .bubble.user {
    background: var(--accent);
    color: #fff;
    border-top-right-radius: 6px;
    font-weight: 600;
  }
  .bubble.card {
    padding: 0;
    background: transparent;
    border: none;
    max-width: 340px;
  }
  .bubble .meta { font-size: 11px; color: var(--text-3); margin-top: 4px; padding: 0 4px; font-family: "Inter", sans-serif; font-weight: 500;}
  .msg-group.user .bubble .meta { text-align: right;}
  .bubble b { color: var(--accent); font-weight: 700;}
  .bubble.user b { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px;}

  @keyframes bubbleIn {
    from { opacity: 0; transform: translateY(6px) scale(0.98);}
    to { opacity: 1; transform: translateY(0) scale(1);}
  }

  /* Typing indicator */
  .typing {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 14px 16px;
    border-radius: 18px;
    border-top-left-radius: 6px;
  }
  .typing span {
    width: 6px; height: 6px; border-radius: 50%; background: var(--text-3);
    animation: typing 1.4s infinite;
  }
  .typing span:nth-child(2) { animation-delay: 0.2s;}
  .typing span:nth-child(3) { animation-delay: 0.4s;}
  @keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4;}
    30% { transform: translateY(-3px); opacity: 1;}
  }

  /* Inline card inside bubble */
  .bubble-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
  }
  .bubble-card .k {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.08em;
    font-family: "Inter", sans-serif; font-weight: 700;
    margin-bottom: 8px;
  }

  /* Composer */
  .composer {
    padding: 20px 22px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    display: flex; flex-direction: column; gap: 12px;
  }
  .composer .field {
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 200ms ease, background 200ms ease;
  }
  .composer .field:focus-within {
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 0 0 3px var(--accent-subtle);
  }
  .composer .field-label {
    font-size: 11.5px; color: var(--text-3);
    font-family: "Inter", sans-serif; font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
  }
  .composer .field-label .req { color: var(--accent); font-size: 8px; margin-left: 2px;}
  .composer input.text-in,
  .composer textarea.text-in {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    resize: none;
    padding: 0;
  }
  .composer input.text-in::placeholder,
  .composer textarea.text-in::placeholder { color: var(--text-4); font-weight: 500;}
  .composer textarea.text-in { min-height: 96px;}

  .composer-actions {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .composer-hint {
    font-size: 12.5px; color: var(--text-3);
    display: flex; align-items: center; gap: 8px;
    font-family: "Inter", sans-serif; font-weight: 500;
  }
  .composer-hint .kbd {
    padding: 2px 7px;
    background: var(--bg-3);
    border-radius: 5px;
    font-size: 10.5px;
    color: var(--text-2);
    font-weight: 600;
  }
  .send-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -0.01em;
    transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  }
  .send-btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(76,159,122,0.4);}
  .send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none;}

  /* Seed chips */
  .seed-row {
    padding: 12px 22px 0;
    display: flex; gap: 8px; flex-wrap: wrap;
    align-items: center;
    background: var(--bg);
  }
  .seed-row .lbl {
    font-size: 12.5px; color: var(--text-3);
    font-family: "Inter", sans-serif; font-weight: 600;
  }
  .seed-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--bg-3);
    border-radius: 999px;
    color: var(--text-2);
    font-size: 12.5px;
    font-weight: 600;
    transition: all 200ms ease;
    cursor: pointer;
    letter-spacing: -0.01em;
  }
  .seed-chip:hover { color: var(--accent-strong); background: var(--accent-tint);}


  /* ============ REPORT PANEL (RIGHT) ============ */
  .report-col {
    display: flex; flex-direction: column; gap: 14px;
    height: calc(100vh - 240px);
    min-height: 640px;
    max-height: 820px;
    overflow-y: auto;
    padding-right: 4px;
  }
  .report-col::-webkit-scrollbar { width: 6px;}
  .report-col::-webkit-scrollbar-track { background: transparent;}
  .report-col::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px;}

  .report-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
    animation: bubbleIn 400ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
  }
  .report-block .rb-head {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.1em;
    font-family: "Inter", sans-serif; font-weight: 700;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .report-block .rb-head .num-tag {
    display: inline-grid; place-items: center;
    width: 22px; height: 22px;
    background: var(--accent-tint);
    color: var(--accent);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
  }

  /* Block 1: Brand */
  .brand-header {
    display: flex; align-items: center; gap: 16px;
  }
  .brand-logo {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, #F0E4D0, #B89460);
    color: #4A3B1E;
    display: grid; place-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 800; font-size: 20px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .brand-info { flex: 1; min-width: 0;}
  .brand-info .name-l { display: flex; align-items: center; gap: 8px; flex-wrap: wrap;}
  .brand-info .name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--text);}
  .brand-info .via {
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--text-2);
    font-weight: 500;
  }
  .brand-info .via .agency { color: var(--text); font-weight: 700;}
  .verdict-inline {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bg-3);
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
  }
  .verdict-inline strong { color: var(--text); font-weight: 700;}

  /* Block 2: Breakdown */
  .breakdown-title {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 16px;
  }
  .breakdown-title .score {
    font-family: "Inter", sans-serif;
    font-size: 38px; font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.035em;
    line-height: 1;
  }
  .breakdown-title .score .of {
    color: var(--text-3); font-size: 16px; font-weight: 600;
  }
  .breakdown-title .label {
    font-size: 13.5px; color: var(--text-2); font-weight: 500;
  }
  .metric {
    display: grid;
    grid-template-columns: 110px 1fr 40px;
    gap: 14px;
    align-items: center;
    padding: 9px 0;
  }
  .metric .m-label { font-size: 13px; color: var(--text-2); font-weight: 500;}
  .metric .m-bar {
    height: 8px;
    background: var(--bg-3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .metric .m-bar .fill {
    height: 100%;
    border-radius: 4px;
    background: var(--accent);
  }
  .metric .m-bar .fill.ok { background: var(--ok);}
  .metric .m-bar .fill.hold { background: var(--hold);}
  .metric .m-bar .fill.deny { background: var(--deny);}
  .metric .m-val {
    font-size: 13.5px;
    color: var(--text);
    text-align: right;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.01em;
  }
  .metric-note {
    margin-top: 12px;
    padding: 12px 14px;
    background: var(--hold-bg);
    border-radius: 10px;
    color: var(--hold);
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 600;
    display: flex; gap: 8px; align-items: flex-start;
  }
  .metric-note svg { flex-shrink: 0; margin-top: 2px;}
  .metric-note strong { color: #7A5715; font-weight: 800;}

  /* Block 3: Price */
  .price-total {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-3);
  }
  .price-total .lbl { font-size: 13px; color: var(--text-3); font-weight: 500;}
  .price-total .amt {
    font-family: "Inter", sans-serif;
    font-size: 32px; font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: 6px;
  }
  .price-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-3);
    align-items: center;
    font-size: 13.5px;
  }
  .price-item:last-of-type { border-bottom: none;}
  .price-item .p-name { color: var(--text); font-weight: 600;}
  .price-item .p-est { color: var(--text-3); font-family: "Inter", sans-serif; font-size: 12px; font-weight: 500; margin-top: 2px;}
  .price-item .p-tag { color: var(--text-3); font-weight: 500; font-family: "Inter"; font-size: 12px;}
  .market-compare {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--bg-2);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
    font-weight: 500;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .market-compare .icn {
    width: 24px; height: 24px; flex-shrink: 0;
    background: var(--accent-tint);
    border-radius: 6px;
    display: grid; place-items: center;
    color: var(--accent);
  }
  .market-compare strong { color: var(--text); font-weight: 700;}

  /* Block 4: Proposal */
  .prop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .prop-cell {
    background: var(--card);
    padding: 14px 16px;
  }
  .prop-cell .k {
    font-size: 11px; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.08em;
    font-family: "Inter", sans-serif; font-weight: 700;
    margin-bottom: 6px;
  }
  .prop-cell .v {
    font-size: 14px; color: var(--text); font-weight: 700;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 8px;
  }
  .prop-cell .v .warn-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hold); flex-shrink: 0;}
  .prop-cell .v .miss { color: var(--hold);}

  /* Block 5: Checklist */
  .checklist-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 14px 0;
    align-items: flex-start;
    border-bottom: 1px solid var(--bg-3);
  }
  .checklist-item:last-child { border-bottom: none;}
  .checklist-item .check {
    width: 22px; height: 22px; border-radius: 6px;
    display: grid; place-items: center;
    margin-top: 1px;
  }
  .checklist-item.done .check { background: var(--ok-bg); color: var(--ok);}
  .checklist-item.miss .check { background: var(--hold-bg); color: var(--hold);}
  .checklist-item.warn .check { background: var(--deny-bg); color: var(--deny);}
  .checklist-item .t { font-size: 14.5px; color: var(--text); line-height: 1.5; font-weight: 700; letter-spacing: -0.01em;}
  .checklist-item .d { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-top: 4px; font-weight: 500;}
  .checklist-item .d strong { color: var(--text); font-weight: 700;}

  /* Block 6: Verdict */
  .verdict-card {
    background: var(--hold-bg);
    border-radius: 16px;
    padding: 24px 26px;
  }
  .verdict-card.ok { background: var(--ok-bg);}
  .verdict-card.deny { background: var(--deny-bg);}

  .verdict-card .rb-head { color: var(--hold);}
  .verdict-card .rb-head .num-tag {
    background: rgba(192, 139, 43, 0.18);
    color: var(--hold);
  }

  .verdict-card .top {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }
  .verdict-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff;
    display: grid; place-items: center;
    color: var(--hold);
    flex-shrink: 0;
  }
  .verdict-card .status {
    font-size: 20px; font-weight: 800;
    color: var(--hold);
    letter-spacing: -0.025em;
  }
  .verdict-card .sub-status {
    font-size: 12px; color: var(--text-3);
    margin-top: 3px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
  }
  .verdict-card .reason {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.65;
    font-weight: 500;
  }
  .verdict-card .reason strong { color: var(--text); font-weight: 700;}
  .verdict-card .reason .keyword { color: var(--hold); font-weight: 700;}

  /* Bridge CTA */
  .bridge-cta {
    margin-top: 4px;
    background: var(--accent-tint);
    border-radius: 16px;
    padding: 28px 26px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .bridge-cta .headline-mini {
    font-size: 20px; font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
    line-height: 1.3;
  }
  .bridge-cta .headline-mini .accent { color: var(--accent);}
  .bridge-cta .sub-t {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.55;
    font-weight: 500;
  }
  .bridge-cta .btns {
    margin-top: 20px;
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  }
  .bridge-cta .btn-secondary { background: #fff;}
  .bridge-cta .login-link {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-3);
    font-family: "Inter", sans-serif;
    font-weight: 500;
  }
  .bridge-cta .login-link a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px;}

  /* Empty state */
  .report-empty {
    background: var(--bg-2);
    border: 1px dashed var(--border-2);
    border-radius: 16px;
    padding: 48px 28px;
    text-align: center;
    color: var(--text-3);
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 500;
  }
  .report-empty .icn-lg {
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: var(--accent-tint);
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--accent);
  }
  .report-empty .t-e { color: var(--text); font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.015em;}

  /* Reset */
  .reset-btn {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-2);
    font-size: 13px;
    padding: 8px 14px;
    background: var(--bg-3);
    border-radius: 8px;
    transition: all 200ms ease;
    font-family: "Inter", sans-serif;
    font-weight: 600;
  }
  .reset-btn:hover { color: var(--text); background: #E5E8EB;}

  /* ============ FEATURES SECTION ============ */
  .features-section {
    padding: 100px 0 40px;
    background: var(--bg);
  }
  @media (max-width: 720px){ .features-section { padding: 64px 0 20px; } }
  .features-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .features-head .eyebrow-inline {
    display: inline-flex; align-items: center;
    font-size: 15px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .features-head .fs-title {
    margin-top: 16px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.032em;
    line-height: 1.15;
    color: var(--text);
  }
  .features-head .fs-lead {
    color: var(--text-2);
    font-size: 17px;
    max-width: 340px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .feat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 30px 0;
    overflow: hidden;
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    display: flex; flex-direction: column;
  }
  .feat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-line);
  }
  .feat-tag {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .feat-title {
    margin-top: 14px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: var(--text);
  }
  .feat-desc {
    margin-top: 14px;
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 500;
  }
  .feat-mock {
    margin-top: 24px;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: -1px;
  }
  .feat.span-3 { grid-column: span 3; }
  .feat.span-2 { grid-column: span 2; }
  @media (max-width: 980px){
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feat.span-3, .feat.span-2 { grid-column: span 2; }
  }
  @media (max-width: 560px){
    .features-grid { grid-template-columns: 1fr; }
    .feat.span-3, .feat.span-2 { grid-column: span 1; }
  }

  /* Feature mockup shared */
  .mock-frame {
    background: var(--bg-2);
    border-radius: 12px 12px 0 0;
    margin: 0 22px;
    padding: 18px;
  }
  .fx-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px;
    background: var(--bg);
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(20,30,50,0.03);
  }
  .fx-row + .fx-row { margin-top: 8px; }
  .fx-row .brand-row { display: flex; align-items: center; gap: 12px; }
  .fx-row .avatar-sm {
    width: 32px; height: 32px; border-radius: 8px;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 800; font-family: "Inter";
    letter-spacing: -0.02em;
  }
  .fx-row .name-row { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em;}
  .fx-row .sub-row { font-size: 12px; color: var(--text-3); margin-top: 2px; font-weight: 500;}

  /* Contract */
  .contract-doc {
    background: var(--bg);
    color: var(--text);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 12.5px;
    line-height: 1.85;
    font-weight: 500;
  }
  .contract-doc .clause-num { color: var(--text-3); margin-right: 6px; font-weight: 600;}
  .contract-doc .highlight {
    background: var(--hold-bg);
    color: var(--hold);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
  }
  .contract-flag {
    margin-top: 10px;
    background: var(--hold-bg);
    color: var(--hold);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.5;
  }
  .contract-flag svg { flex-shrink: 0; margin-top: 2px; }
  .contract-flag b { color: #7A5715; font-weight: 800;}

  /* Calendar */
  .cal { background: var(--bg); border-radius: 10px; padding: 16px; }
  .cal-head {
    display: flex; justify-content: space-between; align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 13px; color: var(--text); font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .cal-head .arrows { display: flex; gap: 8px; color: var(--text-3);}
  .cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
    font-family: "Inter", sans-serif;
  }
  .cal-grid .dow { font-size: 10.5px; text-align: center; color: var(--text-3); padding: 4px 0; font-weight: 600;}
  .cal-grid .day {
    aspect-ratio: 1;
    display: grid; place-items: center;
    font-size: 12px; color: var(--text-2);
    border-radius: 6px;
    position: relative;
    font-weight: 500;
  }
  .cal-grid .day.muted { color: var(--text-4);}
  .cal-grid .day.today { background: var(--accent); color: #fff; font-weight: 700;}
  .cal-grid .day.event::after {
    content: ""; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent);
    position: absolute; bottom: 3px;
  }
  .cal-grid .day.event.hold::after { background: var(--hold);}

  /* Conflict */
  .conflict-alert {
    background: var(--deny-bg);
    border-radius: 10px;
    padding: 16px;
  }
  .conflict-alert .head {
    display: flex; align-items: center; gap: 8px;
    color: var(--deny);
    font-size: 13px; font-weight: 700;
    letter-spacing: -0.01em;
  }
  .conflict-alert .body-t {
    margin-top: 10px;
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 500;
  }
  .conflict-alert .body-t .strike { color: var(--text-3); text-decoration: line-through;}
  .conflict-alert .body-t code {
    background: var(--bg); padding: 2px 6px; border-radius: 5px;
    color: var(--text-2); font-size: 12px; font-family: "Inter"; font-weight: 600;
  }
  .conflict-alert .body-t strong { color: var(--deny); font-weight: 700;}

  /* Draft */
  .draft-box {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
    font-weight: 500;
  }
  .draft-box .lbl {
    font-family: "Inter";
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
    letter-spacing: -0.01em;
  }
  .draft-box .fake-cursor {
    display: inline-block; width: 1.5px; height: 12px;
    background: var(--accent);
    vertical-align: -2px; margin-left: 2px;
    animation: blink 1s infinite;
  }
  @keyframes blink { 50% { opacity: 0; }}

  /* Checklist */
  .fx-checklist {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
  }
  .fx-checklist .item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    color: var(--text-2);
  }
  .fx-checklist .item.ok { color: var(--text);}
  .fx-checklist .item.miss { color: var(--deny); font-weight: 600;}
  .fx-checklist .check-mark {
    width: 18px; height: 18px; border-radius: 5px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .fx-checklist .ok .check-mark { background: var(--ok-bg); color: var(--ok);}
  .fx-checklist .miss .check-mark { background: var(--deny-bg); color: var(--deny);}

  /* Payout */
  .payout {
    background: var(--bg);
    border-radius: 10px;
    padding: 16px;
  }
  .payout-flow {
    display: flex; align-items: center; gap: 8px;
    font-family: "Inter"; font-size: 12.5px; font-weight: 600;
  }
  .payout-flow .node {
    padding: 9px 12px;
    border-radius: 8px;
    background: var(--bg-3);
    color: var(--text-2);
    flex: 1;
    text-align: center;
    letter-spacing: -0.01em;
  }
  .payout-flow .node.active { color: var(--accent); background: var(--accent-tint);}
  .payout-flow .arrow { color: var(--text-4);}
  .payout-status {
    margin-top: 14px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: "Inter";
  }
  .payout-status .amt {
    color: var(--text); font-weight: 800; font-size: 22px;
    letter-spacing: -0.03em; line-height: 1;
  }
  .payout-status .lbl {
    color: var(--text-3); font-size: 12px; margin-top: 3px;
    font-family: "Pretendard Variable", sans-serif; font-weight: 500;
  }

  /* Analysis strip */
  .analysis-strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
  }
  .analysis-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 900px){ .analysis-strip-inner { grid-template-columns: 1fr 1fr;}}
  .analysis-strip .as-title {
    font-size: 26px; font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 36px;
    color: var(--text);
  }
  .analysis-strip .as-title .accent { color: var(--accent);}
  .as-item .step-num {
    font-family: "Inter", sans-serif;
    font-size: 13px; color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .as-item .step-title {
    font-size: 17px; font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .as-item .step-desc {
    color: var(--text-2);
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 500;
  }

  /* Disclaimer */
  .disclaimer {
    text-align: center;
    padding: 60px 32px;
    color: var(--text-3);
    font-size: 13px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
  }
  .disclaimer strong { color: var(--text-2); font-weight: 700;}

  footer {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-3);
    font-size: 12.5px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    background: var(--bg);
  }

  @media (max-width: 720px){
    .chat-panel { height: auto; min-height: 500px; max-height: none;}
    .report-col { height: auto; min-height: 0; max-height: none; overflow-y: visible;}
    .stage { padding: 0 20px; margin: 24px auto 60px;}
    .container { padding: 0 20px;}
    .page-head { padding: 40px 0 20px;}
    .nav-right .btn:not(.btn-primary) { display: none;}
  }

