/* ============================================================
   Gitify — Static Site Styles
   ============================================================ */

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

/* ============================================================
   Dark theme (oklch-based)
   ============================================================ */
:root {
  --bg:        oklch(0.155 0.008 265);
  --bg-1:      oklch(0.182 0.009 265);
  --bg-2:      oklch(0.205 0.009 265);
  --panel:     oklch(0.205 0.009 265);
  --panel-2:   oklch(0.235 0.010 265);
  --border:    oklch(0.295 0.010 265);
  --border-strong: oklch(0.345 0.012 265);

  --fg:        oklch(0.965 0.004 265);
  --fg-muted:  oklch(0.74 0.010 265);
  --fg-dim:    oklch(0.58 0.012 265);
  --fg-faint:  oklch(0.46 0.012 265);

  --accent:        oklch(0.62 0.16 248);
  --accent-bright: oklch(0.72 0.14 248);
  --accent-soft:   oklch(0.62 0.16 248 / 0.15);
  --accent-border: oklch(0.62 0.16 248 / 0.42);
  --green: oklch(0.74 0.18 145);
  --amber: oklch(0.80 0.16 78);
  --red:   oklch(0.68 0.21 25);
  --violet: oklch(0.70 0.15 300);

  --radius: 14px;
  --radius-sm: 9px;
}

html {
  background-color: oklch(0.155 0.008 265);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

::selection {
  background: var(--accent-soft);
  color: var(--fg);
}

/* Ambient page glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 620px at 50% -8%, oklch(0.62 0.16 248 / 0.18), transparent 60%),
    radial-gradient(800px 500px at 88% 8%, oklch(0.70 0.15 300 / 0.08), transparent 55%);
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { font-weight: unset; font-size: unset; }

img { max-width: 100%; height: auto; }

main { flex: 1; }

/* ============================================================
   Container
   ============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 72px);
}

/* ============================================================
   Eyebrow
   ============================================================ */
.eyebrow {
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px oklch(0.62 0.16 248 / 0.7);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 22px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.18) inset, 0 8px 24px oklch(0.62 0.16 248 / 0.34);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.22) inset, 0 12px 32px oklch(0.62 0.16 248 / 0.45);
}

.btn-ghost {
  background: oklch(0.97 0.004 265 / 0.04);
  border-color: var(--border-strong);
  color: var(--fg);
}
.btn-ghost:hover {
  background: oklch(0.97 0.004 265 / 0.08);
  border-color: var(--fg-faint);
  transform: translateY(-1px);
}

.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 9px;
}

/* ============================================================
   Gradient text
   ============================================================ */
.gradient-text {
  background: linear-gradient(180deg, oklch(0.84 0.13 248), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.pending {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Cursor blink */
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: oklch(0.155 0.008 265 / 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.02em;
}
.header-brand img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 6px;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
}
.header-nav a {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--fg-muted);
  transition: color 0.15s, background 0.15s;
}
.header-nav a:hover {
  color: var(--fg);
  background: oklch(0.97 0.004 265 / 0.05);
}
.header-spacer { flex: 1; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-changelog {
  display: none;
  font-size: 14.5px;
  color: var(--fg-muted);
  padding: 8px;
  border-radius: 8px;
  transition: color 0.15s;
}
.header-changelog:hover { color: var(--fg); }

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-changelog { display: inline-block; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: 76px; text-align: center; z-index: 1; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 32px;
  padding: 0 14px;
  border-radius: 9999px;
  font-size: 13px;
  border: 1px solid var(--border);
  background: oklch(0.205 0.009 265 / 0.6);
  color: var(--fg-muted);
  margin-bottom: 30px;
}
.hero-pill-tag {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  border-radius: 9999px;
  color: var(--accent-bright);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.hero h1 {
  max-width: 14ch;
  margin: 0 auto 26px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  text-wrap: balance;
}
.hero-subtitle {
  max-width: 60ch;
  margin: 0 auto 36px;
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.5;
  color: var(--fg-muted);
  text-wrap: pretty;
}
.hero-meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12.5px;
  color: var(--fg-faint);
}
.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-faint);
}

