/* ─────────────────────────────────────────────────────────────────────────
   NovaEditor Website — Shared Stylesheet
   Brand: Novation orange (#ff6b35) on near-black (#090c14)
   ───────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #090c14;
  --bg-2:       #0e1220;
  --panel:      #111521;
  --panel-2:    #161c2e;
  --border:     #1e2640;
  --border-hi:  #2a3456;

  --accent:     #ff6b35;
  --accent-dim: rgba(255,107,53,.12);
  --accent-glow:rgba(255,107,53,.25);
  --teal:       #00c9a7;
  --teal-dim:   rgba(0,201,167,.12);
  --blue:       #3d8ef8;
  --yellow:     #f5c842;
  --red:        #e84040;

  --text:       #e4e9f5;
  --text-2:     #8994b8;
  --text-3:     #4f5a7a;

  --ff:         'Inter', system-ui, sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  18px;
  --r-2xl: 28px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.5);
  --shadow-md:  0 4px 20px rgba(0,0,0,.6);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.7);
  --shadow-accent: 0 0 20px var(--accent-glow);
  --shadow-teal:   0 0 20px rgba(0,201,167,.2);

  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: .8; }

img { max-width: 100%; display: block; }

/* ── Utility ───────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--alt { background: var(--bg-2); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-glow);
}
.badge--teal { background: var(--teal-dim); color: var(--teal); border-color: rgba(0,201,167,.3); }

.tag {
  display: inline-block; padding: 2px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent);
}

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.15; color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px; color: var(--text-2); max-width: 580px; line-height: 1.7;
}

.text-accent { color: var(--accent); }
.text-teal   { color: var(--teal); }

.divider {
  border: none; border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-lg);
  font-family: var(--ff); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s;
  text-decoration: none; line-height: 1;
}
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: #ff8255; opacity: 1; transform: translateY(-1px); box-shadow: 0 0 28px var(--accent-glow); }

.btn--outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

.btn--teal {
  background: var(--teal); color: #04111a;
  box-shadow: var(--shadow-teal);
}
.btn--teal:hover { background: #00e8c0; opacity: 1; transform: translateY(-1px); }

.btn--ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: var(--border-hi); opacity: 1; }

.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 17px; }

/* ── Navbar ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(9,12,20,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: var(--text); text-decoration: none;
}
.nav__logo img { width: 32px; height: 32px; object-fit: contain; }

.nav__links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color .15s;
}
.nav__links a:hover { color: var(--text); opacity: 1; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 4px;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,107,53,.08) 0%, transparent 70%), var(--bg);
  overflow: hidden;
  text-align: center;
}
.hero__badge { margin-bottom: 24px; }
.hero__title {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 900; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-2);
  max-width: 620px; margin: 0 auto 36px; line-height: 1.7;
}
.hero__actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px; margin-bottom: 60px;
}
.hero__platforms {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--text-3);
}
.hero__platforms span { color: var(--text-2); }

.hero__screenshot {
  margin: 0 auto;
  max-width: 980px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255,107,53,.08);
  overflow: hidden;
}

/* ── Feature Grid ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.feature-card {
  background: var(--panel);
  padding: 36px 32px;
  transition: background .2s;
}
.feature-card:hover { background: var(--panel-2); }
.feature-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim); border-radius: var(--r-md);
  font-size: 22px; margin-bottom: 20px;
  border: 1px solid rgba(255,107,53,.2);
}
.feature-card__icon--teal { background: var(--teal-dim); border-color: rgba(0,201,167,.2); }
.feature-card__icon--blue { background: rgba(61,142,248,.1); border-color: rgba(61,142,248,.2); }
.feature-card__title {
  font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text);
}
.feature-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Screenshot Sections ───────────────────────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase--reverse { direction: rtl; }
.showcase--reverse > * { direction: ltr; }

.showcase__img {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.showcase__content {}
.showcase__label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.showcase__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.showcase__desc {
  font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px;
}
.showcase__list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.showcase__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-2);
}
.showcase__list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff6b35'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 760px; margin: 0 auto;
}
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  background: linear-gradient(135deg, var(--panel-2) 0%, rgba(255,107,53,.05) 100%);
}
.pricing-card__label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-2);
}
.pricing-card__name {
  font-size: 24px; font-weight: 800; color: var(--text);
}
.pricing-card__price {
  display: flex; align-items: baseline; gap: 4px;
}
.pricing-card__price strong {
  font-size: 48px; font-weight: 900; color: var(--text);
}
.pricing-card__price span { font-size: 16px; color: var(--text-2); }
.pricing-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.pricing-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-2);
}
.pricing-card__features li .check {
  color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 1px;
}
.pricing-card__features li .cross {
  color: var(--text-3); font-size: 16px; flex-shrink: 0; margin-top: 1px;
}

/* ── Gallery (screenshots grid) ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.gallery-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.gallery-card img { width: 100%; display: block; }
.gallery-card__body { padding: 16px 18px; }
.gallery-card__title {
  font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px;
}
.gallery-card__desc { font-size: 13px; color: var(--text-2); }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--panel);
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-hi); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--text);
  list-style: none; user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--accent); flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--accent); }
.faq-item__body {
  padding: 0 24px 20px;
  font-size: 15px; color: var(--text-2); line-height: 1.7;
}
.faq-item__body p + p { margin-top: 10px; }
.faq-item__body a { color: var(--accent); }

/* ── Contact form ──────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--text-2);
  text-transform: uppercase; letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--ff); font-size: 15px;
  padding: 12px 16px;
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--panel-2); }

/* ── Docs ──────────────────────────────────────────────────────────────── */
.docs-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.docs-nav { position: sticky; top: calc(var(--nav-h) + 24px); }
.docs-nav__title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.docs-nav__list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.docs-nav__list a {
  display: block; padding: 7px 12px;
  font-size: 14px; color: var(--text-2); border-radius: var(--r-sm);
  text-decoration: none; transition: all .15s;
}
.docs-nav__list a:hover { color: var(--text); background: var(--panel); }
.docs-nav__list a.active { color: var(--accent); background: var(--accent-dim); }

