/* ================================================================
   COMPUTER HEAVEN — Celestial Hardware Design System
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=DM+Sans:wght@400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* === TOKENS === */
:root {
  /* Backgrounds */
  --night: #0B1120;
  --cosmos: #0F1A2E;
  --slate: #1E293B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --ice: #EFF6FF;

  /* Accents */
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-10: rgba(245,158,11,0.10);
  --gold-20: rgba(245,158,11,0.20);
  --silver: #CBD5E1;
  --signal: #3B82F6;
  --signal-dark: #1D4ED8;
  --signal-10: rgba(59,130,246,0.10);

  /* Text */
  --text: #0F172A;
  --text-muted: #475569;
  --chalk: #F8FAFC;
  --smoke: #94A3B8;

  /* Borders */
  --border: #E2E8F0;

  /* Typography */
  --ff-display: 'Space Grotesk', system-ui, sans-serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Scale */
  --measure-article: 700px;
  --measure-wide: 1280px;
  --measure-hero: 1440px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 300ms;
  --dur-slow: 500ms;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,17,32,0.08);
  --shadow-md: 0 4px 12px rgba(11,17,32,0.10);
  --shadow-lg: 0 8px 24px rgba(11,17,32,0.12);
  --shadow-gold: 0 8px 24px rgba(245,158,11,0.15);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { font-size: clamp(1rem, 1.5vw, 1.0625rem); line-height: 1.75; color: var(--text-muted); }
a { color: var(--signal); text-decoration: none; }
a:hover { color: var(--signal-dark); text-decoration: underline; }

.kicker {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.kicker--light { color: var(--signal); }

/* === LAYOUT === */
.container { max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(3rem, 8vw, 5rem) 0; }
.section--dark { background: var(--night); color: var(--chalk); }
.section--dark h2, .section--dark h3 { color: var(--chalk); }
.section--dark p { color: var(--smoke); }
.section--alt { background: var(--bg-alt); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(11,17,32,0.92);
  backdrop-filter: blur(12px);
}
.site-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chalk);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo:hover { color: var(--gold); text-decoration: none; }
.site-logo svg { width: 28px; height: 28px; }
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--smoke);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color var(--dur), background var(--dur);
  text-decoration: none;
}
.site-nav a:hover { color: var(--chalk); background: rgba(255,255,255,0.08); text-decoration: none; }
.btn-cta {
  background: var(--gold);
  color: var(--night) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px !important;
  transition: background var(--dur) !important;
}
.btn-cta:hover { background: var(--gold-light) !important; text-decoration: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--smoke);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-toggle:hover { color: var(--chalk); background: rgba(255,255,255,0.08); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--cosmos);
  border: 1px solid var(--slate);
  border-radius: 8px;
  padding: 0.5rem;
  display: none;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--smoke) !important;
}
.nav-dropdown-menu a:hover { color: var(--chalk) !important; background: var(--slate); text-decoration: none; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--chalk);
}
.nav-hamburger svg { width: 24px; height: 24px; }
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-hamburger { display: block; }
  body.mobile-nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--night);
    padding: 2rem var(--gutter);
    gap: 0.5rem;
    overflow-y: auto;
    align-items: stretch;
  }
  body.mobile-nav-open .site-nav a, body.mobile-nav-open .nav-dropdown-toggle { font-size: 1rem; padding: 0.75rem; }
  body.mobile-nav-open .nav-dropdown-menu { position: static; display: block; background: var(--cosmos); margin-top: 0.5rem; }
  body.mobile-nav-open { overflow: hidden; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}
.hero--compact { min-height: 55vh; }
.hero__img { position: absolute; inset: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,17,32,0.88) 0%, rgba(11,17,32,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--measure-wide);
  margin: 0 auto;
  padding: 6rem var(--gutter) 4rem;
  width: 100%;
}
.hero__kicker { color: var(--gold); margin-bottom: 1rem; }
.hero h1 { color: var(--chalk); max-width: 800px; margin-bottom: 1.25rem; }
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--smoke);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--night);
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--dur), transform var(--dur);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--chalk);
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur), color var(--dur);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-10); color: var(--gold); }