/* Product shot */
.hero-screenshot {
  position: relative;
  max-width: 1080px;
  margin: 64px auto 0;
  width: 100%;
}
.hero-screenshot-glow {
  position: absolute;
  inset: -8% -4% -30% -4%;
  z-index: -1;
  background: radial-gradient(60% 60% at 50% 30%, oklch(0.62 0.16 248 / 0.30), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-screenshot-frame {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--bg-1);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.06) inset, 0 40px 90px -20px oklch(0 0 0 / 0.7), 0 16px 40px -16px oklch(0 0 0 / 0.6);
}
.hero-titlebar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: oklch(0.185 0.009 265);
}
.hero-titlebar-dots { display: flex; gap: 7px; }
.hero-titlebar-dots i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.hero-titlebar-dots i:nth-child(1) { background: oklch(0.66 0.17 25); }
.hero-titlebar-dots i:nth-child(2) { background: oklch(0.80 0.15 78); }
.hero-titlebar-dots i:nth-child(3) { background: oklch(0.74 0.16 145); }
.hero-titlebar-label {
  margin: 0 auto;
  font-family: ui-monospace, 'SF Mono', monospace;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--fg-faint);
}
.hero-screenshot-frame img { width: 100%; display: block; }

/* ============================================================
   Proof strip
   ============================================================ */
.proof-strip {
  padding: 56px 0 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.proof-strip-heading {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 26px;
}
.proof-strip-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 13.5px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: oklch(0.205 0.009 265 / 0.5);
  padding: 8px 16px;
  border-radius: 9999px;
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ============================================================
   Feature grid
   ============================================================ */
.features {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.section-header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}
.section-header p {
  font-size: 18px;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, oklch(0.21 0.009 265 / 0.7), oklch(0.185 0.009 265 / 0.7));
  padding: 26px 24px 28px;
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  background: radial-gradient(120% 90% at 0% 0%, oklch(0.62 0.16 248 / 0.08), transparent 55%);
}
.feature-card:hover .feature-card-glow { opacity: 1; }
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--border-strong);
  background: oklch(0.235 0.010 265);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--fg-dim);
  text-wrap: pretty;
  margin: 0;
}

/* ============================================================
   Comparison
   ============================================================ */
.comparison {
  padding: 40px 0 120px;
  position: relative;
  z-index: 1;
}
.comparison .section-header {
  text-align: left;
  margin-left: 0;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: oklch(0.175 0.008 265);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .comparison-grid { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
}
.comparison-col { padding: 38px 34px; }
.comparison-bad {
  background: linear-gradient(180deg, oklch(0.68 0.21 25 / 0.06), transparent);
}
.comparison-good {
  background: linear-gradient(180deg, oklch(0.62 0.16 248 / 0.07), transparent);
}
.comparison-label {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.comparison-label-bad { color: var(--red); }
.comparison-label-good { color: var(--accent-bright); }
.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.comparison-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.45;
}
.comparison-bad .comparison-list li { color: var(--fg-dim); }
.comparison-good .comparison-list li { color: var(--fg-muted); }
.comparison-list svg { flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }

/* Divider */
.comparison-divider {
  display: none;
  position: relative;
  width: 1px;
  background: var(--border);
}
.comparison-divider-mobile {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  background: var(--border);
}
@media (min-width: 1024px) {
  .comparison-divider { display: block; }
  .comparison-divider-mobile { display: none; }
}
.comparison-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--panel-2);
  border: 1px solid var(--border-strong);
  color: var(--accent-bright);
  box-shadow: 0 8px 22px oklch(0 0 0 / 0.5);
}
.comparison-divider .comparison-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================================
   Showcase band
   ============================================================ */
