/* ============================================================
   StreamGoat — Shared Stylesheet (sg.css)
   ============================================================ */
:root {
  --bg: #070B12;
  --text: #EAF4FF;
  --muted: rgba(234,244,255,.68);
  --muted2: rgba(234,244,255,.46);
  --b1: #4FC8FF;
  --b2: #1D8BFF;
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --r: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Rajdhani, system-ui, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(79,200,255,.14), transparent 60%),
    radial-gradient(900px 600px at 85% 35%, rgba(29,139,255,.11), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(79,200,255,.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #060912 50%, #050712 100%);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* NAV */
.topbar { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px); background: rgba(7,11,18,.68); border-bottom: 1px solid rgba(79,200,255,.10); }
.nav { max-width: 1100px; margin: 0 auto; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; }
.brand-logo { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(90,184,255,.35)); }
.brand-name { font-family: Orbitron, sans-serif; font-weight: 900; font-size: 13px; letter-spacing: .05em; }
.brand-sub { display: block; font-size: 9.5px; color: rgba(234,244,255,.38); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-top: 1px; }
.links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.links a { color: var(--muted); text-decoration: none; font-weight: 700; letter-spacing: .08em; font-size: 12px; padding: 8px 10px; border-radius: 999px; border: 1px solid transparent; transition: .15s; }
.links a:hover { color: var(--text); border-color: rgba(79,200,255,.18); background: rgba(79,200,255,.06); }
.links a.active { color: var(--text); border-color: rgba(79,200,255,.22); background: rgba(79,200,255,.08); }

/* LAYOUT */
.wrap { max-width: 1100px; margin: 0 auto; padding: 44px 18px 90px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin: 10px 0 26px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(79,200,255,.18); background: rgba(79,200,255,.06); color: var(--muted); letter-spacing: .22em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--b1); box-shadow: 0 0 16px rgba(79,200,255,.9); flex-shrink: 0; }
.dot-good { background: #2CFFB2; box-shadow: 0 0 16px rgba(44,255,178,.9); }
h1 { font-family: Orbitron, sans-serif; font-weight: 900; letter-spacing: .06em; font-size: clamp(34px, 5.8vw, 62px); line-height: 1.02; background: linear-gradient(180deg, #fff 0%, var(--b1) 50%, var(--b2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 28px rgba(79,200,255,.28)); }
.sub, .hero-sub { color: var(--muted); font-weight: 600; font-size: 15px; max-width: 820px; }

/* BUTTONS */
.actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.abtn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; padding: 13px 22px; border-radius: 14px; border: 1px solid rgba(79,200,255,.18); color: var(--text); background: rgba(79,200,255,.08); transition: .15s; white-space: nowrap; }
.abtn:hover { transform: translateY(-1px); background: rgba(79,200,255,.13); border-color: rgba(79,200,255,.3); }
.abtn.pri { color: #06101d; background: linear-gradient(135deg, var(--b1), var(--b2)); border-color: transparent; box-shadow: 0 14px 40px rgba(79,200,255,.2); }
.abtn.pri:hover { filter: brightness(1.06); }
.btn { display: inline-flex; justify-content: center; align-items: center; text-decoration: none; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; padding: 12px 20px; border-radius: 14px; border: 1px solid rgba(79,200,255,.18); color: var(--text); background: rgba(79,200,255,.08); transition: .15s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); background: rgba(79,200,255,.13); border-color: rgba(79,200,255,.3); }

/* CONTENT CARD */
.ccard { border-radius: var(--r); background: linear-gradient(180deg, rgba(12,22,40,.9), rgba(10,16,30,.75)); border: 1px solid rgba(79,200,255,.14); box-shadow: var(--shadow); overflow: hidden; position: relative; }
.ccard::before { content: ""; position: absolute; inset: -1px; border-radius: var(--r); background: radial-gradient(700px 200px at 40% 0%, rgba(79,200,255,.12), transparent 55%); pointer-events: none; z-index: 0; }
.ccard > * { position: relative; z-index: 1; }
.ccard-body { padding: 36px 40px 40px; }
@media (max-width: 700px) { .ccard-body { padding: 24px 20px 28px; } }

/* CARD (generic) */
.card { border-radius: var(--r); background: linear-gradient(180deg, rgba(12,22,40,.9), rgba(10,16,30,.75)); border: 1px solid rgba(79,200,255,.14); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: -1px; border-radius: var(--r); background: radial-gradient(700px 200px at 40% 0%, rgba(79,200,255,.12), transparent 55%); pointer-events: none; z-index: 0; }
.card > * { position: relative; z-index: 1; }
.cardPad { padding: 26px 28px 28px; }
.panelTitle { font-family: Orbitron, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; color: var(--b1); margin: 0 0 18px; }

/* DOC STYLES */
.doc { color: var(--muted); line-height: 1.78; font-size: 15px; font-weight: 600; }
.doc h2 { font-family: Orbitron, sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; color: var(--b1); margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(79,200,255,.12); }
.doc h2:first-child { margin-top: 0; }
.doc p { margin: 0 0 10px; }
.doc p:last-child { margin-bottom: 0; }
.doc strong { color: var(--text); }
.doc ul, .doc ol { margin: 0 0 12px; padding-left: 22px; }
.doc li { margin-bottom: 6px; }
.doc a { color: var(--b1); text-decoration: none; }
.doc a:hover { text-decoration: underline; }

/* META / BADGES */
.meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid rgba(79,200,255,.10); }
.mbadge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(79,200,255,.18); background: rgba(79,200,255,.06); color: var(--muted); font-size: 12px; font-weight: 700; }
.mbadge strong { color: var(--text); }
.sbadge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: var(--muted); font-size: 12px; font-weight: 650; }
.sbadge strong { color: var(--text); }

