:root {
  --bg: #f6f7fb; --card: #ffffff; --ink: #1c1f2b; --muted: #6b7185; --line: #e4e7ef;
  --brand: #4f5bff; --brand-ink: #ffffff; --brand-soft: #eef0ff; --ok: #1e9e6a; --warn: #d97706; --danger: #dc2626;
  --radius: 14px; --shadow: 0 1px 2px rgba(20, 24, 40, .06), 0 8px 24px rgba(20, 24, 40, .06);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif; background: var(--bg); color: var(--ink); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 16px; }
h1 { font-size: 28px; margin: 0 0 8px; letter-spacing: -.02em; }
h2 { font-size: 20px; margin: 24px 0 10px; letter-spacing: -.01em; }
p.lead { color: var(--muted); margin: 0 0 20px; font-size: 16px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 18px; height: 56px; }
.nav .brand { font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--brand); }
.nav nav { display: flex; gap: 6px; flex: 1; overflow-x: auto; }
/* nav items read as buttons at rest, not only on hover */
.nav nav a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--muted); font-weight: 600; font-size: 14px; white-space: nowrap; transition: .15s; }
.nav nav a .nav-ico { display: inline-flex; }
.nav nav a svg { width: 16px; height: 16px; }
.nav nav a:hover { border-color: #cdd2e0; color: var(--ink); }
.nav nav a.active { background: var(--brand-soft); border-color: var(--brand); color: var(--brand); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.pill .ico svg { width: 14px; height: 14px; display: block; }
.pill .ico { display: inline-flex; margin-right: 4px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 13px; font-weight: 700; white-space: nowrap; }
.pill.gray { background: #eef0f4; color: var(--muted); }
.email { font-size: 13px; color: var(--muted); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); color: var(--ink); font-weight: 700; cursor: pointer; transition: .15s; font-size: 14px; }
.btn:hover { border-color: #cdd2e0; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn.primary { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.btn.primary:hover { filter: brightness(1.05); }
.btn.lg { padding: 14px 24px; font-size: 16px; border-radius: 12px; }
.btn.sm { padding: 6px 10px; font-size: 13px; border-radius: 8px; }
.btn.danger { color: var(--danger); }
.btn.ghost { background: transparent; border-color: transparent; }

/* layout */
main.page { padding: 28px 0 80px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
/* wide enough that the date and both action buttons fit on one line */
.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); }
.checker { background-color: #fff; background-image: linear-gradient(45deg, #e8e8e8 25%, transparent 25%), linear-gradient(-45deg, #e8e8e8 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e8e8e8 75%), linear-gradient(-45deg, transparent 75%, #e8e8e8 75%); background-size: 16px 16px; background-position: 0 0, 0 8px, 8px -8px, -8px 0; }
.notice { border-left: 4px solid var(--warn); background: #fff8eb; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.notice.info { border-color: var(--brand); background: var(--brand-soft); }
.notice label { display: flex; gap: 8px; align-items: center; margin-top: 8px; font-weight: 600; cursor: pointer; }

/* dropzone */
.drop { border: 2px dashed #c9cfe3; border-radius: 18px; background: var(--card); padding: 48px 20px; text-align: center; cursor: pointer; transition: .15s; }
.drop:hover, .drop.over { border-color: var(--brand); background: var(--brand-soft); }
.drop .icon svg { width: 40px; height: 40px; }
.drop .icon { font-size: 40px; margin-bottom: 8px; }
.drop h3 { margin: 0 0 6px; font-size: 20px; }
.drop p { line-height: 1.7; margin: 0; color: var(--muted); font-size: 14px; }
.drop input { display: none; }

/* file cards */
.files { display: grid; gap: 14px; margin-top: 18px; }
.file { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
@media (max-width: 720px) { .file { grid-template-columns: 1fr; } }
.file .pane { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); min-height: 160px; display: flex; align-items: center; justify-content: center; position: relative; }
.file .pane img { max-width: 100%; max-height: 360px; display: block; }
.file .pane .tag { position: absolute; top: 8px; left: 8px; background: rgba(28,31,43,.75); color: #fff; font-size: 12px; padding: 3px 8px; border-radius: 999px; font-weight: 700; }
.file .meta { grid-column: 1 / -1; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.file .meta .name { color: var(--ink); font-weight: 700; }
.status { font-weight: 700; font-size: 13px; }
.status.ok { color: var(--ok); } .status.err { color: var(--danger); } .status.run { color: var(--brand); }
.progress { height: 8px; background: #e9ecf5; border-radius: 999px; overflow: hidden; }
.progress > i { display: block; height: 100%; background: var(--brand); width: 0; transition: width .2s; }
.actionbar { position: sticky; bottom: 0; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 12px 0; margin-top: 20px; }
.actionbar .wrap { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
/* the run button stays on the right even when 목록 비우기 is hidden */
.actionbar .wrap #runBtn { margin-left: auto; }

/* gallery */
.tile { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--card); transition: .15s; }
.tile:hover { border-color: #cdd2e0; box-shadow: 0 6px 18px rgba(20, 24, 60, .08); transform: translateY(-2px); }
.tile .thumb { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; cursor: zoom-in; padding: 10px; }
.tile .thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tile .foot { display: flex; align-items: center; gap: 8px; padding: 9px 10px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); background: var(--card); }
.tile .foot > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile .foot .actions { display: flex; gap: 6px; margin-left: auto; flex: none; }
/* same bordered button as everywhere else; only the label must never wrap in a narrow tile */
.tile .foot .actions .btn { white-space: nowrap; padding: 5px 9px; }
.tile .foot .actions .btn.danger:hover { background: #fdf2f2; }
.tile .badge { position: absolute; top: 8px; left: 8px; background: var(--brand); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.busy { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; background: rgba(244, 246, 251, .82); backdrop-filter: blur(3px); }
.busy-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 12px 40px rgba(20, 24, 60, .14); padding: 28px 32px; text-align: center; display: grid; justify-items: center; gap: 6px; max-width: 320px; }
.busy-card b { font-size: 17px; }
.busy-card p { margin: 0; font-size: 13px; color: var(--muted); }
.busy-card .busy-step { color: var(--brand); font-weight: 700; min-height: 18px; }
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--brand); animation: spin .8s linear infinite; margin-bottom: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2.4s; } }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state { grid-column: 1 / -1; display: grid; justify-items: center; gap: 6px; padding: 56px 20px; background: var(--card); border: 1px dashed var(--line); border-radius: 16px; text-align: center; }
.empty-state .ico { color: var(--muted); opacity: .8; }
.empty-state .ico svg { width: 44px; height: 44px; }
.empty-state b { font-size: 16px; margin-top: 4px; }
.empty-state p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }

/* modal & toast */
.modal-bg { position: fixed; inset: 0; background: rgba(20,24,40,.5); display: flex; align-items: center; justify-content: center; z-index: 50; padding: 16px; }
.modal { background: var(--card); border-radius: 16px; padding: 24px; width: 100%; max-width: 420px; box-shadow: var(--shadow); }
.modal h3 { margin: 0 0 6px; font-size: 20px; }
.modal .field { margin: 14px 0; }
.modal input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 16px; }
.modal .foot { display: flex; gap: 8px; justify-content: flex-end; margin-top: 8px; }
.lightbox { position: fixed; inset: 0; background: rgba(20,24,40,.85); z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lightbox .inner { max-width: 90vw; max-height: 80vh; border-radius: 12px; overflow: hidden; }
.lightbox img { max-width: 90vw; max-height: 80vh; display: block; }
.lightbox .bar { position: absolute; bottom: 24px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100; display: grid; gap: 8px; }
.toast { background: #1c1f2b; color: #fff; padding: 10px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow); animation: up .2s ease-out; }
.toast.err { background: var(--danger); } .toast.ok { background: var(--ok); }
@keyframes up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* tables */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
.plus { color: var(--ok); font-weight: 700; } .minus { color: var(--danger); font-weight: 700; }

/* home */
.hero { padding: 48px 0 24px; text-align: center; }
.hero h1 { font-size: 40px; line-height: 1.15; margin-bottom: 12px; }
@media (max-width: 600px) { .hero h1 { font-size: 30px; } }
.hero p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto 24px; }
.steps { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 24px; }
.steps .card b { display: block; font-size: 15px; margin-bottom: 4px; }
.steps .n { display: inline-flex; width: 28px; height: 28px; border-radius: 999px; background: var(--brand); color: #fff; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 10px; }
.plans { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.plans ul { padding-left: 18px; margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.stat { display: grid; gap: 4px; }
/* card title: the first line of a stat card is a label, so it reads as one */
.stat > span.muted.small:first-child { font-weight: 800; color: var(--ink); font-size: 13px; letter-spacing: -.01em; margin-bottom: 2px; }
.stat b { font-size: 32px; letter-spacing: -.02em; }

/* footer */
.site-foot { text-align: center; color: var(--muted); font-size: 12px; padding: 20px 16px 28px; border-top: 1px solid var(--line); margin-top: 24px; }
.site-foot .brandmark { color: var(--ink); font-weight: 800; font-size: 13px; letter-spacing: -.01em; }
a.brandmark { text-decoration: none; }
a.brandmark:hover { text-decoration: underline; text-underline-offset: 2px; }
.site-foot .foot-social { display: flex; justify-content: center; margin-bottom: 10px; }
.site-foot .foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); color: var(--muted); background: var(--card); transition: .15s; }
.site-foot .foot-social a:hover { color: var(--ink); border-color: #cdd2e0; }
.site-foot .foot-social svg { width: 18px; height: 18px; }
.site-foot .foot-links { margin-top: 8px; }
.site-foot .foot-links a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.site-foot .foot-links .sep { margin: 0 8px; }
.terms-note { background: #fef1ed; border: 1px solid rgba(244, 85, 30, .16); border-radius: 4px; padding: 10px 14px; font-size: 13.5px; color: var(--ink); line-height: 1.5; }
.terms-note .rn-head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.terms-note .rn-head svg { width: 17px; height: 17px; flex: none; }
.terms-note .rn-head b { font-weight: 600; }
.terms-note > div { min-width: 0; }
.terms-note p { margin: 0 0 3px; }
.terms-note .tn-list { margin: 0; padding-left: 18px; display: grid; gap: 2px; }
.terms-note .strong { font-weight: 700; color: #c2410c; }
.terms-note .tn-list li.strong::marker { color: var(--ink); }

.terms-note .terms-foot { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.terms-note .terms-links { margin-left: auto; display: flex; gap: 12px; flex: none; }
.terms-note details.banned { display: inline-block; }
.terms-note details.banned summary { cursor: pointer; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; list-style: none; }
.terms-note details.banned summary::-webkit-details-marker { display: none; }
.terms-note details.banned[open] summary { color: var(--ink); }
.terms-note details.banned ul { margin: 4px 0 2px; padding-left: 18px; display: grid; gap: 1px; color: var(--muted); }
.terms-note .terms-link { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.terms-note label { display: flex; gap: 7px; align-items: flex-start; font-weight: 700; cursor: pointer; }
.terms-note label input { margin: 3px 0 0; }
@media (max-width: 560px) { .terms-note .terms-links { margin-left: 0; } }
.report-note { background: #fef1ed; border: 1px solid rgba(244, 85, 30, .16); border-radius: 4px; padding: 12px 16px; font-size: 14px; line-height: 1.6; color: var(--ink); margin: -8px 0 16px; }
.report-note .rn-head { display: flex; align-items: center; gap: 6px; }
.report-note .rn-head svg { width: 18px; height: 18px; flex: none; }
.report-note .rn-head b { font-weight: 600; }
.report-note .rn-head .btn { margin-left: auto; }
.report-note ul { margin: 4px 0 0; padding-left: 18px; display: grid; gap: 2px; }
.terms-page h2 { font-size: 18px; margin: 28px 0 8px; }
.terms-page p, .terms-page li { font-size: 15px; line-height: 1.65; color: var(--ink); }
.terms-page ul { padding-left: 20px; }
.terms-page .updated { color: var(--muted); font-size: 13px; }

main.page { padding-bottom: 40px; }

/* home: demo + steps */
.demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin: 28px auto 0; max-width: 860px; }
.demo .shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; background: #fff; }
.demo .shot img { display: block; width: 100%; height: auto; }
.demo .shot .tag { position: absolute; top: 10px; left: 10px; background: rgba(28,31,43,.78); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.demo .arrow { font-size: 28px; color: var(--brand); font-weight: 800; }
@media (max-width: 640px) { .demo { grid-template-columns: 1fr; } .demo .arrow { text-align: center; transform: rotate(90deg); } }
.how { margin-top: 44px; }
.how h2 { text-align: center; margin-bottom: 18px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .how-steps { grid-template-columns: 1fr; } }
.how-step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; box-shadow: var(--shadow); position: relative; }
.how-step .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.how-step .step { font-size: 12px; font-weight: 800; color: var(--brand); letter-spacing: .08em; text-transform: uppercase; }
.how-step h3 { margin: 4px 0 6px; font-size: 18px; letter-spacing: -.01em; }
.how-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.how-step .ico { color: var(--brand); }
.how-step .ico svg { width: 26px; height: 26px; }
.how-step h3 { margin-bottom: 0; }
.demo .arrow svg { display: block; }
/* fix: demo grid must not blow out the page width (img intrinsic 712px) */
.demo { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
.demo .shot { min-width: 0; }
.demo .shot img { max-width: 100%; }
@media (max-width: 640px) { .demo .arrow { transform: none; } .demo .arrow svg { transform: rotate(90deg); margin: 0 auto; } }
.hero { padding: 40px 0 8px; }
.how { margin-top: 36px; }
/* before/after compare slider */
.compare { position: relative; max-width: 860px; margin: 28px auto 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 1400 / 933; user-select: none; touch-action: none; background: #fff; }
.compare .layer { position: absolute; inset: 0; }
.compare .layer img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare .after { clip-path: inset(0 0 0 var(--pos)); }
.compare .divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15); transform: translateX(-1px); }
.compare .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 999px; background: #fff; color: var(--brand); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(20,24,40,.25); }
.compare .knob svg { width: 22px; height: 22px; }
.compare .tag { position: absolute; top: 12px; background: rgba(28,31,43,.78); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; pointer-events: none; }
.compare .tag.l { left: 12px; } .compare .tag.r { right: 12px; }
.compare input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }

/* steps: center content in each box */
.how-step { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 26px 20px; }
.how-step .ico { margin: 0 auto 14px; }
.hero p br { display: inline; }
@media (max-width: 600px) { .hero p br { display: none; } }

/* pricing */
.pricing { margin-top: 44px; }
.pricing h2 { text-align: center; margin-bottom: 18px; }
.plans3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 760px) { .plans3 { grid-template-columns: 1fr; } }
.plan { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.plan.featured { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft), var(--shadow); }
.plan.soon { opacity: .75; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; padding: 3px 12px; border-radius: 999px; }
.plan-name { font-size: 16px; font-weight: 800; }
.soon-tag { display: inline-block; margin-left: 6px; font-size: 11px; font-weight: 700; color: var(--muted); background: #eef0f4; padding: 2px 8px; border-radius: 999px; vertical-align: middle; }
.leave-list { margin: 8px 0 12px; padding-left: 18px; display: grid; gap: 4px; font-size: 14px; color: var(--ink); }
.btn.outline { border-color: var(--brand); color: var(--brand); }
/* logout is the action people actually want here, so it gets the width as well as the colour */
.stat .row .btn.outline { flex: 1; }
.stat .row .btn.quiet { flex: none; }
.btn.outline:hover { background: var(--brand-soft); border-color: var(--brand); }
.btn.quiet { color: var(--muted); }
.btn.quiet:hover { color: var(--ink); }
.btn.danger { border-color: #d9534f; color: #d9534f; }
.btn.danger:hover { background: #fdf2f2; }
.meter { height: 8px; border-radius: 999px; background: #e9ecf4; overflow: hidden; margin: 6px 0 2px; }
.meter i { display: block; height: 100%; background: var(--brand); border-radius: 999px; transition: width .3s; }
.meter i.warn { background: #e8a33d; }
.meter i.full { background: #d9534f; }
.plan-price { font-size: 32px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.plan-price .per { font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-left: 3px; }
.plan ul { list-style: none; padding: 0; margin: 4px 0 8px; color: var(--muted); font-size: 14px; display: grid; gap: 6px; flex: 1; }
.plan ul li { position: relative; padding-left: 24px; }
.plan ul li::before { content: ""; position: absolute; left: 0; top: .2em; width: 16px; height: 16px; background: no-repeat center/15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f5bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E"); }
.plan .btn { width: 100%; }
.plan.soon { opacity: 1; background: #f1f3f8; border-color: #e0e4ee; box-shadow: none; }
.plan.soon .plan-price, .plan.soon .plan-name { color: var(--muted); }
.plan.soon .btn:disabled { cursor: default; background: #e6e9f0; border-color: #e6e9f0; color: var(--muted); opacity: 1; }

.compare-hint { margin: 10px 0 0; text-align: center; }
.compare-hint b { display: block; font-size: 15px; font-weight: 800; color: var(--ink); }
.compare-hint .credit { display: block; margin-top: 4px; font-size: 11px; color: #a3a8b8; }

.plan ul { align-content: start; }

/* guest note: plain panel, no colored stripe */
.guest-note { display: flex; gap: 12px; align-items: flex-start; background: #f7f8fb; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 14px; color: var(--ink); }
.guest-note svg { width: 20px; height: 20px; flex: none; color: var(--muted); margin-top: 2px; }
.guest-note p { margin: 0; color: var(--muted); }
.guest-note label { display: flex; gap: 8px; align-items: center; margin-top: 8px; font-weight: 600; cursor: pointer; }
.file.over-limit { opacity: .55; }
.limit-hint { margin-top: 10px; font-size: 13px; color: var(--warn); font-weight: 600; }

.guest-note .gn-title { display: block; font-size: 14px; margin-bottom: 6px; }
.guest-note ul { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 4px; }
.guest-note label { margin-top: 10px; }
