:root {
  --orobi-v2-ink: #172033;
  --orobi-v2-muted: #607086;
  --orobi-v2-line: rgba(23, 32, 51, .16);
  --orobi-v2-panel: #ffffff;
  --orobi-v2-soft: #f5f7fb;
  --orobi-v2-accent: #126c61;
  --orobi-v2-accent-2: #243b73;
}
.orobi-demo-v2-root {
  font-family: "Pretendard", "Noto Sans KR", "Segoe UI", system-ui, sans-serif;
  color: var(--orobi-v2-ink);
}
.orobi-demo-v2-root * { box-sizing: border-box; }
.orobi-demo-notice-v2-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 18, 31, .48);
}
.orobi-demo-notice-v2-backdrop[hidden],
.orobi-demo-notice-v2-backdrop.is-hidden { display: none !important; }
.orobi-demo-notice-v2-dialog {
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
  padding: 22px;
}
.orobi-demo-notice-v2-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.orobi-demo-notice-v2-eyebrow,
.orobi-demo-comm-v2-eyebrow {
  margin: 0 0 7px;
  color: var(--orobi-v2-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.orobi-demo-notice-v2-dialog h2,
.orobi-demo-comm-v2-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}
.orobi-demo-notice-v2-body {
  display: grid;
  gap: 10px;
  color: var(--orobi-v2-muted);
  font-size: 14px;
  line-height: 1.68;
}
.orobi-demo-notice-v2-actions,
.orobi-demo-comm-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.orobi-demo-v2-button {
  min-height: 38px;
  border: 1px solid var(--orobi-v2-line);
  border-radius: 10px;
  background: #fff;
  color: var(--orobi-v2-ink);
  padding: 0 13px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.orobi-demo-v2-button.primary {
  border-color: var(--orobi-v2-accent);
  background: var(--orobi-v2-accent);
  color: #fff;
}
.orobi-demo-v2-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}
.orobi-demo-comm-v2-shell {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 2147482990;
  width: min(380px, calc(100vw - 32px));
  display: grid;
  justify-items: end;
  gap: 10px;
}
.orobi-demo-comm-v2-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: #101827;
  color: #fff;
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
  padding: 0 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.orobi-demo-comm-v2-panel {
  width: 100%;
  border: 1px solid var(--orobi-v2-line);
  border-radius: 18px;
  background: var(--orobi-v2-panel);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  padding: 16px;
}
.orobi-demo-comm-v2-panel[hidden],
.orobi-demo-comm-v2-shell.is-minimized .orobi-demo-comm-v2-panel { display: none !important; }
.orobi-demo-comm-v2-panel p {
  margin: 8px 0;
  color: var(--orobi-v2-muted);
  font-size: 13px;
  line-height: 1.62;
}
.orobi-demo-comm-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 10px 0;
}
.orobi-demo-comm-v2-topic {
  min-height: 34px;
  border: 1px solid var(--orobi-v2-line);
  border-radius: 9px;
  background: var(--orobi-v2-soft);
  color: var(--orobi-v2-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.orobi-demo-comm-v2-panel textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 1px solid var(--orobi-v2-line);
  border-radius: 12px;
  padding: 10px;
  color: var(--orobi-v2-ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  line-height: 1.5;
}
.orobi-demo-comm-v2-status {
  min-height: 18px;
  color: var(--orobi-v2-accent-2);
  font-size: 12px;
  font-weight: 800;
}
.orobi-demo-v2-state-proof {
  display: none;
}
@media (max-width: 520px) {
  .orobi-demo-notice-v2-backdrop { align-items: end; padding: 12px; }
  .orobi-demo-notice-v2-dialog { border-radius: 16px; padding: 18px; }
  .orobi-demo-comm-v2-shell { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
  .orobi-demo-comm-v2-grid { grid-template-columns: 1fr; }
}
