
/* beta-banner + header/nav stick together as one unit at the top of the viewport */
.sa-sticky-top{
  position: sticky;
  top: 0;
  z-index: 9999;
}

.beta-banner {
  width: 100%;
  background: linear-gradient(
  135deg,
  #8e949b 0%,
  #cfd4da 18%,
  #f5f7fa 35%,
  #bfc5cc 50%,
  #eef1f4 65%,
  #9aa0a8 100%);
  color: black;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  box-sizing: border-box;
}
.beta-banner p{ margin: 0; font: inherit; }

.sa-header{
  background: var(--sa-ink);
  border-bottom: 1px solid var(--sa-ink-3);
}

body{ margin: 0; }

/* skip-to-content link: off-screen until keyboard-focused */
.sa-skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--sa-arrow-2); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 0;
  font-family: var(--sa-body); font-size: 14px; font-weight: 600;
  text-decoration: none;
  z-index: 10000;
}
.sa-skip-link:focus{ left: 0; }

/* small mark banner: sits below the fixed beta-banner, above the video banner */
.sa-mini-mark{
  display:flex; justify-content:center; align-items:center;
  padding: 14px 24px;
  background:#0C1030;
  animation: sa-rise .8s cubic-bezier(.2,.7,.2,1) both;
}

/* top-of-page video banner (sits above the nav, outside .sa-root) */
.sa-top-mark{
  position: relative;
  overflow: hidden;
  line-height: 0;
  background:#0C1030;
  animation: sa-rise .8s cubic-bezier(.2,.7,.2,1) both;
}
.sa-top-mark-video{
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}
.sa-top-mark::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,16,48,.2), rgba(12,16,48,.55));
  z-index: 0;
  pointer-events: none;
}

:root{
  --sa-ink:      #0C1030;   /* deep twilight base            */
  --sa-ink-2:    #141A44;   /* raised panels                 */
  --sa-ink-3:    #1B2358;   /* borders / hairlines           */
  --sa-silver:   #EAECF6;   /* primary text                  */
  --sa-muted:    #9BA2C7;   /* secondary text                */
  --sa-arrow:    #7C93FF;   /* the arrow light (accent)      */
  --sa-arrow-2:  #4257D6;   /* deeper accent for gradients   */
  --sa-glow:     rgba(124,147,255,.35);

  --sa-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --sa-body:    "Inter", system-ui, -apple-system, sans-serif;
  --sa-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  --sa-maxw: 1120px;
}
.sa-root{
  background: var(--sa-ink);
  color: var(--sa-silver);
  font-family: var(--sa-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.sa-root *{ box-sizing: border-box; }
.sa-root a{ color: inherit; text-decoration: none; }

/* .sa-header lives outside .sa-root (so the sticky wrapper can pin it above
   the hero's overflow:hidden), so it needs its own copy of these resets */
.sa-header *{ box-sizing: border-box; }
.sa-header a{ color: inherit; text-decoration: none; }

/* ---- shared layout ---- */
.sa-wrap{ max-width: var(--sa-maxw); margin: 0 auto; padding: 0 24px; }
.sa-eyebrow{
  font-family: var(--sa-mono);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sa-arrow);
}

/* ---- top bar ---- */
.sa-nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 0;
}
.sa-brand{
  display:flex; align-items:center; gap:10px; font-family:var(--sa-display); font-weight:700; font-size:19px; letter-spacing:-.01em;
  background: linear-gradient(135deg, #8e949b 0%, #cfd4da 18%, #f5f7fa 35%, #bfc5cc 50%, #eef1f4 65%, #9aa0a8 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.sa-brand svg{ width:22px; height:26px; }
.sa-navlinks{ display:flex; gap:24px; font-size:13px; letter-spacing:.03em; text-transform:uppercase; color:var(--sa-muted);}
.sa-navlinks a:hover{ color:var(--sa-silver); }

/* ==================== HERO ==================== */
.sa-hero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% 8%, rgba(124,147,255,.16), transparent 60%),
    radial-gradient(700px 480px at 12% 96%, rgba(66,87,214,.14), transparent 60%),
    var(--sa-ink);
  border-bottom: 1px solid var(--sa-ink-3);
}
.sa-hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 46px 0 76px;
}
.sa-hero-copy{ max-width: 560px; }
/* used on secondary pages (about/privacy/terms/contact/etc.) instead of an
   inline style="" attribute, so the site can run a strict CSP with no
   style-src 'unsafe-inline' */
