/* Cyberiada Chat product page */
.cc-hero-note { margin:18px 0 0; color:var(--muted); font-size:14px; }
.cc-chat-card { transform:rotate(1deg); }
.cc-chat-head { display:flex; align-items:center; gap:8px; padding:11px 12px; border:1px solid var(--ink); border-bottom:0; background:var(--paper-2); font-size:13px; }
.cc-chat-head small { margin-left:auto; color:var(--green-dark); font-weight:800; }
.cc-status-dot { width:9px; height:9px; border-radius:50%; background:var(--green); border:1px solid var(--ink); }
.cc-chat-messages { border:1px solid var(--ink); padding:15px; display:flex; flex-direction:column; gap:10px; background:var(--paper); min-height:230px; }
.cc-message { max-width:88%; padding:10px 12px; border:1px solid var(--ink); background:var(--white); font-size:13px; line-height:1.38; }
.cc-message--user { align-self:flex-end; background:var(--green); }
.cc-source-grid { display:grid; grid-template-columns:repeat(3,1fr); border-left:1px solid var(--ink); border-top:1px solid var(--ink); }
.cc-source { min-height:260px; padding:28px; border-right:1px solid var(--ink); border-bottom:1px solid var(--ink); background:var(--white); }
.cc-source>span { font-family:Georgia,serif; font-style:italic; color:var(--muted); }
.cc-source h3 { margin:34px 0 12px; font-size:30px; line-height:1; letter-spacing:-.04em; }
.cc-source p { margin:0; color:var(--muted); }
.cc-note { margin-top:28px; display:grid; grid-template-columns:240px 1fr; gap:26px; padding:24px; border:1px solid var(--ink); background:var(--green); box-shadow:var(--shadow); }
.cc-channel-grid { display:grid; grid-template-columns:repeat(2,1fr); border-left:1px solid #5a5d57; border-top:1px solid #5a5d57; }
.cc-channel { min-height:300px; padding:32px; border-right:1px solid #5a5d57; border-bottom:1px solid #5a5d57; }
.cc-channel-icon { width:60px; height:60px; display:grid; place-items:center; border:1px solid var(--green); color:var(--green); font-weight:900; font-size:18px; }
.cc-channel h3 { margin:38px 0 12px; font-size:36px; letter-spacing:-.04em; }
.cc-channel p { margin:0; color:#b7bab1; max-width:50ch; }
.cc-table-wrap { overflow-x:auto; border:1px solid var(--ink); background:var(--white); }
.cc-compare { width:100%; min-width:760px; border-collapse:collapse; }
.cc-compare th,.cc-compare td { padding:19px 20px; border-right:1px solid var(--ink); border-bottom:1px solid var(--ink); text-align:left; vertical-align:top; }
.cc-compare th:last-child,.cc-compare td:last-child { border-right:0; }
.cc-compare tr:last-child td { border-bottom:0; }
.cc-compare th { background:var(--paper-2); font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.cc-compare th:last-child { background:var(--green); }
.cc-boundary-grid { display:grid; grid-template-columns:repeat(2,1fr); border-left:1px solid var(--ink); border-top:1px solid var(--ink); }
.cc-boundary-grid article { padding:30px; border-right:1px solid var(--ink); border-bottom:1px solid var(--ink); background:rgba(255,255,255,.25); }
.cc-boundary-grid strong { font-size:28px; letter-spacing:-.03em; }
.cc-boundary-grid ul { margin:24px 0 0; padding-left:22px; }
.cc-boundary-grid li { margin:10px 0; }
.cc-custom-note { margin:28px 0 0; font-size:18px; }
.cc-custom-note a { text-underline-offset:4px; }
.cc-pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); border-left:1px solid var(--ink); border-top:1px solid var(--ink); }
.cc-price-card { position:relative; min-height:440px; padding:28px; border-right:1px solid var(--ink); border-bottom:1px solid var(--ink); background:var(--white); display:flex; flex-direction:column; }
.cc-price-card--featured { background:var(--green); }
.cc-recommended { position:absolute; right:0; top:0; padding:7px 10px; background:var(--ink); color:var(--white); font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.cc-price-name { font-size:13px; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }
.cc-price { margin-top:30px; font-size:42px; font-weight:900; letter-spacing:-.055em; }
.cc-price-period { color:var(--muted); font-size:14px; }
.cc-price-card ul { margin:28px 0 32px; padding-left:20px; }
.cc-price-card li { margin:9px 0; }
.cc-price-card .button { margin-top:auto; width:100%; }
.cc-price-footnote { margin:18px 0 0; color:var(--muted); font-size:14px; }
.cc-faq { border-top:1px solid #5a5d57; }
.cc-faq details { border-bottom:1px solid #5a5d57; }
.cc-faq summary { cursor:pointer; list-style:none; padding:24px 48px 24px 0; font-size:22px; font-weight:800; position:relative; }
.cc-faq summary::-webkit-details-marker { display:none; }
.cc-faq summary::after { content:'+'; position:absolute; right:4px; top:20px; color:var(--green); font-size:30px; font-weight:400; }
.cc-faq details[open] summary::after { content:'−'; }
.cc-faq p { margin:0; padding:0 50px 24px 0; color:#c8cabf; max-width:900px; }
@media (max-width:1000px) {
  .cc-source-grid { grid-template-columns:1fr; }
  .cc-pricing-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:760px) {
  .cc-note { grid-template-columns:1fr; }
  .cc-channel-grid,.cc-boundary-grid,.cc-pricing-grid { grid-template-columns:1fr; }
  .cc-price-card { min-height:auto; }
  .cc-chat-messages { min-height:0; }
  .cc-faq summary { font-size:19px; }
}