/* ============================================================
   KLICKNERDS — ARTICLE STYLESHEET (Nerd Warmth)
   Shared by all blog articles.
   ============================================================ */
:root {
  --bg:           #FAF7F0;
  --bg-card:      #FFFFFF;
  --bg-paper:     #FFFDF8;
  --ink:          #1A1B26;
  --ink-soft:     #4A4B57;
  --ink-faint:    #8B8C99;
  --accent:       #2563EB;
  --yellow:       #FFE8A3;
  --pink:         #FFD6E0;
  --sky:          #D6EFFF;
  --green:        #DFF7D8;
  --lilac:        #EADDFF;
  --peach:        #FFE0CC;
  --ok:           #15803D;
  --warn:         #B45309;
  --crit:         #BE123C;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --border:       2px solid var(--ink);
  --border-calm:  1.5px solid #E4E0D5;
  --shadow:       4px 4px 0 var(--ink);
  --shadow-sm:    3px 3px 0 var(--ink);
  --shadow-lg:    6px 6px 0 var(--ink);
  --shadow-calm:  0 2px 12px rgb(26 27 38 / 0.06);
  --r:            14px;
  --r-sm:         10px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --boing:        cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65;
  color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.dotted { background-image: radial-gradient(circle, #DDD6C7 1px, transparent 1px); background-size: 28px 28px; }

@keyframes blink { 50% { opacity: 0; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 550ms var(--ease), transform 550ms var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-pop { opacity: 0; transform: scale(0.94) translateY(14px); transition: opacity 500ms var(--ease), transform 500ms var(--boing); }
.reveal-pop.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-pop { transform: none !important; transition: opacity 150ms ease; }
  *, *::before, *::after { animation: none !important; }
}

/* ============ HEADER ============ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 76px; display: flex; align-items: center; transition: background 250ms, box-shadow 250ms; }
.site-header.scrolled { background: rgb(250 247 240 / 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 0 var(--ink); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 32px; }
.logo {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.0625rem; color: var(--ink);
  background: var(--bg-card); border: var(--border); border-radius: var(--r-sm);
  padding: 8px 14px; box-shadow: var(--shadow-sm); transition: transform 150ms var(--boing);
}
.logo:hover { transform: rotate(-2deg); }
.logo .blink { color: var(--accent); animation: blink 1.2s steps(1) infinite; }
.nav-links { display: flex; gap: 36px; list-style: none; font-family: var(--font-mono); font-size: 0.8125rem; }
.nav-links a { color: var(--ink-soft); transition: color 150ms; position: relative; }
.nav-links a.active { color: var(--accent); font-weight: 700; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--accent); transition: width 200ms var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.has-drop { position: relative; }
.has-drop::before { content: ''; position: absolute; top: 100%; left: -18px; right: -18px; height: 18px; }
.has-drop > a .caret { display: inline-block; font-size: 0.625rem; margin-left: 4px; transition: transform 200ms var(--boing); }
.has-drop:hover > a .caret, .has-drop:focus-within > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 290px;
  background: var(--bg-card); border: var(--border); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 8px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(10px) rotate(-0.5deg);
  transition: opacity 200ms var(--ease), transform 220ms var(--boing), visibility 200ms;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0) rotate(-0.5deg); }
.dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--r-sm); color: var(--ink); transition: background 150ms, transform 150ms var(--boing); }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--bg); transform: translateX(3px); color: var(--ink); }
.dropdown .d-dot { width: 13px; height: 13px; border-radius: 4px; border: 1.5px solid var(--ink); flex-shrink: 0; }
.dropdown .d-txt { display: flex; flex-direction: column; line-height: 1.35; }
.dropdown .d-name { font-weight: 700; font-size: 0.8125rem; }
.dropdown .d-sub { font-size: 0.65625rem; color: var(--ink-faint); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border: var(--border); border-radius: 12px;
  background: var(--accent); color: #fff; box-shadow: var(--shadow);
  cursor: pointer; transition: transform 150ms var(--boing), box-shadow 150ms var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.big { font-size: 1.1875rem; padding: 18px 36px; }
.header-cta { padding: 10px 18px; font-size: 0.875rem; box-shadow: var(--shadow-sm); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--bg); display: none; flex-direction: column; justify-content: center; padding: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 700; color: var(--ink); padding: 14px 0; }
.mobile-menu a.mm-sub { font-size: 1.125rem; padding: 8px 0 8px 20px; color: var(--ink-soft); }
.mobile-menu .btn { margin-top: 32px; align-self: flex-start; }

/* ============ ARTICLE HERO ============ */
.art-hero { padding: 140px 0 48px; }
.art-hero .inner { max-width: 820px; margin: 0 auto; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-faint); margin-bottom: 20px; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 6px; color: var(--accent); }
.cat-chip {
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 700;
  border: 1.5px solid var(--ink); border-radius: 9999px; padding: 4px 12px; display: inline-block; margin-bottom: 18px;
}
.cat-chip.visibility { background: var(--sky); }
.cat-chip.websites { background: var(--yellow); }
.cat-chip.ai { background: var(--lilac); }
.cat-chip.software { background: var(--green); }
.art-hero h1 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em;
  font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.08; margin-bottom: 18px;
}
.art-meta { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-faint); }
.art-meta b { color: var(--ink); font-weight: 700; }

/* ============ ARTICLE BODY ============ */
.art-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px 32px; }