/* Breadcrumb in hero */
.breadcrumb {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--smoke);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--smoke); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--smoke);
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* === ARTICLE LAYOUT === */
.article-wrap {
  max-width: var(--measure-wide);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.article-wrap:not(:has(.article-toc)) { grid-template-columns: 1fr; }
.article-wrap:not(:has(.article-toc)) > .article-body { grid-column: 1 / -1; }
@media (max-width: 1024px) { .article-wrap { grid-template-columns: 1fr; } }

.article-toc {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}
@media (max-width: 1024px) { .article-toc { display: none; } }
.article-toc h3 {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.article-toc ol { list-style: none; padding: 0; counter-reset: toc; }
.article-toc li { counter-increment: toc; margin-bottom: 0.4rem; }
.article-toc li::before {
  content: counter(toc) ". ";
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
}
.article-toc a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}
.article-toc a:hover { color: var(--signal); }

.article-body { max-width: var(--measure-article); }
.article-body h2 {
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.article-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px;
  width: 60px;
  background: var(--gold);
}
.article-body h3 { margin: 1.5rem 0 0.5rem; }
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: 0.75rem 0 1rem 1.25rem; }
.article-body li { margin-bottom: 0.3rem; color: var(--text-muted); }
.article-body img { border-radius: 10px; box-shadow: var(--shadow-md); margin: 1.5rem 0; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: var(--ice);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}
.article-body a { color: var(--signal); text-decoration: underline; text-decoration-color: var(--signal-10); text-underline-offset: 2px; }
.article-body a:hover { color: var(--signal-dark); text-decoration-color: var(--signal-dark); }

/* Article summary (chapeau) */
.article-summary {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--signal);
  background: var(--ice);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.spec-table th {
  background: var(--night);
  color: var(--chalk);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: left;
}
.spec-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.spec-table tr:nth-child(even) td { background: var(--bg-alt); }
.spec-table td:first-child { font-weight: 500; color: var(--text); }

/* Heritage blockquote (classics section) */
.heritage-quote {
  background: var(--cosmos);
  border-left: 3px solid var(--gold);
  color: var(--smoke);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 1.5rem 0;
}
.heritage-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.heritage-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-10);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--gold-20);
  margin-bottom: 1rem;
}

/* === CARDS === */
/* Image wrappers — anti-distorsion (REGLE 14 CODEX) */
.img-hero { aspect-ratio: 16/9; overflow: hidden; border-radius: 10px; }
.img-card { aspect-ratio: 3/2; overflow: hidden; }
.img-body { aspect-ratio: 3/2; overflow: hidden; border-radius: 10px; margin: 1.5rem 0; box-shadow: var(--shadow-md); }
.img-portrait { aspect-ratio: 1/1; overflow: hidden; border-radius: 50%; }
.img-hero img, .img-card img, .img-body img, .img-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Guide card */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.guide-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none !important;
  display: block;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.guide-card .img-card { border-radius: 0; }
.guide-card__body { padding: 1.25rem; }
.guide-card__kicker { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--signal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; display: block; }
.guide-card__title { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.guide-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog card */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform var(--dur), box-shadow var(--dur); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .img-card { border-radius: 0; }
.blog-card.hidden { display: none; }
.blog-card__body { padding: 1.25rem; }
.blog-card__kicker { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--signal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; display: block; }
.blog-card__title a { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--text); text-decoration: none; line-height: 1.3; display: block; margin-bottom: 0.5rem; }
.blog-card__title a:hover { color: var(--signal); }
.blog-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__meta { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--smoke); }

/* Blog filter */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.blog-filter-btn {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur);
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--signal);
  border-color: var(--signal);
  color: white;
}

/* === FAQ === */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; background: var(--bg); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 1rem;
}
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform var(--dur), background var(--dur);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--night); border-color: var(--gold); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }

/* === RELATED ARTICLES === */
.related-section { background: var(--bg-alt); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none !important;
  display: block;
  transition: border-color var(--dur), transform var(--dur);
}
.related-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.related-card__cat { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--smoke); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; display: block; }
.related-card__title { font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.3; }

/* === HERITAGE TEASER === */
.heritage-teaser {
  background: var(--night);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}
.heritage-teaser .kicker { color: var(--gold); display: block; margin-bottom: 0.75rem; }
.heritage-teaser h2 { color: var(--chalk); margin-bottom: 1rem; }
.heritage-teaser p { color: var(--smoke); max-width: 600px; margin: 0 auto 2rem; }

/* === FORM === */
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-family: var(--ff-display); font-size: 0.85rem; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--dur);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-10); }
.contact-form .hidden { display: none; }
.contact-wrap { max-width: 640px; margin: 0 auto; }

/* === FOOTER === */
.site-footer { background: var(--night); border-top: 1px solid var(--slate); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--ff-display); color: var(--chalk); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.85rem; color: var(--smoke); margin-bottom: 1rem; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { font-size: 0.85rem; color: var(--smoke); text-decoration: none; }
.footer-col a:hover { color: var(--chalk); }
.footer-bottom { border-top: 1px solid var(--slate); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.75rem; color: var(--smoke); }
.footer-heritage {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--smoke);
  border: 1px solid var(--slate);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
}

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === UTILITIES === */
.text-center { text-align: center; }
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-muted); margin-bottom: 2rem; max-width: 600px; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* === PAGE STATIC === */
main { padding-top: 0; }
main.with-top-pad { padding-top: 6rem; }
