/* SHIBE — OpenClaw-style dark void, doge-gold accent, terminal vibe */
:root {
  --bg: #0a0a0f;
  --bg-2: #13131a;
  --panel: #15151d;
  --panel-2: #1a1a24;
  --line: #1f1f2b;
  --ink: #e7e7ee;
  --ink-soft: #c4c4d0;
  --muted: #6f7385;
  --gold: #f4b400;          /* doge gold — primary accent */
  --gold-hot: #ffc933;
  --orange: #ff6b1a;        /* plasma orange */
  --violet: #7c5cff;        /* cosmic violet */
  --green: #4ade80;
  --red: #ff4757;

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.inline-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(244, 180, 0, 0.4);
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}
.inline-link:hover { color: var(--gold-hot); border-bottom-color: var(--gold-hot); }

.mono { font-family: var(--mono); color: var(--gold); }

/* BACKGROUND LAYERS — space + glow */
.bg-stars {
  position: fixed; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 80%, rgba(255,255,255,0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 62% 32%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 81% 64%, rgba(255,255,255,0.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 47% 10%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 92% 22%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 55%, rgba(255,255,255,0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 38% 47%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 88%, rgba(255,255,255,0.3) 50%, transparent 51%);
  background-size: 600px 600px;
  background-repeat: repeat;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.bg-glow {
  position: fixed; inset: 0;
  background:
    radial-gradient(700px 500px at 18% 12%, rgba(244,180,0,0.10), transparent 60%),
    radial-gradient(800px 600px at 82% 28%, rgba(255,107,26,0.07), transparent 60%),
    radial-gradient(900px 700px at 50% 90%, rgba(124,92,255,0.06), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.scanlines {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

main, .nav, .footer { position: relative; z-index: 2; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #000;
}
.logo-text {
  font-size: 18px;
  background: linear-gradient(180deg, var(--gold-hot), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  border-radius: 10px;
  transition: transform 90ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(244,180,0,0.5);
  box-shadow: 0 6px 24px rgba(244,180,0,0.15);
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-hot), var(--gold));
  color: #1a1100;
  border-color: var(--gold);
  font-weight: 800;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ffd454, var(--gold-hot));
  box-shadow: 0 8px 30px rgba(244,180,0,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn-big { padding: 18px 28px; font-size: 14px; }

/* HERO */
.hero {
  padding: 90px 32px 110px;
  text-align: center;
  position: relative;
}
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
}
.hero-mascot {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mascot-img {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  border-radius: 16px;
  object-fit: contain;
  border: 1px solid rgba(244,180,0,0.4);
  background: #000;
  box-shadow: 0 0 0 6px rgba(244,180,0,0.05), 0 20px 60px rgba(244,180,0,0.25);
  animation: bob 6s ease-in-out infinite;
  /* Source ASCII is light gray on black — boost contrast hard so the doge silhouette pops */
  filter:
    contrast(2.2)
    brightness(1.4)
    drop-shadow(0 0 14px rgba(244,180,0,0.5));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.mascot-halo {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(244,180,0,0.30) 0%, rgba(244,180,0,0) 65%);
  z-index: 1;
  animation: halo 5s ease-in-out infinite;
  filter: blur(8px);
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes halo {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}

.hero-title {
  font-family: var(--sans);
  font-size: clamp(72px, 11vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffd454 0%, var(--gold) 40%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(244,180,0,0.25);
}
.hero-tag {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.hero-lede {
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
}
.hero-lede strong { color: var(--ink); }
.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* SECTIONS */
.section {
  padding: 90px 32px;
  position: relative;
}
.section-soft {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-hot);
  margin: 0 0 14px;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(244,180,0,0.35);
}
.kicker-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(244,180,0,0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.6; }
}
.kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 4px;
  gap: 20px;
  flex-wrap: wrap;
}
.kicker-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.kicker-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.section-h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 32px;
  max-width: 1100px;
  color: var(--ink);
}
.section-lede {
  font-size: 17px;
  max-width: 720px;
  margin: 0 0 48px;
  color: var(--ink-soft);
}

/* QUICK START GRID */
.quick-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quick-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px 24px;
  position: relative;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.quick-card:hover {
  border-color: rgba(244,180,0,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(244,180,0,0.1);
}
.quick-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
}
.quick-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quick-card p {
  margin: 0 0 16px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* TERMINAL BLOCKS */
.terminal {
  background: #06060a;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  line-height: 1.55;
}
.tprompt { color: var(--gold); font-weight: 700; }
.tstr { color: var(--green); }
.tcomment { color: var(--muted); }
.taccent { color: var(--orange); }

/* TESTIMONIALS */
.testimonials {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 150ms ease, transform 150ms ease;
}
.t-card:hover {
  border-color: rgba(244,180,0,0.35);
  transform: translateY(-2px);
}
.t-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: grid;
  place-items: center;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.1);
}
.t-a2 { background: linear-gradient(135deg, var(--violet), #b08bff); }
.t-a3 { background: linear-gradient(135deg, var(--orange), #ff9466); }
.t-a4 { background: linear-gradient(135deg, var(--gold-hot), var(--gold)); }
.t-a5 { background: linear-gradient(135deg, var(--green), #6df0a0); color: #1a1100; }
.t-a6 { background: linear-gradient(135deg, #5b5b73, #8d8da8); }
.t-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.t-handle { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.t-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* NOTES */
.notes {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
.note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.note:hover {
  border-color: rgba(244,180,0,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.note-feature {
  background:
    linear-gradient(180deg, rgba(244,180,0,0.05), rgba(244,180,0,0)) ,
    var(--panel);
  border-color: rgba(244,180,0,0.3);
}
.note-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.note-pill {
  background: rgba(244,180,0,0.12);
  color: var(--gold);
  border: 1px solid rgba(244,180,0,0.3);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.note-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.note h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.note p {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.note-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* FEATURES */
.features {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.feat:hover {
  border-color: rgba(244,180,0,0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}
.feat-icon {
  font-size: 30px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 12px rgba(244,180,0,0.3));
}
.feat h3 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feat p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* CHIPS / INTEGRATIONS */
.chips {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  transition: border-color 120ms ease, color 120ms ease, transform 120ms ease;
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(244,180,0,0.18);
}

/* CASES */
.cases {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.case {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 150ms ease, transform 150ms ease;
}
.case:hover {
  border-color: rgba(244,180,0,0.4);
  transform: translateY(-2px);
}
.case-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}
.case h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.case p { margin: 0 0 16px; font-size: 14.5px; color: var(--ink-soft); }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* COIN CARD */
.coin-card {
  max-width: 1100px;
  background: linear-gradient(180deg, rgba(244,180,0,0.06), rgba(244,180,0,0)), var(--panel);
  border: 1px solid rgba(244,180,0,0.35);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(244,180,0,0.08);
}
.coin-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.coin-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.coin-value {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.coin-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* PRESS */
.press {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.press-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 150ms ease, transform 150ms ease;
}
.press-card:hover {
  border-color: rgba(244,180,0,0.4);
  transform: translateY(-2px);
}
.press-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.press-source { color: var(--gold); font-weight: 700; }
.press-date { color: var(--muted); }
.press-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.press-card p { margin: 0 0 14px; font-size: 14.5px; color: var(--ink-soft); }
.press-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  border-bottom: 1px solid rgba(244,180,0,0.3);
  padding-bottom: 2px;
}
.press-link:hover { color: var(--gold-hot); border-bottom-color: var(--gold-hot); }

/* ABOUT */
.about-grid {
  max-width: 820px;
  font-size: 17px;
  color: var(--ink-soft);
}
.about-grid p {
  margin: 0 0 18px;
}
.about-grid strong { color: var(--gold); }
.about-grid em { color: var(--ink); font-style: italic; }

/* FAQ */
.faq {
  max-width: 880px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 28px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
details:last-of-type { border-bottom: none; }
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 22px;
  color: var(--gold);
  transition: transform 200ms ease;
}
details[open] summary::after { content: '−'; }
details p { margin: 12px 0 0; color: var(--ink-soft); font-size: 15px; }

/* CTA STRIP */
.cta-strip {
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(244,180,0,0.18), transparent 70%),
    linear-gradient(180deg, rgba(244,180,0,0.04), rgba(244,180,0,0));
  border-top: 1px solid rgba(244,180,0,0.25);
  border-bottom: 1px solid rgba(244,180,0,0.25);
  text-align: center;
  padding: 80px 32px;
}
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  background: linear-gradient(180deg, var(--gold-hot), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-inner p { font-size: 17px; color: var(--ink-soft); margin: 0 auto 28px; max-width: 600px; }
.cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* FOOTER */
.footer {
  padding: 56px 32px 36px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(244,180,0,0.06), transparent 70%),
    #06060a;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: flex-start;
  gap: 36px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-col a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer-brand p {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-text {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
}
.socials {
  display: flex;
  gap: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
}
.socials a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.socials a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .quick-grid, .testimonials, .features { grid-template-columns: 1fr 1fr; }
  .notes { grid-template-columns: 1fr; }
  .cases, .press { grid-template-columns: 1fr; }
  .coin-row { grid-template-columns: 1fr; gap: 16px; }
  .section, .hero { padding: 70px 22px; }
}
@media (max-width: 640px) {
  .quick-grid, .testimonials, .features { grid-template-columns: 1fr; }
  .hero-mascot, .mascot-img { width: 160px; height: 160px; }
  .nav { padding: 14px 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
