.skip-link{position:absolute;top:-100%;left:16px;background:var(--ink,#0B0B0B);color:#fff;padding:8px 16px;z-index:10000;font-size:14px;border-radius:4px;text-decoration:none}.skip-link:focus{top:16px}
:root {
  --bg: #ffffff;
  --bg-2: #f5f5f5;
  --ink: #0b0b0b;
  --ink-2: #1a1a1a;
  --muted: #9c968a;
  --line: #d9d4c9;
  --pill: #6e6a60;
  --accent-a: #b5e853;
  --accent-c: #6366f1;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: none;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink);
}

.nav-wrap {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  pointer-events: none;
}

.logo {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--pill);
  padding: 7px;
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav a {
  position: relative;
  color: #f1eee8;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 999px;
  overflow: hidden;
  transition: color 220ms ease;
}

.nav a .label {
  position: relative;
  z-index: 2;
  display: inline-flex;
}

.nav a .label .ch {
  display: inline-block;
  transition: transform 280ms cubic-bezier(0.6, -0.2, 0.2, 1.4);
}

.nav a:hover .label .ch {
  animation: shimmy 520ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes shimmy {
  0% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-3px) rotate(-6deg);
  }
  55% {
    transform: translateY(2px) rotate(4deg);
  }
  80% {
    transform: translateY(-1px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.nav a .ink {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: 999px;
  transform: translateY(105%);
  transition: transform 360ms cubic-bezier(0.7, 0.05, 0.2, 1);
  z-index: 1;
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover .ink {
  transform: translateY(0);
}

.nav a.contact {
  background: var(--bg);
  color: var(--ink);
  padding: 11px 22px;
}

.nav a.contact .ink {
  background: var(--ink);
}

.nav a.contact:hover {
  color: var(--bg);
}

.article-page {
  padding-top: 100px;
}

.breadcrumb {
  padding: 28px 60px 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 12px;
  color: var(--line);
}

.breadcrumb a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms;
}

.breadcrumb a:hover {
  border-bottom-color: var(--ink);
}

.breadcrumb [aria-current="page"] {
  color: var(--muted);
}

.hero-img {
  margin: 0 60px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 21 / 9;
  max-height: 520px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 28px 100px;
}

.article-shell header {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 22px;
}

.article-kicker time {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-kicker .pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-2);
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--ink);
}

.article-shell h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lede {
  margin-top: 20px;
  font-size: 20px;
  color: var(--ink-2);
  line-height: 1.45;
  font-weight: 500;
}

.article-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}

.article-body > * + * {
  margin-top: 1.25em;
}

.article-body h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body ul,
.article-body ol {
  margin-left: 1.25em;
}

.article-body li + li {
  margin-top: 0.5em;
}

.article-body strong {
  color: var(--ink);
  font-weight: 600;
}

.inline-cta {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--bg);
}

.inline-cta p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
}

.inline-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-a);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 200ms ease;
}

.inline-cta a:hover {
  transform: translateY(-2px);
}

.related {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px 100px;
}

.related h2 {
  font-size: 14px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.related-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition:
    transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 400ms;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.related-card .r-thumb {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.related-card .r-copy {
  padding: 16px 18px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

footer.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 50px 60px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #6e6e6e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer.site-footer a {
  color: #cfcfcf;
}

@media (max-width: 900px) {
  .hero-img {
    margin: 0 24px;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .breadcrumb {
    padding-left: 24px;
    padding-right: 24px;
  }

  footer.site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  pointer-events: auto;
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pill);
  border: none; cursor: pointer;
  color: #F1EEE8;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px rgba(0,0,0,0.08);
}
.nav-toggle .bar {
  display: block; width: 18px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 56px; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 4px;
    padding: 8px;
    min-width: 220px;
    border-radius: 14px;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(.2,.8,.2,1), visibility 220ms;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .nav a { padding: 12px 18px; font-size: 14px; text-align: center; border-radius: 10px; }
  .nav a.contact { padding: 12px 18px; border-radius: 10px; }
}

@media (max-width: 600px) {
  .nav-wrap {
    padding: 0 16px;
  }
}

/* FAQ Section Styling */
.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--ink);
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
}
