/* ═══════════════════════════════════════════
   PSD Blog — Shared Styles
   Used by /blog (index) and all article pages.
   ═══════════════════════════════════════════ */

/* ─── RESET & VARS (shared with site) ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07070f;
  --bg-2: #0d0d1a;
  --bg-3: #131325;
  --border: rgba(255, 255, 255, 0.07);
  --border-hi: rgba(124, 92, 252, 0.35);
  --text: #eeeeff;
  --text-2: #8888bb;
  --text-3: #4a4a72;
  --violet: #7c5cfc;
  --indigo: #5c7cf8;
  --glow: rgba(124, 92, 252, 0.18);
  --glow-soft: rgba(92, 124, 248, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active { color: var(--text); }

.nav-cta {
  background: rgba(124, 92, 252, 0.12) !important;
  color: #a78fff !important;
  border: 1px solid rgba(124, 92, 252, 0.3) !important;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(124, 92, 252, 0.2) !important;
  border-color: rgba(124, 92, 252, 0.5) !important;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-hi);
  background: rgba(124, 92, 252, 0.08);
  color: #a78fff;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.1s forwards;
}

.page-header .hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
  animation: pulse 2s infinite;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--violet);
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.page-title .accent {
  background: linear-gradient(135deg, #9d7fff 0%, #6b9fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-sub {
  font-size: 17px;
  color: var(--text-2);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

/* ─── BLOG TOOLBAR: SEARCH + FILTERS ─── */
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.blog-search {
  position: relative;
  flex: 1 1 260px;
  max-width: 360px;
}

.blog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}

.blog-search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.blog-search input::placeholder { color: var(--text-3); }
.blog-search input:focus { border-color: var(--border-hi); }

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
}

.blog-filter {
  padding: 6px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.blog-filter:hover {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.blog-filter.active {
  background: rgba(124, 92, 252, 0.12);
  border-color: rgba(124, 92, 252, 0.35);
  color: #a78fff;
}

.blog-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-left: auto;
  white-space: nowrap;
}

.blog-no-results {
  text-align: center;
  padding: 60px 0 80px;
}

.blog-no-results p {
  color: var(--text-3);
  font-size: 15px;
}

/* ─── BLOG INDEX: CARD GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding-bottom: 80px;
}

.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.blog-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78fff;
}

.blog-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.blog-card-excerpt {
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

/* ─── ARTICLE LAYOUT ─── */
.article-header {
  padding: 140px 0 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.article-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.article-header .container { position: relative; z-index: 2; }

.article-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-meta-top .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78fff;
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
}

.article-meta-top .date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.article-meta-top .reading-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.article-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.article-title .accent {
  background: linear-gradient(135deg, #9d7fff 0%, #6b9fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-intro {
  font-size: 18px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

/* ─── ARTICLE BODY ─── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 56px 0 20px;
  color: var(--text);
}

.article-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 40px 0 14px;
  color: var(--text);
}

.article-body p {
  font-size: 16.5px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 22px;
}

.article-body p strong {
  color: var(--text);
  font-weight: 500;
}

.article-body p em {
  color: #a78fff;
  font-style: normal;
  font-weight: 400;
}

.article-body a {
  color: #a78fff;
  text-decoration: underline;
  text-decoration-color: rgba(167, 143, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article-body a:hover {
  text-decoration-color: #a78fff;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
}

.article-body li {
  font-size: 16px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-body li strong {
  color: var(--text);
  font-weight: 500;
}

.article-body blockquote {
  border-left: 3px solid var(--violet);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(124, 92, 252, 0.04);
  border-radius: 0 10px 10px 0;
}

.article-body blockquote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 0;
}

/* ─── KEY TAKEAWAY BOX ─── */
.key-takeaway {
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin: 40px 0;
}

.key-takeaway-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78fff;
  margin-bottom: 12px;
}

.key-takeaway p {
  font-size: 15px;
  line-height: 1.7;
}

/* ─── TOC (Table of Contents) ─── */
.toc {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
}

.toc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc-counter;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 6px;
}

.toc li::before {
  content: counter(toc-counter, decimal-leading-zero) ".";
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  margin-right: 8px;
}

.toc a {
  font-size: 14.5px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.toc a:hover { color: #a78fff; }

/* ─── ARTICLE CTA ─── */
.article-cta {
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  margin: 56px 0 0;
}

.article-cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.article-cta-sub {
  font-size: 15px;
  color: var(--text-2);
  font-weight: 300;
  margin-bottom: 24px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  color: #fff;
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 400;
  font-size: 14.5px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--text-3); color: var(--text); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--text-2); }

.breadcrumb .sep { color: var(--text-3); opacity: 0.5; }

.breadcrumb .current { color: var(--text-2); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.footer-logo-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.footer-logo-sub {
  font-size: 11px;
  color: var(--text-3);
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, max-content));
  gap: 20px 32px;
  flex: 1;
  justify-content: end;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-group-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 2px;
}

.footer-group a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-group a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  display: block;
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CTA BAND (same as home) ─── */
.cta-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.cta-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 92, 252, 0.6), transparent);
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
  position: relative;
}

.cta-sub {
  color: var(--text-2);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

/* ─── FAQ SECTION (same as home) ─── */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-header {
  margin-bottom: 48px;
  text-align: center;
}

.faq-header .section-label {
  justify-content: center;
}

.faq-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  gap: 24px;
  margin: 0;
}

.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-2);
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.faq-question:hover .faq-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-top: 14px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.7;
}

.faq-answer a {
  color: #a78fff;
  text-decoration: underline;
  text-decoration-color: rgba(167, 143, 255, 0.3);
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  text-decoration-color: #a78fff;
}

/* ─── SOURCES ─── */
.sources-section {
  padding: 64px 0 80px;
}

.sources-section .section-label {
  justify-content: center;
  text-align: center;
}

.sources-list {
  list-style: none;
  counter-reset: src-counter;
  padding: 0;
  margin-top: 8px;
}

.sources-list li {
  counter-increment: src-counter;
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
}

.sources-list li::before {
  content: "[" counter(src-counter) "]";
  position: absolute;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
}

.sources-list li em {
  font-style: italic;
  color: var(--text-2);
}

.sources-list li a {
  color: #a78fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 143, 255, 0.25);
  transition: border-color 0.2s;
}

.sources-list li a:hover {
  border-color: #a78fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .container { padding: 0 24px; }
  .page-header { padding: 120px 0 48px; }
  .article-header { padding: 120px 0 36px; }
  .article-body { padding: 0 24px 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { max-width: none; }
  .blog-count { margin-left: 0; }
  .article-cta { padding: 32px 20px; }
  .cta-box { padding: 40px 24px; }
  .cta-actions .btn-ghost { display: none; }
  .faq-section { padding: 60px 0; }
  .sources-section { padding: 40px 0 60px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); width: 100%; gap: 20px; }
}
