/* support.css — support-page-specific styles (extracted from inline <style>
   in support.html because the site CSP's style-src has no 'unsafe-inline') */

/* ── HERO ─────────────────────────────── */
.support-hero {
    text-align: center; padding: 120px 24px 72px;
    border-bottom: 1px solid var(--bd); position: relative;
}
.support-hero::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 350px;
    background: radial-gradient(ellipse at 50% 0%, rgba(34,211,238,.05) 0%, transparent 70%);
    pointer-events: none;
}
.support-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px,6vw,60px); font-weight: 800; letter-spacing: -2px;
    color: var(--wh); margin: 0 0 14px; line-height: 1.05; position: relative;
}
.support-hero p { font-size: 15px; color: var(--mu); max-width: 480px; margin: 0 auto 36px; line-height: 1.75; position: relative; }
.hero-search {
    display: flex; max-width: 460px; margin: 0 auto;
    background: var(--s1); border: 1px solid var(--bd2); border-radius: 10px; overflow: hidden;
    position: relative;
}
.hero-search input {
    flex: 1; background: none; border: none; outline: none;
    padding: 13px 16px; color: var(--wh); font-size: 14px; font-family: inherit;
}
.hero-search input::placeholder { color: var(--mu); }
.hero-search button {
    background: var(--ac); border: none; padding: 0 20px;
    color: var(--black); cursor: pointer; font-size: 13px; font-weight: 700;
    font-family: inherit; transition: opacity .2s;
}
.hero-search button:hover { opacity: .88; }

/* ── CHANNELS ─────────────────────────── */
.channels {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    max-width: 940px; margin: 0 auto; padding: 64px 24px 56px;
}
@media(max-width:700px) { .channels { grid-template-columns: 1fr; } }
.channel-card {
    background: var(--s1); border: 1px solid var(--bd);
    border-radius: 14px; padding: 28px 24px; text-align: center; transition: border-color .2s;
}
.channel-card:hover { border-color: var(--bd2); }
.channel-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 16px; }
.ch-blue   { background: var(--acd); color: var(--ac); }
.ch-green  { background: rgba(74,222,128,.1); color: #4ade80; }
.ch-purple { background: rgba(167,139,250,.1); color: #a78bfa; }
.channel-card h3 { font-size: 15px; font-weight: 700; color: var(--wh); margin: 0 0 8px; }
.channel-card p { font-size: 13px; color: var(--mu); line-height: 1.65; margin: 0 0 20px; }
.ch-badge { display: inline-block; background: var(--acd); color: var(--ac); border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; margin-bottom: 16px; }
.ch-badge-green  { background: rgba(74,222,128,.1); color: #4ade80; }
.ch-badge-purple { background: rgba(167,139,250,.1); color: #a78bfa; }
.ch-badge-dot { font-size: 7px; }
.ch-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity .2s, border-color .2s, color .2s; cursor: pointer; }
.ch-btn-blue { background: var(--ac); color: var(--black); }
.ch-btn-blue:hover { opacity: .88; }
.ch-btn-outline { background: transparent; color: var(--su); border: 1px solid var(--bd2); }
.ch-btn-outline:hover { border-color: rgba(255,255,255,.28); color: var(--wh); }

/* ── STATUS BAR ───────────────────────── */
.status-bar { max-width: 940px; margin: 0 auto 64px; padding: 0 24px; }
.status-indicator { background: rgba(74,222,128,.04); border: 1px solid rgba(74,222,128,.18); border-radius: 12px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; font-size: 13px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.5); flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.45} }
.status-indicator strong { color: #4ade80; }
.status-indicator span { color: var(--mu); }

/* ── DOCS GRID ────────────────────────── */
.docs-wrap { max-width: 940px; margin: 0 auto; padding: 0 24px 80px; }
.docs-wrap h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -.5px; color: var(--wh); margin-bottom: 20px; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media(max-width:640px) { .docs-grid { grid-template-columns: 1fr; } }
.doc-card { background: var(--s1); border: 1px solid var(--bd); border-radius: 12px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; text-decoration: none; color: inherit; transition: border-color .2s; }
.doc-card:hover { border-color: var(--bd2); }
.doc-card i { font-size: 16px; color: var(--ac); margin-top: 2px; flex-shrink: 0; }
.doc-card h4 { font-size: 13px; font-weight: 700; color: var(--wh); margin: 0 0 4px; }
.doc-card p { font-size: 12px; color: var(--mu); margin: 0; line-height: 1.55; }

/* ── FAQ ──────────────────────────────── */
.faq-wrap { max-width: 700px; margin: 0 auto; padding: 0 24px 100px; }
.faq-wrap h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -.5px; color: var(--wh); text-align: center; margin-bottom: 32px; }
.faq-item { border: 1px solid var(--bd); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { width: 100%; background: var(--s1); border: none; color: var(--wh); text-align: left; padding: 18px 20px; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background .15s; }
.faq-q:hover { background: var(--s2); }
.faq-q i { color: var(--ac); font-size: 12px; transition: transform .25s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 13px; color: var(--mu); line-height: 1.75; background: var(--s1); }
.faq-a.open { display: block; }
.faq-a a { color: var(--ac); }

@media(max-width:640px) { .support-hero h1 { letter-spacing: -1.5px; } }