.tldr {
  background: var(--yellow); border: var(--border); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 24px 28px; transform: rotate(-0.5deg); margin: 8px 0 40px;
}
.tldr .label { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; }
.tldr .label::before { content: '$ '; color: var(--accent); }
.tldr p { font-size: 1.0625rem; font-weight: 500; line-height: 1.6; }

.toc {
  border: var(--border-calm); border-radius: var(--r); background: var(--bg-card);
  box-shadow: var(--shadow-calm); padding: 20px 24px; margin-bottom: 44px;
}
.toc .toc-label { font-family: var(--font-mono); font-size: 0.71875rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.toc .toc-label::before { content: '// '; }
.toc ol { list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; padding: 4px 0; }
.toc a { color: var(--ink-soft); font-size: 0.9375rem; }
.toc a::before { content: counter(toc, decimal-leading-zero) ' '; font-family: var(--font-mono); font-size: 0.71875rem; font-weight: 700; color: var(--accent); margin-right: 6px; }
.toc a:hover { color: var(--ink); }

.prose { font-size: 1.0625rem; line-height: 1.75; }
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3vw, 1.9375rem); line-height: 1.2; margin-top: 52px; scroll-margin-top: 100px;
}
.prose h2 .hnum { font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 6px; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-top: 36px; }
.prose p { color: var(--ink-soft); }
.prose p strong, .prose li strong { color: var(--ink); }
.prose dfn { font-style: normal; font-weight: 700; color: var(--ink); }
.prose ul, .prose ol { padding-left: 4px; list-style: none; }
.prose ul li, .prose ol li { padding: 6px 0 6px 28px; position: relative; color: var(--ink-soft); }
.prose ul li::before { content: '✓'; position: absolute; left: 2px; font-family: var(--font-mono); font-weight: 700; color: var(--ok); }
.prose ol { counter-reset: pol; }
.prose ol li { counter-increment: pol; }
.prose ol li::before { content: counter(pol, decimal-leading-zero); position: absolute; left: 0; top: 8px; font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 700; color: var(--accent); border: 1.5px solid var(--ink); border-radius: 9999px; padding: 0 6px; background: var(--bg-card); }
.prose blockquote {
  border-left: 4px solid var(--accent); background: var(--bg-card); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px; font-weight: 500; color: var(--ink);
}
.prose .note { font-family: var(--font-mono); font-size: 0.78125rem; color: var(--ink-faint); }
.prose .note::before { content: '// '; color: var(--accent); }

/* Answer-Box: direkte, zitierbare Antwort (GEO) */
.answer-box {
  border: var(--border); border-radius: var(--r); background: var(--bg-card);
  box-shadow: var(--shadow-sm); padding: 20px 24px; margin-top: 24px;
}
.answer-box .ab-label { font-family: var(--font-mono); font-size: 0.65625rem; font-weight: 700; letter-spacing: 0.08em; color: var(--ok); margin-bottom: 8px; }
.answer-box .ab-label::before { content: '✓ '; }
.answer-box p { color: var(--ink); font-weight: 500; }

