/* thisisaqib.com — shared styles */

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

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-alt: #1A1A1A;
  --border: #1F1F1F;
  --border-strong: #2A2A2A;
  --text-primary: #F5F5F5;
  --text-secondary: #A1A1A1;
  --text-muted: #6B6B6B;
  --accent: #00D97E;
  --accent-dim: #008F52;
  --accent-bg: rgba(0, 217, 126, 0.08);

  --container: 1200px;
  --section-y: 96px;

  --font-sans: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); }
h1 { font-size: clamp(40px, 6vw, 56px); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.4vw, 40px); line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: 24px; line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }

p { color: var(--text-secondary); }
.body-l { font-size: 18px; line-height: 1.6; }
.small { font-size: 14px; }
.muted { color: var(--text-muted); }
.secondary { color: var(--text-secondary); }
.primary { color: var(--text-primary); }
.accent { color: var(--accent); }

code, .mono, kbd { font-family: var(--font-mono); }

.caption {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-y) 0; }
.section-tight { padding: 64px 0; }

@media (max-width: 720px) {
  :root { --section-y: 64px; }
  .container { padding: 0 20px; }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; height: 24px; }
.nav-logo svg { height: 22px; width: auto; }
.nav-logo .wm { font-family: var(--font-mono); font-size: 15px; font-weight: 500; color: var(--text-primary); letter-spacing: -0.01em; }
.nav-logo .wm em { font-style: normal; color: var(--accent); }
.nav-logo .wm .dot { display: inline-block; width: 6px; height: 6px; background: var(--accent); margin-left: 6px; vertical-align: 2px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 120ms ease, background 120ms ease;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--surface); }
.nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #001a0d !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 120ms ease;
}
.nav-cta:hover { background: #00f08c; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; background: var(--bg); border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform 200ms ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: var(--text-secondary); }
  .nav-toggle:hover { background: var(--surface); }
  .nav-cta { margin-left: 0; text-align: center; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.btn-primary {
  background: var(--accent);
  color: #001a0d;
}
.btn-primary:hover { background: #00f08c; }
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 24px; font-size: 16px; }
.btn-icon { width: 16px; height: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  transition: gap 120ms ease;
}
.link-arrow:hover { gap: 10px; color: #00f08c; }

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.chip-accent { background: var(--accent-bg); border-color: rgba(0,217,126,0.25); color: var(--accent); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-icon { width: 16px; height: 16px; display: inline-block; flex-shrink: 0; opacity: 0.9; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.card:hover { background: var(--surface-alt); border-color: var(--border-strong); }
.card-accent { border-color: rgba(0, 217, 126, 0.35); position: relative; }
.card-accent::before {
  content: 'MOST CHOSEN';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: #001a0d;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Hero */
.hero {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  width: 1000px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,217,126,0.12), transparent 60%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 6fr 5fr; gap: 64px; align-items: center; position: relative; }
.hero h1 { margin-bottom: 24px; }
.hero .sub { max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stack-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.hero-visual { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.hero-visual img { width: 100%; height: auto; border-radius: 6px; }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Section heads */
.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head .sub { color: var(--text-secondary); font-size: 18px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Feature card (what I build) */
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: background 160ms ease, border-color 160ms ease;
}
.feature:hover { background: var(--surface-alt); border-color: var(--border-strong); }
.feature .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-bg);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature h3 { margin-bottom: 8px; }
.feature .desc { margin-bottom: 12px; color: var(--text-secondary); }
.feature .examples { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Offer card */
.offer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer.featured { border-color: rgba(0,217,126,0.4); background: linear-gradient(180deg, rgba(0,217,126,0.04), var(--surface) 30%); }
.offer .caption { margin-bottom: 16px; }
.offer h3 { margin-bottom: 8px; }
.offer .price { font-family: var(--font-mono); font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.offer ul { list-style: none; padding: 0; margin: 0 0 24px 0; }
.offer ul li { padding: 8px 0 8px 24px; position: relative; color: var(--text-secondary); font-size: 15px; line-height: 1.5; }
.offer ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.offer .offer-cta { margin-top: auto; padding-top: 8px; }

/* Case study card */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease;
  display: flex;
  flex-direction: column;
}
.case-card:hover { border-color: var(--border-strong); }
.case-card .thumb {
  aspect-ratio: 12 / 7;
  background: #0F0F0F;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.case-card .thumb img,
.case-card .thumb object { width: 100%; height: 100%; object-fit: cover; }
.case-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.case-card .caption { margin-bottom: 12px; color: var(--text-muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.case-card h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.case-card .desc { font-size: 15px; color: var(--text-secondary); margin-bottom: 16px; flex: 1; }
.case-card .tags { margin-bottom: 16px; }
.case-card .read { margin-top: auto; }

/* Horizontal scroll row (home recent) */
.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  scrollbar-color: var(--border-strong) transparent;
}
.scroll-row::-webkit-scrollbar { height: 8px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
.scroll-row > * { scroll-snap-align: start; }

/* Principle blocks */
.principle .num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.principle h3 { margin-bottom: 12px; }
.principle p { color: var(--text-secondary); }

/* Lead magnet */
.lead-card {
  background: var(--surface);
  border: 1px solid rgba(0,217,126,0.35);
  border-radius: 12px;
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.lead-card .caption { margin-bottom: 16px; }
.lead-card h2 { font-size: 28px; margin-bottom: 12px; }
.lead-card .sub { color: var(--text-secondary); margin-bottom: 28px; }
.lead-form {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 6px;
}
.lead-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 10px 14px;
  outline: none;
}
.lead-form input::placeholder { color: var(--text-muted); }
.lead-form button {
  background: var(--accent);
  color: #001a0d;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}
.lead-form button:hover { background: #00f08c; }

/* Final CTA */
.final-cta {
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,217,126,0.08), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 { margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.final-cta .sub { color: var(--text-secondary); margin-bottom: 32px; font-size: 18px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta .fineprint { color: var(--text-muted); font-size: 14px; font-family: var(--font-mono); margin-top: 20px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px 0;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 120ms ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-mono);
}
@media (max-width: 720px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* Page hero (non-home) */
.page-hero {
  padding: 96px 0 64px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero .caption { margin-bottom: 20px; display: inline-block; }
.page-hero h1 { margin-bottom: 20px; max-width: 900px; }
.page-hero .sub { font-size: 20px; color: var(--text-secondary); max-width: 720px; line-height: 1.5; }
.page-hero-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Comparison table */
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 15px;
}
.cmp-table th, .cmp-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-secondary);
}
.cmp-table th { background: var(--surface-alt); color: var(--text-primary); font-weight: 600; font-size: 14px; }
.cmp-table th:first-child { background: var(--bg); }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table th:last-child, .cmp-table td:last-child { border-right: 0; }
.cmp-table tbody th { background: var(--bg); color: var(--text-muted); font-family: var(--font-mono); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 720px) { .cmp-table { font-size: 13px; } .cmp-table th, .cmp-table td { padding: 12px; } }

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--text-secondary);
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 1px solid var(--accent);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 5px; top: 22px;
  width: 10px; height: 5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.stat .value { font-size: 32px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 6px; font-family: var(--font-mono); }
.stat .value .unit { font-size: 16px; color: var(--text-secondary); margin-left: 4px; }
.stat .label { font-size: 13px; color: var(--text-muted); }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
.timeline .step {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
  min-height: 160px;
  position: relative;
}
.timeline .step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.timeline .step h4 { font-size: 16px; margin-bottom: 8px; }
.timeline .step p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Process list (5-day audit, etc) */
.process-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.process-list .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  gap: 24px;
}
.process-list .row:last-child { border-bottom: 0; }
.process-list .row .day { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; }
.process-list .row .desc { color: var(--text-secondary); }

/* FAQ */
.faq { border-top: 1px solid var(--border); }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--accent);
  transition: transform 200ms ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 16px; color: var(--text-secondary); font-size: 15px; }

/* Body content */
.prose { max-width: 720px; }
.prose p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; }
.prose p + p { margin-top: 0; }

/* About hero */
.about-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero .photo {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}
.about-hero .photo img { width: 100%; height: 100%; object-fit: cover; }

/* Two-column "for / not for" */
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .two-col-list { grid-template-columns: 1fr; } }
.two-col-list h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; font-weight: 500; }
.two-col-list ul { list-style: none; padding: 0; }
.two-col-list li { padding: 12px 0 12px 24px; position: relative; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.two-col-list .yes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.two-col-list .no li::before { content: '×'; position: absolute; left: 0; color: var(--text-muted); font-weight: 600; font-size: 20px; line-height: 1; top: 14px; }

/* Article card */
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 160ms ease;
}
.article-card:hover { border-color: var(--border-strong); }
.article-card .meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; }
.article-card h3 { font-size: 22px; line-height: 1.3; }
.article-card .excerpt { color: var(--text-secondary); font-size: 15px; }

/* Filters */
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 120ms ease;
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--border-strong); }
.filter-btn.active { background: var(--accent-bg); border-color: rgba(0,217,126,0.35); color: var(--accent); }

/* Architecture image holder */
.architecture {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.architecture img, .architecture object { width: 100%; height: auto; display: block; }
.architecture .caption-below { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-top: 16px; text-align: center; letter-spacing: 0.08em; }

/* Case study page meta row */
.cs-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* Subsections */
.subsection { margin: 64px 0; }
.subsection h2 { margin-bottom: 24px; }

/* Anchor offset for sticky nav */
section[id] { scroll-margin-top: 80px; }


/* Legal pages */
.legal-prose h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose ul { color: var(--text-secondary); font-size: 16px; line-height: 1.6; margin-bottom: 12px; }
.legal-prose ul { padding-left: 22px; }
.legal-prose ul li { margin-bottom: 6px; }
.legal-prose a { color: var(--accent); }
.legal-prose a:hover { color: #00f08c; text-decoration: underline; }
