/* Winning 1-on-1s static blog package — self-contained (no SPA hashed CSS) */
:root {
  --brand: #1c82c5;
  --brand-deep: #186899;
  --background: #f7f8fa;
  --foreground: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #ffffff;
  --accent: #1c82c5;
  --accent-foreground: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.w11s-skip {
  position: absolute;
  left: -9999px;
}
.w11s-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
  background: var(--surface);
  padding: 0.5rem 0.75rem;
}
.w11s-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 85%, transparent);
  backdrop-filter: blur(8px);
}
.w11s-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  height: 4rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.w11s-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
}
.w11s-logo img { height: 28px; width: auto; }
.w11s-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.w11s-nav a { color: inherit; text-decoration: none; }
.w11s-nav a:hover,
.w11s-nav a[aria-current="page"] { color: var(--brand); }
.w11s-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.w11s-signin {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.w11s-cta {
  display: inline-flex;
  height: 2.25rem;
  align-items: center;
  border-radius: 0.375rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.w11s-cta:hover { filter: brightness(0.95); text-decoration: none; }
@media (min-width: 640px) {
  .w11s-signin { display: inline-flex; }
  .w11s-header-inner { padding: 0 1.5rem; }
}
@media (min-width: 768px) {
  .w11s-nav { display: flex; }
}
.w11s-main { flex: 1; }
.w11s-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.w11s-article,
.w11s-index {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}
@media (min-width: 640px) {
  .w11s-article,
  .w11s-index { padding: 3rem 1.5rem; }
}
.w11s-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.w11s-back:hover { color: var(--brand); }
.w11s-article h1,
.w11s-index h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--foreground);
}
.w11s-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.w11s-lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 2rem;
}
.w11s-body { color: var(--muted); }
.w11s-body > * + * { margin-top: 1.25rem; }
.w11s-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--foreground);
}
.w11s-body p { margin: 0; }
.w11s-body a { color: var(--brand); }
.w11s-post-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.w11s-post-list li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}
.w11s-post-list a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--foreground);
}
.w11s-post-list a:hover { color: var(--brand); }
.w11s-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1rem;
  margin-top: auto;
}
.w11s-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
}
.w11s-footer a { color: var(--muted); }
.w11s-footer a:hover { color: var(--brand); }