.sa-hero-copy-sub{ max-width: 640px; padding: 60px 0 40px; }
.sa-h1{
  font-family: var(--sa-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 20px 0 18px;
}
.sa-h1 .sa-accent{ color: var(--sa-arrow); }
.sa-h1-shine{
  background: linear-gradient(135deg, #8e949b 0%, #cfd4da 18%, #f5f7fa 35%, #bfc5cc 50%, #eef1f4 65%, #9aa0a8 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.sa-h1-icon{
  display: inline-block; height: 1em; width: auto;
  vertical-align: -0.15em; margin-right: 0.14em;
}
.sa-sub{
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--sa-muted);
  max-width: 520px;
  margin: 0 0 30px;
}
.sa-cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom: 26px; }
.sa-btn{
  display:inline-flex; align-items:center; gap:9px;
  font-weight:600; font-size:15px;
  padding: 14px 22px; border-radius: 12px;
  border:1px solid transparent; cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.sa-btn-primary{
  background: linear-gradient(180deg, var(--sa-arrow), var(--sa-arrow-2));
  color:#fff; box-shadow: 0 10px 30px -8px var(--sa-glow);
}
.sa-btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 40px -8px var(--sa-glow); }
.sa-btn-ghost{
  background: transparent; color: var(--sa-silver);
  border-color: var(--sa-ink-3);
}
.sa-btn-ghost:hover{ border-color: var(--sa-arrow); color:#fff; }
.sa-btn:disabled{ opacity:.5; cursor:not-allowed; pointer-events:none; }

/* promise chips */
.sa-promise{ display:flex; flex-wrap:wrap; gap:12px; }
.sa-chip{
  display:flex; align-items:center; gap:10px;
  background: var(--sa-ink-2);
  border:1px solid var(--sa-ink-3);
  border-radius: 12px; padding: 11px 14px;
}
.sa-chip svg{ width:18px; height:18px; flex:none; color:var(--sa-arrow); }
.sa-chip b{ font-weight:600; font-size:14px; }
.sa-chip span{ display:block; font-size:12.5px; color:var(--sa-muted); }

/* secondary mark, shown in the hero below the nav */
.sa-hero-mark{
  display:flex; justify-content:center; align-items:center;
  padding: 8px 0 28px;
}
.sa-hero-mark-img{
  width: clamp(140px, 20vw, 200px); height:auto;
  border-radius: 16px;
  filter: drop-shadow(0 20px 50px var(--sa-glow));
}

/* the signature mark (now shown in .sa-top-mark, above the nav) */
.sa-mark-img{
  position: relative;
  z-index: 1;
  width: clamp(120px, 22vw, 180px); height:auto;
  border-radius: 14px;
  filter: drop-shadow(0 16px 40px rgba(124,147,255,.35));
}

@keyframes sa-rise{ from{ opacity:0; transform: translateY(14px);} to{ opacity:1; transform:none; } }
@keyframes sa-pulse{ 0%,100%{ opacity:.55;} 50%{ opacity:1;} }
.sa-hero-copy > *{ animation: sa-rise .7s cubic-bezier(.2,.7,.2,1) both; }
.sa-hero-copy > *:nth-child(2){ animation-delay:.06s; }
.sa-hero-copy > *:nth-child(3){ animation-delay:.12s; }
.sa-hero-copy > *:nth-child(4){ animation-delay:.18s; }
.sa-hero-copy > *:nth-child(5){ animation-delay:.24s; }

/* ==================== WHAT IT DOES ==================== */
.sa-does{ padding: 72px 0; }
.sa-sec-head{ margin-bottom: 34px; max-width: 640px; }
.sa-h2{
  font-family: var(--sa-display); font-weight:700;
  font-size: clamp(26px, 3vw, 36px); letter-spacing:-.02em; margin:12px 0 0;
}
.sa-feature-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.sa-feature{
  background: var(--sa-ink-2); border:1px solid var(--sa-ink-3);
  border-radius:16px; padding: 22px 20px;
  transition: border-color .2s ease, transform .2s ease;
}
.sa-feature:hover{ border-color: var(--sa-arrow); transform: translateY(-3px); }
.sa-feature h3{ font-size:16px; margin:14px 0 6px; font-weight:600; }
.sa-feature p{ font-size:14px; color:var(--sa-muted); margin:0; }
.sa-ficon{
  width:40px; height:40px; border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(180deg, rgba(124,147,255,.22), rgba(66,87,214,.12));
  border:1px solid var(--sa-ink-3);
}
.sa-ficon svg{ width:20px; height:20px; color:var(--sa-arrow); }

/* ==================== THREE PRODUCTS ==================== */
.sa-products{ padding: 8px 0 76px; }
.sa-prod-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:18px; }
.sa-prod{
  background: linear-gradient(180deg, var(--sa-ink-2), rgba(20,26,68,.4));
  border:1px solid var(--sa-ink-3); border-radius:16px; padding:24px 22px;
  display:flex; flex-direction:column; gap:10px;
}
.sa-prod-title{ display:flex; align-items:center; gap:10px; }
.sa-prod-logo{ width:40px; height:40px; object-fit:contain; border-radius:8px; flex:none; }
.sa-prod h3{ font-family:var(--sa-display); font-weight:700; font-size:19px; margin:0; }
.sa-prod p{ font-size:14px; color:var(--sa-muted); margin:0; flex:1; }
.sa-ver{
  font-family:var(--sa-mono); font-size:11.5px; color:var(--sa-arrow);
  letter-spacing:.02em; border-top:1px solid var(--sa-ink-3); padding-top:12px; margin-top:6px;
}
.sa-prod-platforms{ display:flex; align-items:center; gap:10px; }
.sa-prod-platforms img{ width:22px; height:22px; object-fit:contain; border-radius:5px; }
.sa-prod-accent-img{ width:36px; height:36px; object-fit:contain; border-radius:8px; }

