/* ============================================================
   AcreetionOS — shared design system
   Extracted verbatim from the per-page inline <style> blocks
   (same colors, same values — now in ONE place).
   ------------------------------------------------------------
   Layout: tokens → base → components → responsive → motion
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --acreetion-green: #2ecc71;
  --acreetion-body-bg: #121212;
  --acreetion-panel-bg: #1a1a1a;
  --acreetion-box-bg: #222222;
  --acreetion-box-border: #333333;
  --acreetion-text-bright: #e5e5e5;
  --acreetion-text: #b2b2b2;
  --acreetion-code-bg: rgba(46, 204, 113, 0.1);
  --storm-color: #61afef;
  --flasher-color: #f39c12;
  --acreetion-purple: #9b59b6;
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: 'Fira Code', monospace;
  /* 2026: dark chrome — scrollbars, form controls, autofill match the theme */
  color-scheme: dark;
}

/* ---------- Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; touch-action: manipulation; }
body {
  font-family: var(--font-sans);
  background-color: var(--acreetion-body-bg);
  color: var(--acreetion-text-bright);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
}
input, textarea, select { font-size: 16px; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background-color: var(--acreetion-panel-bg);
  border-bottom: 1px solid var(--acreetion-box-border);
  padding: 0.5rem 1rem;
  color: var(--acreetion-text-bright);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
.announcement-content { font-size: 0.95rem; white-space: nowrap; overflow: hidden; }
.announcement-bar:hover .announcement-content { animation-play-state: paused; }
.announcement-content > span { padding-right: 4rem; display: inline-block; }
.announcement-bar .separator { margin: 0 1.5rem; color: var(--acreetion-box-border); }
.announcement-bar a { color: var(--acreetion-green); font-weight: bold; text-decoration: none; }
.announcement-bar a:hover { text-decoration: underline; }
.social-link { padding: 0.2rem 0.5rem; border-radius: 0.75rem; transition: background-color 0.3s ease; }
.social-link:hover { background-color: rgba(255, 255, 255, 0.1); animation: pulse 1s infinite; }

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ---------- Header ---------- */
.page-header {
  background-color: rgba(24, 26, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--acreetion-green);
  border-radius: 0 0 16px 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--acreetion-text-bright);
  text-decoration: none;
}
.logo-img { height: 40px; width: auto; transform: translateZ(0); contain: layout; }
.logo-text span { color: var(--acreetion-green); }
.main-nav { display: none; }
.main-nav a { color: var(--acreetion-text); text-decoration: none; margin-left: 2rem; font-weight: 500; }
.main-nav a:hover { color: var(--acreetion-text-bright); }
.main-nav a.active, .main-nav a[aria-current="page"] {
  background-color: var(--acreetion-green, #2ecc71);
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.5rem 1rem;
}
.main-nav a.btn-storm { color: #fff; }

/* ---------- Search strip ---------- */
.search-strip {
  background-color: var(--acreetion-panel-bg);
  border-bottom: 1px solid var(--acreetion-box-border);
  padding: 1rem 0;
}
.search-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.search-form {
  display: flex;
  width: 100%;
  border: 1px solid var(--acreetion-box-border);
  background: var(--acreetion-body-bg);
}
.search-form:focus-within { border-color: var(--acreetion-green); }
.search-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  color: var(--acreetion-text-bright);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
}
.search-btn {
  background: var(--acreetion-green);
  border: none;
  color: #000;
  padding: 0 2rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.search-btn:hover { filter: brightness(1.1); }

/* ---------- Page layout ---------- */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  animation: pageIn 0.35s ease-out backwards;
}
.content-feed { display: flex; flex-direction: column; gap: 2rem; min-width: 0; max-width: 100%; }
.sidebar { min-width: 0; max-width: 100%; }

/* ---------- Content boxes ---------- */
.content-box {
  background-color: var(--acreetion-box-bg);
  border: 1px solid var(--acreetion-box-border);
  border-radius: 12px;
  max-width: 100%;
  overflow-x: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-box:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); }
.box-header {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--acreetion-box-border);
  background-color: #1a1a1a;
  max-width: 100%;
  overflow-x: hidden;
}
.box-header h2 {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--acreetion-text-bright);
  font-weight: 700;
  word-wrap: break-word;
}
.box-body { padding: 1.5rem; max-width: 100%; overflow-x: hidden; word-wrap: break-word; }
.box-body h3 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--acreetion-box-border);
  padding-bottom: 0.5rem;
}