/* WARN BOX */
.warn-box { background: rgba(255,90,122,.07); border: 1px solid rgba(255,90,122,.24); border-radius: 14px; padding: 16px 18px; margin: 18px 0; color: rgba(234,244,255,.88); font-size: 14px; line-height: 1.65; }

/* GLANCE GRID */
.glance-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 16px; }
@media (max-width: 600px) { .glance-grid { grid-template-columns: 1fr; } }
.glance-item { padding: 14px 16px; border-radius: 14px; background: rgba(44,255,178,.06); border: 1px solid rgba(44,255,178,.16); display: flex; align-items: flex-start; gap: 10px; }
.glance-check { color: #2CFFB2; font-size: 16px; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.glance-text { color: var(--muted); font-weight: 650; font-size: 13px; line-height: 1.4; }

/* FEAT CARD */
.feat-card { padding: 16px 18px; border-radius: 16px; background: rgba(79,200,255,.05); border: 1px solid rgba(79,200,255,.12); }
.feat-card h3 { font-family: Orbitron, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .06em; color: var(--b1); margin-bottom: 8px; }
.feat-card p { color: var(--muted); font-size: 13.5px; font-weight: 600; line-height: 1.5; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 22px; }
@media (max-width: 780px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { padding: 18px; border-radius: 16px; background: rgba(79,200,255,.05); border: 1px solid rgba(79,200,255,.12); }
.faq-q { font-family: Orbitron, sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .06em; color: var(--text); margin-bottom: 8px; }
.faq-a { color: var(--muted); font-size: 13.5px; font-weight: 600; line-height: 1.55; }
.faq-a code, code { font-family: ui-monospace, monospace; background: rgba(79,200,255,.1); padding: 2px 6px; border-radius: 4px; font-size: 12px; color: var(--b1); }

/* CONTACT */
.contact-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.contact-card { flex: 1; min-width: 200px; padding: 18px; border-radius: 16px; background: rgba(79,200,255,.05); border: 1px solid rgba(79,200,255,.12); text-align: center; }
.contact-card .cc-icon { font-size: 28px; margin-bottom: 8px; }
.contact-card .cc-label { font-family: Orbitron, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
.contact-card .cc-val { color: var(--b1); font-weight: 700; font-size: 14px; text-decoration: none; cursor: pointer; }
.contact-card .cc-val:hover { text-decoration: underline; }

/* PRODUCT / MERCH */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 780px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { border-radius: 18px; background: linear-gradient(180deg, rgba(12,22,40,.85), rgba(10,16,30,.7)); border: 1px solid rgba(79,200,255,.12); padding: 18px; }
.product-img { height: 200px; border-radius: 12px; background: rgba(12,22,40,.6); border: 1px solid rgba(79,200,255,.12); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 14px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.product-img-fallback { color: var(--muted2); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-name { font-family: Orbitron, sans-serif; font-size: 13px; font-weight: 900; letter-spacing: .04em; margin-bottom: 6px; }
.product-desc { color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.5; }

/* 2COL HERO */
.hero-2col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; margin-bottom: 50px; text-align: left; }
@media (max-width: 900px) { .hero-2col { grid-template-columns: 1fr; text-align: center; } }
.hero-2col h1 { font-size: clamp(36px, 5vw, 60px); }
.hero-2col .actions { justify-content: flex-start; }
@media (max-width: 900px) { .hero-2col .actions { justify-content: center; } }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 900px) { .badge-row { justify-content: center; } }

/* DOWNLOAD PAGE */
.heroGrid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; align-items: start; padding: 52px 0 36px; }
@media (max-width: 900px) { .heroGrid { grid-template-columns: 1fr; padding: 40px 0 28px; } }
.h1 { font-family: Orbitron, sans-serif; font-weight: 900; letter-spacing: .04em; font-size: clamp(36px, 5vw, 60px); line-height: 1.04; background: linear-gradient(180deg, #fff 0%, var(--b1) 50%, var(--b2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 28px rgba(79,200,255,.28)); margin: 18px 0 14px; }
.lead { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 560px; font-weight: 600; }
.note { margin-top: 12px; font-size: 13px; color: var(--muted2); font-weight: 650; }
.small { color: var(--muted2); font-size: 13px; line-height: 1.6; font-weight: 650; }
.bigButton { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-radius: 16px; border: 1px solid rgba(79,200,255,.22); background: rgba(79,200,255,.05); text-decoration: none; color: var(--text); transition: .15s; }
a.bigButton:hover { background: rgba(79,200,255,.09); border-color: rgba(79,200,255,.38); }
.bigButton.disabled { opacity: .5; cursor: not-allowed; user-select: none; }
.bigButton .l { display: flex; flex-direction: column; gap: 4px; }
.bigButton .l strong { font-family: Orbitron, sans-serif; font-size: 13px; font-weight: 900; letter-spacing: .03em; }
.bigButton .l span { font-size: 13px; color: var(--muted2); }
.bigButton .r { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(79,200,255,.08); border: 1px solid rgba(79,200,255,.18); color: var(--muted); font-weight: 800; letter-spacing: .10em; text-transform: uppercase; font-size: 11px; white-space: nowrap; flex-shrink: 0; }
a.bigButton:not(.disabled) .r { color: #06101d; background: linear-gradient(135deg, var(--b1), var(--b2)); border-color: transparent; }
.section { padding: 0 0 28px; }
.section h2 { font-family: Orbitron, sans-serif; font-size: 16px; font-weight: 900; letter-spacing: .06em; margin: 0 0 10px; }
.section p { margin: 0; color: var(--muted); line-height: 1.65; font-weight: 600; font-size: 14px; }

/* DIVIDER */
.hr { height: 1px; background: linear-gradient(90deg, transparent, rgba(79,200,255,.22), transparent); margin: 32px 0; }

/* FOOTER */
.footer { margin-top: 40px; color: var(--muted2); font-weight: 650; font-size: 12px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-bottom: 20px; }
.footer a { color: var(--b1); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* COPY EMAIL TOAST */
.copy-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: rgba(12,22,40,.95); border: 1px solid rgba(79,200,255,.3); color: var(--b1); font-family: Orbitron, sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .12em; padding: 12px 22px; border-radius: 999px; opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none; z-index: 999; }
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* TOGGLES */
.toggles { margin-top: 10px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