/* ==================== SUPPORT ==================== */
.sa-support{
  position:relative; overflow:hidden;
  background:
    radial-gradient(900px 520px at 85% 20%, rgba(124,147,255,.18), transparent 60%),
    linear-gradient(180deg, #0A0E2A, #0C1030);
  border-top:1px solid var(--sa-ink-3);
  padding: 84px 0;
}
.sa-support-inner{ max-width: 760px; }
.sa-support .sa-h2{ font-size: clamp(28px, 3.4vw, 42px); line-height:1.05; }
.sa-support p{ font-size: 17px; color: #C3C8E4; margin: 18px 0; }
.sa-support .sa-cta-row{ margin-top: 30px; margin-bottom:16px; }
.sa-fineprint{ font-size:13px; color: var(--sa-muted); margin:0; }

/* ==================== FOOTER: LOGOS + SOCIAL ==================== */
.site-social-footer{ text-align:center; padding: 8px 0 32px; }
.circular-image{
  width:72px; height:72px; border-radius:50%; object-fit:cover;
  border:2px solid rgba(124,147,255,.4);
}
.circular-image-sm{
  width:40px; height:40px; border-radius:50%; object-fit:cover;
  margin:0 4px; border:1px solid rgba(124,147,255,.3);
}
.social-bar{
  display:flex; flex-direction:column; align-items:center;
  gap:20px; margin-top:16px;
}
.social-row{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:20px;
}
.social-link{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  text-decoration:none; color:inherit; position:relative;
  transition: transform .15s ease, opacity .15s ease;
}
.social-link:hover{ transform: translateY(-2px); }
.social-icon{
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(124,147,255,.12);
  border:1px solid rgba(124,147,255,.3);
  color: inherit;
}
.social-icon svg{ width:20px; height:20px; }
.social-label{ font-size:11.5px; }
.social-placeholder{ opacity:.5; cursor:default; }
.coming-soon-badge{
  position:absolute; top:-6px; right:-6px;
  background:#4257D6; color:#fff; font-size:9px; font-weight:700;
  padding:2px 5px; border-radius:8px; letter-spacing:.02em;
}
.gofundme-icon{ color:#00b04f; }
.youtube-icon{ color:#ff0033; }
.giving-block-icon{ color:#f7931a; }
.kickstarter-icon{ color:#05ce78; }
.discord-icon{ color:#5865F2; }

/* ==================== FOOTER ==================== */
.sa-footer{
  border-top:1px solid var(--sa-ink-3);
  background: #0A0E2A;
}
.sa-footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:14px;
  padding: 26px 0;
}
.sa-footer-links{ display:flex; gap:22px; font-size:14px; color:var(--sa-muted); }
.sa-footer-links a:hover{ color:var(--sa-silver); }
.sa-footer-copy{ font-size:12.5px; color:var(--sa-muted); margin:0; }

/* ==================== LEGAL / DOC CONTENT ==================== */
.sa-legal{ padding: 8px 0 72px; }
.sa-legal-content{ max-width: 760px; }
.sa-legal-content h2{
  font-family: var(--sa-display); font-weight:700; font-size:20px;
  margin: 34px 0 10px; color: var(--sa-silver);
}
.sa-legal-content h2:first-child{ margin-top:0; }
.sa-legal-content p{ font-size:15px; color: var(--sa-muted); margin: 0 0 14px; line-height:1.7; }
.sa-legal-content ul{ margin:0 0 14px; padding-left:20px; }
.sa-legal-content li{ font-size:15px; color: var(--sa-muted); margin-bottom:6px; line-height:1.6; }
.sa-legal-content a{ color: var(--sa-arrow); text-decoration:underline; }
.sa-legal-content strong{ color: var(--sa-silver); }
.sa-legal-content .updated{ color: var(--sa-muted); font-size:13px; margin:0 0 30px; }
.sa-wrap.sa-narrow{ max-width: 760px; }
.sa-mech-intro{ color:var(--sa-muted); font-size:15px; max-width:66ch; margin:-16px 0 28px; }
.sa-notop{ padding-top: 0; }

/* ==================== AI DISCLOSURE NOTICE ==================== */
.sa-ai-section{ padding: 0 0 56px; }
.sa-ai-notice{
  max-width: 820px; margin: 0 auto;
  background: rgba(236,72,153,.06);
  border: 1px solid rgba(236,72,153,.4);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--sa-muted);
}
.sa-ai-notice strong{ color: #EC4899; }
.sa-ai-notice a{ color: #38BDF8; text-decoration: underline; }
.sa-ai-notice a:hover{ color: #7dd3fc; }

/* ==================== CONTACT PAGE ==================== */
.sa-crumb{ font-size:13px; color:var(--sa-muted); margin:0 0 14px; }
.sa-crumb a{ color:var(--sa-arrow); text-decoration:underline; }
.sa-crumb a:hover{ color:var(--sa-silver); }

.sa-contact-media{ padding: 8px 0 12px; }
.sa-contact-media-card{
  max-width:560px; margin:0 auto; padding:0; overflow:hidden;
  border-radius:16px; border:1px solid var(--sa-ink-3);
  background: var(--sa-ink-2);
  animation: sa-rise .7s cubic-bezier(.2,.7,.2,1) both;
}
.sa-contact-media-card video{ display:block; width:100%; height:auto; }

.sa-ticket-card{
  position: relative;
  background: linear-gradient(180deg, var(--sa-ink-2), rgba(20,26,68,.4));
  border: 1px solid var(--sa-ink-3);
  border-radius: 16px;
  padding: 28px 26px;
  margin-bottom: 44px;
  animation: sa-rise .7s cubic-bezier(.2,.7,.2,1) both;
}
.sa-ticket-card p{ font-size:15px; color:var(--sa-muted); margin: 10px 0 18px; line-height:1.7; max-width:680px; }
.sa-ticket-status{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }

.sa-contact-section{ padding: 52px 0 76px; }
.sa-contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:44px; align-items:start;
}
.sa-contact-grid > *{ animation: sa-rise .7s cubic-bezier(.2,.7,.2,1) both; }
.sa-contact-grid > *:nth-child(2){ animation-delay:.08s; }
.sa-contact-title{ font-size:1.7rem; margin: 12px 0 20px; }

.sa-field{ margin-bottom:16px; display:flex; flex-direction:column; gap:6px; }
.sa-field label{ font-size:13px; color:var(--sa-muted); font-weight:600; }
.sa-field input, .sa-field select, .sa-field textarea{
  background: var(--sa-ink-2); border:1px solid var(--sa-ink-3); border-radius:10px;
  padding:11px 14px; color: var(--sa-silver); font-family: var(--sa-body); font-size:14px;
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.sa-field textarea{ min-height:120px; resize:vertical; }
.sa-field input:focus, .sa-field select:focus, .sa-field textarea:focus{
  border-color: var(--sa-arrow);
  box-shadow: 0 0 0 3px var(--sa-glow);
}
.sa-field input:invalid[required], .sa-field textarea:invalid[required]{
  box-shadow: none;
}
.sa-field select{ cursor:pointer; }

.sa-contact-form-status, .sa-contact-form-note{
  margin-top:14px; font-family: var(--sa-mono); font-size:.8rem; color: var(--sa-muted);
  line-height:1.6;
}
.sa-contact-form-status:empty{ display:none; }
.sa-contact-form-status.is-error{ color:#EC4899; }
.sa-contact-form-status.is-success{ color: var(--sa-arrow); }

.sa-contact-meta{ display:flex; flex-direction:column; gap:14px; }
.sa-contact-meta .row{ display:flex; flex-direction:column; gap:2px; border-bottom:1px solid var(--sa-ink-3); padding-bottom:12px; }
.sa-contact-meta .lbl{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--sa-muted); font-family: var(--sa-mono); }
.sa-contact-meta .val{ font-size:15px; word-break: break-word; overflow-wrap: anywhere; }
.sa-contact-meta .val a{ color: var(--sa-arrow); text-decoration:underline; }
.sa-contact-meta .val a:hover{ color: var(--sa-silver); }

@media (max-width: 768px){
  .sa-contact-grid{ grid-template-columns: 1fr; gap:40px; }
  .sa-contact-section{ padding-top: 40px; }
}

/* ==================== GUIDE & WHITE PAPER PAGES ==================== */

/* generic bordered card, same treatment as .sa-ticket-card, reused wherever
   a page needs a single callout rather than a grid of cards */
.sa-callout{
  background: linear-gradient(180deg, var(--sa-ink-2), rgba(20,26,68,.4));
  border: 1px solid var(--sa-ink-3);
  border-radius: 16px;
  padding: 26px 26px 24px;
  animation: sa-rise .7s cubic-bezier(.2,.7,.2,1) both;
}
.sa-callout ul{ margin: 14px 0 0; padding-left: 20px; display:flex; flex-direction:column; gap: 10px; }
.sa-callout li{ font-size: 15px; color: var(--sa-muted); }
.sa-callout li b{ color: var(--sa-silver); }

/* numbered setup steps -- a real sequence, so numbering is meaningful here */
.sa-steps{ display:flex; flex-direction:column; gap: 22px; }
.sa-step{ display:grid; grid-template-columns: 44px 1fr; gap: 16px; align-items:start; }
.sa-step .num{
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sa-ink-2); border:1px solid var(--sa-ink-3); color: var(--sa-arrow);
  font-family: var(--sa-display); font-weight: 800; font-size: 17px;
  display:flex; align-items:center; justify-content:center; flex: none;
}
.sa-step h3{ font-size:16px; margin:0 0 4px; font-weight:600; color: var(--sa-silver); }
.sa-step p{ font-size:14.5px; color: var(--sa-muted); margin:0; line-height:1.65; }

/* plain-language data table, styled like an app-store privacy label */
.sa-nutrition{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.sa-nutrition .cell{ border:1px solid var(--sa-ink-3); background: var(--sa-ink-2); border-radius:12px; padding:14px 16px; }
.sa-nutrition .cell .k{ font-family: var(--sa-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--sa-muted); }
.sa-nutrition .cell .v{ font-size:15px; font-weight:700; color: var(--sa-silver); margin-top:4px; }

/* amber-accented caveat callouts, deliberately distinct from the blue brand accent */
.sa-caveat{
  border-left: 3px solid #E0B45C; background: rgba(224,180,92,.07);
  border-radius: 0 12px 12px 0; padding: 14px 18px; margin-top: 14px;
}
.sa-caveat .k{ font-family: var(--sa-mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:#E0B45C; margin-bottom:5px; }
.sa-caveat p{ margin:0; font-size:14.5px; color:#DCC793; line-height:1.6; }

@media (max-width: 620px){
  .sa-nutrition{ grid-template-columns: 1fr 1fr; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px){
  .sa-hero-grid{ grid-template-columns: 1fr; gap: 28px; padding: 30px 0 60px; }
  .sa-feature-grid{ grid-template-columns: 1fr 1fr; }
  .sa-prod-grid{ grid-template-columns: 1fr; }
  .sa-nav{ flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 0; }
  .sa-navlinks{ flex-wrap: wrap; gap: 10px 18px; font-size: 13px; }
}
@media (max-width: 560px){
  .sa-feature-grid{ grid-template-columns: 1fr; }
  .sa-btn{ flex:1 1 100%; justify-content:center; }
  .sa-navlinks{ gap: 8px 14px; font-size: 12.5px; }
}

/* accessibility: honor reduced motion + visible focus */
@media (prefers-reduced-motion: reduce){
  .sa-root *{ animation: none !important; transition: none !important; }
}
.sa-root a:focus-visible, .sa-root button:focus-visible{
  outline: 2px solid var(--sa-arrow); outline-offset: 3px; border-radius: 8px;
}



.social-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
 
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #c0c0c0;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
  min-width: 72px;
}
 
.social-link:hover {
  transform: translateY(-4px);
  color: #ffffff;
}
 
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
 
.social-link:hover .social-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}
 
.social-placeholder {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
 
.social-placeholder:hover {
  transform: none;
}
 
.social-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
}
 
.coming-soon-badge {
  font-size: 9px;
  background: rgba(255,255,255,0.12);
  color: #888;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
 
.gofundme-icon { color: #02a95c; }
.youtube-icon  { color: #ff0000; }
.kickstarter-icon { color: #05ce78; }
.giving-block-icon { color: #a89af9; }
.discord-icon { color: #5865F2; }
 

 .circular-image-sm {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.25);
}