.showcase {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: radial-gradient(90% 120% at 100% 0%, oklch(0.62 0.16 248 / 0.10), transparent 55%), oklch(0.185 0.009 265);
  padding: clamp(40px, 5vw, 56px);
}
@media (min-width: 1024px) {
  .showcase-inner { grid-template-columns: 1fr 1fr; }
}
.showcase-copy h2 {
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 600;
}
.showcase-copy > p {
  color: var(--fg-muted);
  font-size: 17px;
  text-wrap: pretty;
  margin-bottom: 26px;
}
.showcase-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.showcase-points li {
  display: flex;
  gap: 11px;
  align-items: start;
  font-size: 15px;
  color: var(--fg-muted);
}
.showcase-points svg { flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; color: var(--accent-bright); }

/* Showcase screenshot with faded edges */
.showcase-screenshot {
  overflow: hidden;
  border-radius: 12px;
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%), linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, black 60%, transparent 100%), linear-gradient(to bottom, black 65%, transparent 100%);
  mask-composite: intersect;
}
.showcase-screenshot img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* AI showcase variant */
.showcase-inner--ai {
  background: radial-gradient(90% 120% at 100% 0%, oklch(0.70 0.15 300 / 0.12), transparent 55%), oklch(0.185 0.009 265);
}
.palette-list--chat .palette-item {
  height: auto;
  padding: 10px 12px;
  font-size: 13.5px;
  line-height: 1.5;
}

/* Fake command palette */
.palette {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: oklch(0.215 0.010 265);
  box-shadow: 0 30px 70px -20px oklch(0 0 0 / 0.7);
}
.palette-input {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-dim);
  font-size: 15px;
}
.palette-breadcrumb {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--accent-bright);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.palette-cursor {
  width: 2px;
  height: 18px;
  background: var(--accent);
  animation: blink 1.1s step-end infinite;
}
.palette-list { padding: 6px; }
.palette-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  border: 1px solid transparent;
}
.palette-item.active {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--fg);
}
.palette-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--fg-dim); }
.palette-item.active svg { color: var(--accent-bright); }
.palette-item-meta {
  margin-left: auto;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11.5px;
  color: var(--fg-faint);
}

/* ============================================================
   Download
   ============================================================ */
.download {
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
}
.download-card {
  position: relative;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--accent-border);
  border-radius: 24px;
  padding: clamp(52px, 6vw, 70px) clamp(24px, 4vw, 40px) clamp(48px, 5vw, 64px);
  background: radial-gradient(70% 130% at 50% 0%, oklch(0.62 0.16 248 / 0.22), transparent 60%), oklch(0.19 0.009 265);
}
.download-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 90% at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, black, transparent 70%);
}
.download-icon {
  position: relative;
  margin: 0 auto 22px;
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 8px 22px oklch(0 0 0 / 0.45));
}
.download-icon img { width: 100%; height: 100%; object-fit: contain; }
.download h2 {
  position: relative;
  max-width: 16ch;
  margin: 0 auto 16px;
  font-size: clamp(30px, 4.6vw, 50px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 600;
  text-wrap: balance;
}
.download-subtitle {
  position: relative;
  font-size: 18px;
  max-width: 52ch;
  margin: 0 auto 34px;
  color: var(--fg-muted);
}
.download-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.download-details {
  position: relative;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12.5px;
  color: var(--fg-faint);
}
.download-details span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.download-details svg { width: 14px; height: 14px; opacity: 0.8; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 56px 0 48px;
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer-brand a img { width: 28px; height: 28px; flex-shrink: 0; object-fit: contain; border-radius: 6px; }
.footer-brand p { font-size: 14px; color: var(--fg-dim); max-width: 30ch; margin: 0 0 18px; }
.footer-socials { display: flex; gap: 10px; margin-top: auto; }
.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--fg-dim);
  transition: color 0.15s, border-color 0.15s;
}
.footer-social:hover { color: var(--fg); border-color: var(--border-strong); }
.footer-social svg { width: 16px; height: 16px; }

.footer-column h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--fg-faint);
  margin-bottom: 16px;
}
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-column a { font-size: 14px; color: var(--fg-dim); transition: color 0.15s; }
.footer-column a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--fg-faint);
  font-size: 13px;
}
.footer-bottom-mono {
  font-family: ui-monospace, 'SF Mono', monospace;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