/* ============ TABLES ============ */
.tbl-wrap { overflow-x: auto; margin-top: 24px; border: var(--border); border-radius: var(--r); box-shadow: var(--shadow-sm); background: var(--bg-card); }
table.nice { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
table.nice th {
  font-family: var(--font-mono); font-size: 0.71875rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: left; padding: 14px 18px; background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
table.nice td { padding: 13px 18px; border-bottom: 1.5px dashed #E4E0D5; color: var(--ink-soft); vertical-align: top; }
table.nice tr:last-child td { border-bottom: none; }
table.nice td:first-child { font-weight: 600; color: var(--ink); }
table.nice .good { color: var(--ok); font-weight: 700; }
table.nice .bad { color: var(--crit); font-weight: 700; }
table.nice .mid { color: var(--warn); font-weight: 700; }

/* ============ INFOGRAPHICS ============ */
.info-window { border: var(--border); border-radius: var(--r); box-shadow: var(--shadow); background: var(--bg-paper); overflow: hidden; margin-top: 28px; }
.info-bar { display: flex; align-items: center; gap: 6px; padding: 9px 14px; border-bottom: var(--border); background: var(--sky); }
.info-bar.yellow { background: var(--yellow); } .info-bar.green { background: var(--green); }
.info-bar.lilac { background: var(--lilac); } .info-bar.pink { background: var(--pink); }
.info-bar i { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--ink); }
.info-bar i:nth-child(1) { background: var(--pink); } .info-bar i:nth-child(2) { background: var(--yellow); } .info-bar i:nth-child(3) { background: var(--green); }
.info-bar span { font-family: var(--font-mono); font-size: 0.65625rem; font-weight: 700; margin-left: 6px; }
.info-body { padding: 24px; }
.info-caption { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--ink-faint); text-align: center; padding: 0 24px 18px; }
.info-caption::before { content: '// '; color: var(--accent); }

/* Flow / step diagrams */
.ig-flow { display: grid; gap: 10px; align-items: stretch; }
.ig-flow.cols-3 { grid-template-columns: 1fr auto 1fr auto 1fr; }
.ig-flow.cols-4 { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.ig-node { border: 2px solid var(--ink); border-radius: var(--r-sm); padding: 14px; text-align: center; }
.ig-node .n-icon { font-size: 1.25rem; margin-bottom: 4px; }
.ig-node .n-name { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 4px; }
.ig-node .n-desc { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.45; }
.ig-node.c-sky { background: var(--sky); } .ig-node.c-lilac { background: var(--lilac); }
.ig-node.c-green { background: var(--green); } .ig-node.c-yellow { background: var(--yellow); }
.ig-node.c-peach { background: var(--peach); } .ig-node.c-pink { background: var(--pink); }
.ig-arrow { align-self: center; font-family: var(--font-mono); font-size: 1.125rem; font-weight: 700; color: var(--accent); text-align: center; }

/* Bar chart (HTML) */
.ig-bars { display: flex; flex-direction: column; gap: 14px; }
.ig-bar-row { display: grid; grid-template-columns: 170px 1fr 70px; gap: 12px; align-items: center; }
.ig-bar-row .b-label { font-family: var(--font-mono); font-size: 0.71875rem; font-weight: 700; }
.ig-bar-row .b-track { height: 18px; border: 1.5px solid var(--ink); border-radius: 9999px; background: var(--bg); overflow: hidden; }
.ig-bar-row .b-fill { display: block; height: 100%; border-radius: 9999px; width: var(--w); }
.ig-bar-row .b-val { font-family: var(--font-mono); font-size: 0.71875rem; font-weight: 700; text-align: right; }
.f-sky { background: var(--sky); } .f-lilac { background: var(--lilac); } .f-green { background: var(--green); }
.f-yellow { background: var(--yellow); } .f-peach { background: var(--peach); } .f-pink { background: var(--pink); }
.f-accent { background: var(--accent); }

/* Versus columns */
.ig-versus { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ig-vcol { border: 2px solid var(--ink); border-radius: var(--r-sm); overflow: hidden; }
.ig-vcol .v-head { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; padding: 10px 14px; border-bottom: 2px solid var(--ink); text-align: center; }
.ig-vcol ul { list-style: none; padding: 12px 14px; }
.ig-vcol li { font-size: 0.8125rem; color: var(--ink-soft); padding: 5px 0 5px 20px; position: relative; line-height: 1.5; }
.ig-vcol li::before { position: absolute; left: 0; font-family: var(--font-mono); font-weight: 700; }
.ig-vcol.v-bad li::before { content: '✗'; color: var(--crit); }
.ig-vcol.v-good li::before { content: '✓'; color: var(--ok); }
.ig-vcol.v-bad .v-head { background: var(--pink); }
.ig-vcol.v-good .v-head { background: var(--green); }

/* Big stat strip */
.ig-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ig-stat { border: 2px solid var(--ink); border-radius: var(--r-sm); padding: 16px; text-align: center; background: var(--bg-card); }
.ig-stat .s-val { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.375rem, 3vw, 1.875rem); letter-spacing: -0.02em; color: var(--accent); }
.ig-stat .s-label { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

/* Terminal snippet in article */
.ig-term { font-family: var(--font-mono); font-size: 0.8125rem; line-height: 2; }
.ig-term .cmd { font-weight: 700; } .ig-term .cmd::before { content: '$ '; color: var(--accent); }
.ig-term .ok::before { content: '✓ '; color: var(--ok); font-weight: 700; }
.ig-term .dim { color: var(--ink-faint); }
.ig-term .val { color: var(--accent); font-weight: 700; }

/* ============ TAKEAWAYS / FAQ / AUTHOR ============ */
.takeaways {
  border: var(--border); border-radius: var(--r); background: var(--green);
  box-shadow: var(--shadow); padding: 24px 28px; margin-top: 52px; transform: rotate(0.4deg);
}
.takeaways .t-label { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; margin-bottom: 12px; }
.takeaways .t-label::before { content: '$ '; color: var(--accent); }
.takeaways ul { list-style: none; }
.takeaways li { padding: 6px 0 6px 26px; position: relative; font-size: 0.9843rem; font-weight: 500; }
.takeaways li::before { content: '→'; position: absolute; left: 0; font-family: var(--font-mono); font-weight: 700; color: var(--accent); }

.art-faq { margin-top: 52px; }
.art-faq h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-bottom: 18px; }
.faq-item { border: var(--border-calm); border-radius: var(--r); margin-bottom: 10px; background: var(--bg-card); box-shadow: var(--shadow-calm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 20px; font-weight: 600; font-size: 0.9843rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; font-family: var(--font-mono); color: var(--accent); font-weight: 700; transition: transform 250ms var(--boing); }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .answer { padding: 0 20px 16px; color: var(--ink-soft); font-size: 0.9375rem; }

.author-box {
  display: flex; gap: 20px; align-items: center; margin-top: 52px;
  border: var(--border); border-radius: var(--r); background: var(--bg-card);
  box-shadow: var(--shadow); padding: 22px 26px;
}
.author-box img { width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--ink); object-fit: cover; flex-shrink: 0; }
.author-box .a-fallback { width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--ink); background: linear-gradient(135deg, var(--accent), #7AA2F7); color: #fff; display: none; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.author-box .a-name { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; }
.author-box .a-role { font-family: var(--font-mono); font-size: 0.65625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 2px 0 6px; }
.author-box .a-bio { font-size: 0.875rem; color: var(--ink-soft); }

/* ============ ARTICLE CTA ============ */
.art-cta { padding: 56px 0 72px; }
.cta-card {
  max-width: 860px; margin: 0 auto;
  background: var(--accent); border: var(--border); border-radius: 24px;
  box-shadow: 8px 8px 0 var(--ink); padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center; color: #fff; position: relative; overflow: hidden; transform: rotate(-0.5deg);
}
.cta-card h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: #fff; margin-bottom: 10px; }
.cta-card .subline { color: rgb(255 255 255 / 0.85); font-size: 1.0625rem; margin-bottom: 28px; }
.cta-card .btn { background: var(--bg); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.cta-doodle { position: absolute; font-family: var(--font-mono); font-weight: 700; font-size: 0.71875rem; color: rgb(255 255 255 / 0.5); }
.cta-doodle.d1 { top: 20px; left: 28px; transform: rotate(-8deg); }
.cta-doodle.d2 { bottom: 20px; right: 30px; transform: rotate(5deg); }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-card); border-top: var(--border); padding: 64px 0 36px; color: var(--ink-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .flogo {
  font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: var(--border); border-radius: var(--r-sm);
  padding: 8px 14px; display: inline-block; box-shadow: var(--shadow-sm);
}
.footer-brand .flogo .blink { color: var(--accent); animation: blink 1.2s steps(1) infinite; }
.footer-brand p { font-size: 0.875rem; margin-top: 16px; max-width: 32ch; }
.footer-brand .claim { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; margin-top: 14px; color: var(--ink); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; font-weight: 700; }
.footer-col h4::before { content: '// '; color: var(--accent); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 0.875rem; transition: color 150ms; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 24px; border-top: 2px dashed #E0DACB;
  font-family: var(--font-mono); font-size: 0.6875rem;
}
.footer-bottom .made::after { content: ' ☕'; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .ig-flow.cols-3, .ig-flow.cols-4 { grid-template-columns: 1fr; }
  .ig-arrow { transform: rotate(90deg); }
  .ig-versus { grid-template-columns: 1fr; }
  .ig-stats { grid-template-columns: 1fr; }
  .ig-bar-row { grid-template-columns: 110px 1fr 60px; }
}
@media (max-width: 767px) {
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .author-box { flex-direction: column; text-align: center; }
}