/* ---------- Article content ---------- */
.article-content { max-width: 100%; overflow-x: hidden; }
.article-content a:not(.btn), .sidebar-box p a { color: var(--acreetion-green); text-decoration: none; font-weight: 500; }
.article-content a:not(.btn):hover, .sidebar-box p a:hover { text-decoration: underline; }
.article-content p, .article-content li { color: var(--acreetion-text); margin-bottom: 1rem; word-wrap: break-word; }
.article-content ul { padding-left: 20px; list-style-position: inside; }
.article-logo-cluster { float: left; margin-right: 2rem; margin-bottom: 1rem; width: 150px; }
.article-logo-cluster .hero-logo-img { width: 100%; max-width: 150px; height: auto; margin-bottom: 1.5rem; }
.article-content::after { content: ""; display: table; clear: both; }

/* ---------- Sidebar boxes ---------- */
.sidebar { max-width: 100%; min-width: 0; }
.sidebar-box { max-width: 100%; overflow-x: hidden; }
.sidebar-box .box-header h2 { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--acreetion-text-bright); }
.sidebar-box p { color: var(--acreetion-text); padding: 0 1.2rem 1rem; }

/* ---------- Spec lists / dl ---------- */
.spec-list { list-style: none; padding: 0; }
.spec-list li { margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--acreetion-text); }
.spec-list .spec-title { color: var(--acreetion-text-bright); font-weight: 700; min-width: 120px; display: inline-block; }
dl { margin-bottom: 2rem; border-left: 2px solid var(--acreetion-green); padding-left: 1.5rem; }
dt { font-family: var(--font-mono); font-weight: 700; color: var(--acreetion-text-bright); margin-top: 0.5rem; }
dd { color: var(--acreetion-text); margin-bottom: 0.5rem; margin-left: 0; }