.docs-content { min-width: 0; }
.docs-content h2 {
  font-size: 28px; font-weight: 800; margin: 48px 0 16px; padding-top: 48px;
  border-top: 1px solid var(--border); color: var(--text);
}
.docs-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.docs-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.docs-content h4 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; color: var(--text-2); }
.docs-content p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.docs-content ul, .docs-content ol { padding-left: 20px; color: var(--text-2); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.docs-content li { margin-bottom: 6px; }
.docs-content code {
  font-family: var(--ff-mono); font-size: 13px;
  background: var(--panel); color: var(--teal);
  padding: 2px 7px; border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.docs-content table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 24px; }
.docs-content th { background: var(--panel-2); color: var(--text-2); font-weight: 600; text-align: left; padding: 10px 14px; border: 1px solid var(--border); }
.docs-content td { padding: 9px 14px; border: 1px solid var(--border); color: var(--text-2); vertical-align: top; }
.docs-content tr:nth-child(even) td { background: rgba(14,18,32,.5); }
.docs-content .callout {
  background: var(--accent-dim); border: 1px solid rgba(255,107,53,.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md); padding: 16px 20px;
  font-size: 14px; color: var(--text-2); margin: 20px 0;
}
.docs-content .callout strong { color: var(--accent); }

/* ── Policy pages ──────────────────────────────────────────────────────── */
.policy { max-width: 780px; }
.policy h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.policy h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: var(--text-2); }
.policy p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 12px; }
.policy ul { padding-left: 20px; color: var(--text-2); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.policy li { margin-bottom: 6px; }
.policy a { color: var(--accent); }
.policy .last-updated { font-size: 13px; color: var(--text-3); margin-bottom: 40px; }

/* ── Page hero (inner pages) ───────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,107,53,.06) 0%, transparent 70%), var(--bg);
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px;
}
.page-hero__sub {
  font-size: 18px; color: var(--text-2); max-width: 520px; margin: 0 auto;
}

/* ── Download section ──────────────────────────────────────────────────── */
.download-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.download-card {
  background: var(--panel);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 28px; text-align: center;
  transition: border-color .2s;
}
.download-card:hover { border-color: var(--border-hi); }
.download-card__icon { font-size: 36px; margin-bottom: 16px; }
.download-card__os { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.download-card__req { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 14px;
}
.footer__brand-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer__tagline { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 260px; }

.footer__col-title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px; color: var(--text-2); text-decoration: none; transition: color .15s;
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-3);
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { color: var(--text-3); }
.footer__bottom a:hover { color: var(--text-2); }

/* ── Presskit specific ─────────────────────────────────────────────────── */
.presskit-header {
  display: flex; align-items: center; gap: 24px;
  padding: 60px 0 48px;
}
.presskit-header__logo { width: 80px; height: 80px; object-fit: contain; }
.presskit-header__name { font-size: 40px; font-weight: 900; }
.presskit-header__meta { font-size: 15px; color: var(--text-2); margin-top: 4px; }

.asset-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.asset-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.asset-card--featured { grid-column: 1 / -1; }
.asset-card img { width: 100%; display: block; }
.asset-card__body { padding: 14px 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.asset-card__info {}
.asset-card__title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.asset-card__desc { font-size: 12px; color: var(--text-2); }
.asset-card__dl {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--r-sm);
  background: var(--panel-2); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--text-2);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: border-color .15s, color .15s;
}
.asset-card__dl:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

.factbox {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
}
.factbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.factbox-item {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; gap: 16px;
}
.factbox-item:nth-child(odd) { border-right: 1px solid var(--border); }
.factbox-item:nth-last-child(-n+2) { border-bottom: none; }
.factbox-item__label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.factbox-item__value { font-size: 15px; color: var(--text); font-weight: 500; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; gap: 32px; }
  .showcase--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .docs-nav { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .download-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .nav__links, .nav__cta .btn--outline { display: none; }
  .nav__toggle { display: block; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 0 48px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .page-hero { padding: 52px 0 40px; }
  .factbox-grid { grid-template-columns: 1fr; }
  .factbox-item:nth-child(odd) { border-right: none; }
  .factbox-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .factbox-item:last-child { border-bottom: none; }
}

/* ── Misc helpers ──────────────────────────────────────────────────────── */
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