/* ---------- Sidebar nav ---------- */
.sidebar-nav { list-style: none; padding: 0; }
.sidebar-nav a {
  display: block;
  text-decoration: none;
  color: var(--acreetion-green);
  padding: 0.5rem 1.2rem;
  border-bottom: 1px solid var(--acreetion-box-border);
  cursor: pointer;
}
.sidebar-nav a:hover { background-color: #3a3a3a; }
.sidebar-nav a.active { background-color: var(--acreetion-green); color: black; font-weight: 700; }

/* ---------- Code ---------- */
code, pre { font-family: var(--font-mono); font-size: 0.9rem; }
code {
  background-color: var(--acreetion-code-bg);
  border: 1px solid rgba(46, 204, 113, 0.2);
  padding: 0.2em 0.4em;
  border-radius: 12px;
  color: var(--acreetion-text-bright);
}
pre {
  background-color: var(--acreetion-panel-bg);
  border: 1px solid var(--acreetion-box-border);
  padding: 1em;
  overflow-x: auto;
  margin-top: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  color: black;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover { filter: brightness(1.1); box-shadow: 0 0 15px rgba(46, 204, 113, 0.4); transform: translateY(-2px); }
.btn-cinnamon { background-color: var(--acreetion-green); }
.btn-storm { background-color: var(--storm-color); }
.btn-flasher { background-color: var(--flasher-color); }
.btn-chatgpt { background-color: var(--acreetion-green); }
.btn-claude { background-color: var(--acreetion-purple); }

/* ---------- Per-section accent colors ---------- */
#about .box-header h2, #about h3 { color: var(--acreetion-green); }
#philosophy .box-header h2, #philosophy h3 { color: var(--storm-color); }
#easy-install .box-header h2 { color: var(--flasher-color); }
#manual-downloads .box-header h2 { color: var(--acreetion-green); }
.tech-detail-heading {
  color: var(--acreetion-green);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--acreetion-box-border);
}

/* ---------- Team ---------- */
.team-members { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.team-member { display: flex; justify-content: space-between; align-items: center; }
.team-member-name { font-weight: 700; color: var(--acreetion-text-bright); }

/* ---------- Mirrors / footer ---------- */
.mirror-logo a {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--acreetion-green);
  text-decoration: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
}
.mirror-logo a:hover { text-decoration: underline; }
.page-footer { text-align: center; padding: 2rem; margin-top: 2rem; border-top: 1px solid var(--acreetion-box-border); color: #777; font-size: 0.9rem; }
.page-footer p { color: #777; margin-bottom: 0.5rem; text-align: center; }
.page-footer a { color: var(--acreetion-green); text-decoration: none; }
.page-footer a:hover { text-decoration: underline; }

/* ---------- Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
}
.modal-overlay.visible { display: flex; opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal-box {
  position: relative;
  cursor: default;
  background-color: var(--acreetion-box-bg);
  border: 1px solid var(--acreetion-box-border);
  padding: 2rem 3rem;
  max-width: 700px;
}
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--acreetion-green);
  color: black;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  z-index: 1001;
}
.modal-close-btn:hover { background-color: #d15c64; transform: scale(1.05); }
.modal-box h2 { color: var(--acreetion-green); }

/* ---------- Off-canvas sidebar (hamburger nav) ---------- */
#hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-right: 0.5rem;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
  order: -1;
}
#hamburger span { display: block; width: 22px; height: 2px; background: var(--acreetion-text-bright, #e5e5e5); border-radius: 2px; transition: all 0.25s ease; transform-origin: center; }
#sidebar-overlay { display: none; }
#sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--acreetion-body-bg, #121212);
  border-right: 1px solid var(--acreetion-box-border, #333);
  z-index: 9999;
  overflow-y: auto;
  transition: left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}
#sidebar.open { left: 0; }
#page-scale { width: 100%; }
body.sidebar-open #page-wrap { transform: translateX(300px); }
.sidebar-header img { border-radius: 6px; }
.sidebar-header span { font-family: 'Fira Code', monospace; font-size: 1.2rem; font-weight: 700; color: var(--acreetion-text-bright, #e5e5e5); }
.sidebar-header span span { color: var(--acreetion-green, #2ecc71); }
.sidebar-body { padding: 0.5rem 0; }
.sidebar-body ul { list-style: none; padding: 0; margin: 0; }
.sidebar-body ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  color: var(--acreetion-text, #b2b2b2);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.15s;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--acreetion-box-border, #222);
}
.sidebar-body ul li a:hover {
  background: var(--acreetion-panel-bg, #1a1a1a);
  color: var(--acreetion-green, #2ecc71);
  border-left-color: var(--acreetion-green, #2ecc71);
}
.sidebar-footer { display: flex; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid var(--acreetion-box-border, #333); }
.sidebar-footer a { flex: 1; text-align: center; padding: 0.5rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.sidebar-footer a:first-child { background: var(--acreetion-green, #2ecc71); color: #000; }
.sidebar-footer a:last-child { border: 1px solid var(--acreetion-box-border, #333); color: var(--acreetion-text, #b2b2b2); }
.sidebar-footer a:last-child:hover { background: var(--acreetion-panel-bg, #1a1a1a); }

/* ---------- GNOME info button ---------- */
#gnome-info-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--acreetion-purple);
  color: white;
  padding: 10px 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  z-index: 999;
  transition: all 0.3s ease;
  animation: gnomeWiggle 0.5s ease-in-out 3s, gnomePulse 2s ease-in-out 4s infinite;
}
#gnome-info-btn:hover { background-color: #8e44ad; transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(155, 89, 182, 0.5); }
@keyframes gnomeWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
  75% { transform: rotate(-2deg); }
}
@keyframes gnomePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(155, 89, 182, 0.3); }
}

/* ---------- Scrollbar / selection / focus ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--acreetion-body-bg, #121212); }
::-webkit-scrollbar-thumb { background: var(--acreetion-box-border, #333); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--acreetion-green, #2ecc71); }
.edition-pick:hover { transform: translateY(-2px) !important; }
::selection { background: rgba(46, 204, 113, 0.3); color: var(--acreetion-text-bright, #fff); }
:focus-visible { outline: 2px solid var(--acreetion-green, #2ecc71); outline-offset: 3px; border-radius: 4px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--acreetion-green, #2ecc71); outline-offset: 3px; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--acreetion-green, #2ecc71);
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.3s;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
#back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--acreetion-green, #2ecc71);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 999;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4); }

/* ---------- Links ---------- */
a { color: var(--acreetion-green, #2ecc71); text-decoration: none; position: relative; }
a:not(.btn):not(.logo):not(.skip-link):not(.social-link):not(.community-link):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* ---------- Motion ---------- */
html { scroll-behavior: smooth; }
@keyframes pageIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .page-wrapper { display: flex !important; flex-direction: column; gap: 1.5rem; padding: 0 1rem; max-width: 100%; box-sizing: border-box; }
  .sidebar { order: -1; max-width: 100% !important; width: 100% !important; min-width: 0 !important; }
  .content-feed { max-width: 100% !important; min-width: 0 !important; width: 100% !important; }
}
@media (max-width: 768px) {
  .header-content { flex-direction: column; gap: 1rem; padding: 0.75rem 1rem; }
  .logo { font-size: 1.5rem; }
  .logo-img { height: 35px; }
  .main-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .main-nav a { margin-left: 0; padding: 0.5rem 1rem; font-size: 0.9rem; }
  .page-wrapper { margin: 1rem auto; gap: 1rem; max-width: 100vw; box-sizing: border-box; }
  .content-feed { max-width: 100%; min-width: 0; width: 100%; }
  .sidebar { max-width: 100%; width: 100%; }
  .article-logo-cluster { float: none; display: block; text-align: center; margin: 0 auto 1.5rem; }
  .article-logo-cluster .hero-logo-img { max-width: 120px; }
  h1, .box-header h2 { font-size: 1.3rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .box-body { padding: 1rem; }
  .modal-box { padding: 1.5rem; margin: 0.5rem; max-width: calc(100vw - 1rem); }
  .announcement-content { font-size: 0.85rem; text-align: center; }
  .announcement-bar .separator { margin: 0 0.5rem; }
  .announcement-content > span { padding-right: 2rem; }
}
@media (max-width: 480px) {
  .header-content { padding: 0.5rem; }
  .logo { font-size: 1.3rem; }
  .logo-img { height: 30px; }
  .main-nav { gap: 0.3rem; }
  .main-nav a { font-size: 0.85rem; padding: 0.4rem 0.6rem; }
  * { max-width: 100vw !important; box-sizing: border-box !important; }
  .page-wrapper, .content-feed, main, .sidebar, aside { width: 100% !important; max-width: 100vw !important; min-width: 0 !important; box-sizing: border-box !important; }
  .page-wrapper { padding: 0 0.5rem !important; margin: 0.5rem auto !important; display: flex !important; flex-direction: column !important; }
  .content-feed { display: flex !important; flex-direction: column !important; }
  .sidebar { display: block !important; }
  .box-header { padding: 0.6rem 1rem; }
  .box-header h2 { font-size: 1rem; }
  .box-body { padding: 0.75rem; font-size: 0.95rem; }
  .btn { padding: 0.5rem 1rem; font-size: 0.9rem; display: block; width: 100%; text-align: center; margin: 0.25rem 0; box-sizing: border-box; max-width: 100%; }
  .modal-box { padding: 1rem; max-width: calc(100vw - 1rem); }
  .modal-close-btn { width: 35px; height: 35px; font-size: 1.2rem; }
  .announcement-content { font-size: 0.8rem; white-space: normal; }
  .announcement-bar { padding: 0.5rem 0.5rem; }
  .announcement-bar .separator { display: none; }
  .announcement-content > span { padding-right: 0; display: block; margin-bottom: 0.25rem; }
  .article-logo-cluster .hero-logo-img { max-width: 100px; }
  .spec-list .spec-title { min-width: 90px; font-size: 0.85rem; }
  .team-member { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  h1, .box-header h2 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.95rem; }
  .tech-detail-heading { font-size: 1rem; }
  #gnome-info-btn { bottom: 80px; left: 8px; font-size: 0.8rem; padding: 8px 12px; }
}

/* ============================================================
   Homepage components — migrated from inline style attributes
   (identical values; the classes let the layout breathe)
   ============================================================ */

/* Hero */
.hero { text-align: center; padding: 2.5rem 1rem 1.5rem; }
.hero-logo { width: 110px; height: 110px; margin-bottom: 1.25rem; object-fit: contain; }
.hero-title {
  font-size: clamp(2rem, 7.5vw, 2.8rem);
  font-weight: 800;
  color: var(--acreetion-text-bright);
  margin: 0 0 0.25rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.hero-subtitle { font-size: 1.2rem; color: var(--acreetion-green); margin: 0 0 1.5rem; font-weight: 500; }
/* higher-specificity overrides: these live inside .article-content whose rules outrank a bare class */
.hero .hero-subtitle { color: var(--acreetion-green); margin: 0 0 1.5rem; }
.hero .hero-tagline { margin: 0 auto 2rem; }
.hero a.hero-note--muted { color: var(--acreetion-text); }
.hero-tagline { color: var(--acreetion-text); max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.7; }
.hero-tagline strong { color: var(--acreetion-text-bright); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.btn-download {
  background: var(--acreetion-green);
  color: #000;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-download--ghost { background: transparent; color: var(--acreetion-green); border: 2px solid var(--acreetion-green); }
.hero-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; }
.hero-note { color: var(--acreetion-green); font-weight: 500; }
.hero-note--muted { color: var(--acreetion-text); font-weight: 500; }

/* Section headings */
.section-title { color: var(--acreetion-text-bright); border: none; }
.section-title--center-lg { text-align: center; font-size: 1.6rem; margin: 3rem 0 1.5rem; }
.section-title--block { text-align: left; font-size: 1.3rem; }
.section-title--mt-lg { margin: 2.5rem 0 1rem; }
.section-title--mt-md { margin: 2rem 0 1rem; }
.section-title--mt-sm { margin: 1.5rem 0 1rem; }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.feature-card { background: var(--acreetion-box-bg); border: 1px solid var(--acreetion-box-border); border-radius: 12px; padding: 1.5rem; }
.feature-card .bi { display: block; font-size: 1.6rem; color: var(--acreetion-green); margin-bottom: 0.75rem; }
.feature-card h3 { color: var(--acreetion-text-bright); font-size: 1.05rem; margin: 0 0 0.4rem; border: none; }
.feature-card p { color: var(--acreetion-text); font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* Benefit cards */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.benefit-card {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.12) 0%, rgba(46, 204, 113, 0.03) 100%);
  border: 1px solid var(--acreetion-box-border);
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.benefit-card .bi { display: block; font-size: 2.5rem; color: var(--acreetion-green); margin-bottom: 0.75rem; }
.benefit-card .benefit-name { color: var(--acreetion-text-bright); font-weight: 600; margin: 0; font-size: 0.95rem; }
.benefit-card .benefit-desc { color: var(--acreetion-text); font-size: 0.8rem; margin: 0.25rem 0 0; }

/* Spec grid */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
.spec-item { padding: 0.75rem 1rem; background: var(--acreetion-box-bg); border: 1px solid var(--acreetion-box-border); border-radius: 8px; }
.spec-label { color: var(--acreetion-text); font-size: 0.8rem; display: block; margin-bottom: 0.15rem; }
.spec-value { color: var(--acreetion-text-bright); font-weight: 600; font-size: 0.95rem; }

/* Community spotlight cards */
.community-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.community-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--acreetion-box-bg);
  border: 1px solid var(--acreetion-box-border);
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s;
}
.community-link:hover { border-color: var(--acreetion-green); }
.community-link .bi { font-size: 1.5rem; color: var(--acreetion-green); }
.community-link-title { color: var(--acreetion-text-bright); font-weight: 600; font-size: 0.85rem; }
.community-link-desc { color: var(--acreetion-text); font-size: 0.78rem; line-height: 1.4; }

/* Sidebar community box */
.community-box-body { padding: 1rem; text-align: center; }
.community-intro { color: var(--acreetion-text); font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.6; }
.community-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.75rem; }
.community-stat { padding: 0.5rem; background: var(--acreetion-panel-bg); border-radius: 8px; }
.community-stat-value { font-size: 1.2rem; font-weight: 700; color: var(--acreetion-green); font-family: var(--font-mono); }
.community-stat-label { font-size: 0.7rem; color: #777; }
.btn-contributors {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--acreetion-green);
  color: #000;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.sidebar-spaced { margin-top: 2rem; }

/* Small spacing utilities (used during the inline-style migration) */
.mt-1 { margin-top: 1rem; }

/* Mobile: collapse the homepage grids (must come AFTER the component
   definitions — media queries don't add specificity, so these would
   otherwise lose to the later component rules) */
@media (max-width: 600px) {
  .feature-grid, .spec-grid { grid-template-columns: 1fr; }
  .benefit-grid, .community-links { grid-template-columns: 1fr; }
}
