/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sidebar-w: 256px;
  --topbar-h: 52px;

  /* Colors */
  --bg:         #F6F7FB;
  --bg-card:    #FFFFFF;
  --sidebar-bg: #0F1117;
  --text:       #0D0E14;
  --text-2:     #5C5F7A;
  --text-3:     #9EA1B8;
  --border:     #E5E7F0;
  --hover-bg:   #F0F1F8;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  /* Radius */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #11131A;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ================================================
   PRIVATE ACCESS GATE
   ================================================ */
.site-locked {
  overflow: hidden;
}

.site-locked .layout {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.access-gate[hidden] {
  display: none;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.92)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 32px);
}

.access-panel {
  width: min(440px, 100%);
  animation: gateIn 220ms ease-out both;
}

.access-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border: 1px solid #111;
  border-radius: 14px;
  background: #fff;
  color: #111;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.access-mark svg {
  width: 28px;
  height: 28px;
}

.access-card {
  border: 1px solid #D9D9D6;
  border-radius: 12px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

.access-card-hidden {
  display: none;
}

.access-eyebrow {
  margin-bottom: 8px;
  color: #6F6F6A;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-card h1,
.access-card h2 {
  color: #111;
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.access-card h2 {
  font-size: 23px;
}

.access-copy {
  color: #5F5F5B;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.access-label {
  display: block;
  color: #1F1F1D;
  font-size: 13px;
  font-weight: 650;
  margin: 14px 0 8px;
}

.access-password-row {
  display: flex;
  align-items: stretch;
  border: 1px solid #CFCFCA;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.access-password-row:focus-within {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.access-password-row input,
.access-field {
  width: 100%;
  min-height: 46px;
  border: 1px solid #CFCFCA;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  padding: 11px 12px;
}

.access-password-row input {
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.access-password-row input:focus,
.access-field:focus {
  outline: none;
}

.access-field:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.access-field::placeholder,
.access-password-row input::placeholder {
  color: #A4A39E;
}

.access-textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.5;
}

.access-icon-button {
  width: 48px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid #E4E4E0;
  background: #FAFAF8;
  color: #4C4C48;
  cursor: pointer;
}

.access-icon-button:hover {
  background: #F1F1EF;
  color: #111;
}

.access-icon-button svg {
  width: 20px;
  height: 20px;
}

.access-help {
  margin-top: 9px;
  color: #777772;
  font-size: 13px;
}

.access-error {
  min-height: 20px;
  margin-top: 8px;
  color: #B42318;
  font-size: 13px;
  font-weight: 600;
}

.access-primary,
.access-secondary {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.access-primary {
  margin-top: 8px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.access-primary:hover {
  background: #000;
}

.access-secondary {
  margin-top: 10px;
  border: 1px solid #D9D9D6;
  background: #fff;
  color: #1F1F1D;
}

.access-secondary:hover {
  background: #F6F6F3;
}

.access-primary:focus-visible,
.access-secondary:focus-visible,
.access-icon-button:focus-visible,
.access-password-row input:focus-visible,
.access-field:focus-visible {
  outline: 3px solid rgba(0,0,0,0.18);
  outline-offset: 3px;
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================
   LAYOUT
   ================================================ */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ================================================
   SIDEBAR
   ================================================ */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-item:focus-visible,
.category-card:focus-visible,
.article-card:focus-visible,
.article-back:focus-visible,
.bc-item:focus-visible,
.search-result-item:focus-visible,
.topbar-menu:focus-visible,
.home-actions button:focus-visible {
  outline: 3px solid rgba(99,102,241,0.55);
  outline-offset: 3px;
}
.sidebar-search-wrap {
  position: relative;
  margin: 20px 12px 14px;
  flex-shrink: 0;
}
.sidebar-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  pointer-events: none;
}
.sidebar-search-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 8px 10px 8px 30px;
  color: #FFF;
  font-size: 13px;
  font-family: var(--font);
  transition: background 150ms, border-color 150ms;
}
.sidebar-search-input::placeholder { color: rgba(255,255,255,0.3); }
.sidebar-search-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}
.sidebar-search-input:focus-visible {
  outline: 3px solid rgba(99,102,241,0.55);
  outline-offset: 2px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 4px 8px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.sidebar-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 12px 8px 4px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  transition: background 120ms, color 120ms;
  text-decoration: none;
  text-align: left;
  margin-bottom: 1px;
}
.sidebar-item:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
}
.sidebar-item.active {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  font-weight: 500;
}
.sidebar-item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar-item-icon {
  display: grid;
  place-items: center;
  color: var(--text-3);
}
.sidebar-item-count {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.07);
  padding: 1px 6px;
  border-radius: 10px;
}

.sidebar-stats {
  padding: 12px 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}

/* ================================================
   MAIN CONTENT
   ================================================ */
.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
}

.topbar-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-2);
  padding: 4px;
  border-radius: 6px;
}
.topbar-menu:hover { background: var(--hover-bg); color: var(--text); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.bc-item {
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 120ms;
  color: inherit;
  font: inherit;
  padding: 2px 4px;
  border-radius: 6px;
}
.bc-item:hover { color: var(--text); }
.bc-item.home { color: var(--text); font-weight: 500; }
.bc-sep { color: var(--text-3); font-size: 11px; }
.bc-current { color: var(--text); font-weight: 500; }

/* ================================================
   VIEW CONTAINER
   ================================================ */
.view {
  flex: 1;
  padding: 32px 32px 64px;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  animation: fadeIn 200ms ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   HOME VIEW — CATEGORY GRID
   ================================================ */
.home-header {
  margin-bottom: 32px;
}
.home-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.home-sub {
  font-size: 15px;
  color: var(--text-2);
}
.home-count-badge {
  display: inline-block;
  background: var(--hover-bg);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  cursor: pointer;
  transition: transform 160ms, box-shadow 160ms, border-color 160ms;
  position: relative;
  overflow: hidden;
  text-align: left;
  font-family: var(--font);
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.category-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.category-card-icon {
  font-size: 26px;
  line-height: 1;
}
.category-card-count {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}
.category-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.category-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.category-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* ================================================
   CATEGORY VIEW — ARTICLE GRID
   ================================================ */
.cat-header {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-header-icon { font-size: 28px; }
.cat-header-text {}
.cat-header-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cat-header-desc { font-size: 14px; color: var(--text-2); margin-top: 2px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  cursor: pointer;
  transition: transform 160ms, box-shadow 160ms, border-color 160ms;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-family: var(--font);
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.article-card-icon { font-size: 22px; line-height: 1; }
.article-card-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.article-card-summary {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.article-card-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
}
.article-card-read {
  font-size: 11.5px;
  color: var(--text-3);
}

/* ================================================
   ARTICLE VIEW
   ================================================ */
.article-wrap {
  max-width: 740px;
  margin: 0 auto;
}
.article-back {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  margin-bottom: 28px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background 120ms, color 120ms;
  margin-left: -10px;
}
.article-back:hover { background: var(--hover-bg); color: var(--text); }
.article-back svg { flex-shrink: 0; }

.article-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.article-tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}
.article-read-time {
  font-size: 12px;
  color: var(--text-3);
}

.article-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.article-lead {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.article-icon-header { font-size: 36px; margin-bottom: 12px; line-height: 1; }

/* Article body typography */
.article-body { font-size: 15px; line-height: 1.75; color: var(--text); }
.article-body h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.2rem 0 0.8rem;
  color: var(--text);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 1.8rem 0 0.6rem;
  color: var(--text);
}
.article-body h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 1.4rem 0 0.4rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.article-body p {
  margin-bottom: 1rem;
  color: var(--text);
}
.article-body ul, .article-body ol {
  margin: 0.5rem 0 1.2rem 1.2rem;
}
.article-body li {
  margin-bottom: 6px;
  padding-left: 4px;
}
.article-body a {
  color: #2563EB;
  text-decoration: none;
}
.article-body a:hover { text-decoration: underline; }
.article-body strong { font-weight: 600; }
.article-body em { font-style: italic; }
.article-body code {
  font-family: 'Menlo', 'Monaco', monospace;
  font-size: 13px;
  background: var(--hover-bg);
  padding: 2px 6px;
  border-radius: 4px;
  color: #2563EB;
}
.article-body pre {
  background: #1A1A2E;
  color: #E2E8F0;
  padding: 18px;
  border-radius: var(--r-sm);
  overflow-x: auto;
  font-size: 13px;
  font-family: 'Menlo', 'Monaco', monospace;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Blockquote */
.article-body blockquote {
  border-left: 3px solid;
  padding: 14px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.5rem 0;
  font-style: normal;
}

/* Callout / insight box */
.callout {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  margin: 1.2rem 0;
  align-items: flex-start;
}
.callout-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.callout-body { font-size: 14.5px; line-height: 1.6; }

/* Table */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 13.5px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-body th {
  background: var(--hover-bg);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.article-body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: #FAFAFA; }

/* Compare grid */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.5rem 0;
}
.compare-item {
  background: var(--hover-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}
.compare-item h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-2);
  margin-bottom: 6px !important;
}
.compare-item p { font-size: 13.5px; color: var(--text); margin-bottom: 0 !important; }
.compare-item.highlight {
  background: #EEF2FF;
  border-color: #C7D2FE;
}
.compare-item.highlight h4 { color: #3730A3; }

/* Principles grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 1.2rem 0;
}
.principle-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
}
.principle-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 4px;
}
.principle-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.principle-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

/* KPI / Metrics cards */
.metric-section {
  margin-bottom: 2rem;
}
.metric-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.metric-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13.5px;
  display: flex;
  gap: 10px;
}
.metric-item-name { font-weight: 500; min-width: 200px; flex-shrink: 0; }
.metric-item-desc { color: var(--text-2); }

/* Laws grid */
.laws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  margin: 1.2rem 0;
}
.law-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
}
.law-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.law-card-def {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 8px;
}
.law-card-example {
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
}

/* Q&A styles */
.qa-item {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qa-question {
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 18px;
  background: var(--hover-bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.qa-question:hover { background: #E8E9F4; }
.qa-chevron {
  font-size: 12px;
  color: var(--text-3);
  transition: transform 200ms;
  flex-shrink: 0;
}
.qa-item.open .qa-chevron { transform: rotate(180deg); }
.qa-answer {
  display: none;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.qa-item.open .qa-answer { display: block; }
.qa-answer ul { margin-left: 18px; margin-top: 8px; }
.qa-answer li { margin-bottom: 5px; }

/* Whiteboard steps */
.wb-step {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.wb-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--hover-bg);
  cursor: pointer;
  font-family: var(--font);
}
.wb-step-header:hover { background: #E8E9F4; }
.wb-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.wb-step-title { font-size: 14.5px; font-weight: 600; color: var(--text); }
.wb-step-body {
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.7;
  display: none;
}
.wb-step.open .wb-step-body { display: block; }

/* Framework card */
.framework-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px;
  margin-bottom: 14px;
}
.framework-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.framework-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.framework-step {
  font-size: 12px;
  background: var(--hover-bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--text-2);
  font-weight: 500;
}
.framework-origin, .framework-focus {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 3px;
}

/* Resource list */
.resource-section { margin-bottom: 2rem; }
.resource-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.resource-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.resource-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2563EB;
  text-decoration: none;
  padding: 6px 0;
}
.resource-list li a:hover { text-decoration: underline; }

/* Coming soon */
.coming-soon {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-3);
}
.coming-soon-icon { font-size: 40px; margin-bottom: 12px; }
.coming-soon h3 { font-size: 16px; color: var(--text-2); margin-bottom: 6px; }
.coming-soon p { font-size: 14px; }

/* ================================================
   SEARCH VIEW
   ================================================ */
.search-header { margin-bottom: 24px; }
.search-header h2 { font-size: 20px; font-weight: 700; color: var(--text); }
.search-header p { font-size: 14px; color: var(--text-2); margin-top: 4px; }
.search-results { display: flex; flex-direction: column; gap: 10px; }
.search-result-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  cursor: pointer;
  transition: box-shadow 150ms, border-color 150ms;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}
.search-result-item:hover {
  box-shadow: var(--shadow);
  border-color: #C7D2FE;
}
.search-result-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.search-result-title { font-size: 14.5px; font-weight: 600; color: var(--text); }
.search-result-summary { font-size: 13px; color: var(--text-2); margin-top: 3px; line-height: 1.5; }
.search-result-tag { margin-top: 6px; }

/* ================================================
   TAGS / BADGES
   ================================================ */
.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }
  .sidebar-overlay.show { display: block; }
  .main { margin-left: 0; }
  .topbar-menu { display: flex; }
  .view { padding: 20px 16px 48px; }
  .categories-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .article-title { font-size: 22px; }
}

@media (min-width: 769px) {
  .topbar-menu { display: none; }
}

/* ================================================
   POLISHED KNOWLEDGE BASE DESIGN
   ================================================ */
:root {
  --bg: #F4F6FA;
  --bg-card: rgba(255,255,255,0.92);
  --sidebar-bg: #10131C;
  --text: #11131A;
  --text-2: #525871;
  --text-3: #9BA0B6;
  --border: #E0E4EF;
  --hover-bg: #ECEFF7;
}

body {
  background:
    radial-gradient(circle at 24% 0%, rgba(124,58,237,0.12), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(2,132,199,0.10), transparent 30%),
    var(--bg);
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--sidebar-bg);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.sidebar-search-input {
  min-height: 38px;
  background: rgba(255,255,255,0.085);
}

.sidebar-item {
  min-height: 34px;
  font-weight: 500;
}

.topbar {
  background: rgba(244,246,250,0.86);
  backdrop-filter: blur(16px);
}

.view {
  max-width: 1220px;
  padding-top: 36px;
}

.home-header {
  position: relative;
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.74)),
    radial-gradient(circle at 90% 0%, rgba(37,99,235,0.16), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-header::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -34px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(124,58,237,0.16);
  border-radius: 50%;
}

.home-title {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-kicker {
  margin-bottom: 12px;
  color: #4F46E5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-sub {
  max-width: 680px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 10px 15px;
  background: #11131A;
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}

.home-actions button.secondary {
  border: 1px solid var(--border);
  background: #fff;
  color: #11131A;
}

.home-actions button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.home-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-metrics span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255,255,255,0.82);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 650;
}

.home-metrics strong {
  color: var(--text);
}

.home-count-badge {
  vertical-align: middle;
  background: #11131A;
  color: #fff;
}

.categories-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.category-card,
.article-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
  border-color: rgba(224,228,239,0.86);
  box-shadow: 0 8px 28px rgba(20,24,38,0.06);
}

.category-card {
  min-height: 210px;
}

.category-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(20,24,38,0.13);
}

.category-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--hover-bg);
}

.category-card-name {
  letter-spacing: -0.03em;
}

.category-card-action {
  margin-top: 18px;
  color: #4F46E5;
  font-size: 13px;
  font-weight: 800;
}

.cat-header {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.78));
  box-shadow: var(--shadow-sm);
}

.articles-grid {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}

.article-card {
  border-radius: 18px;
  min-height: 230px;
}

.article-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--hover-bg);
}

.article-card-title {
  letter-spacing: -0.025em;
}

.article-wrap {
  max-width: 840px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.article-back {
  min-height: 44px;
}

.article-title {
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.article-lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
}

.article-body {
  font-size: 16px;
}

.article-body h2 {
  margin-top: 38px;
  letter-spacing: -0.035em;
}

.article-body h2 + p {
  color: #33384A;
  font-size: 16px;
  line-height: 1.78;
}

.article-body ul {
  padding: 16px 18px 16px 36px;
  border: 1px solid #E5E7F0;
  border-radius: 16px;
  background: #FBFCFF;
}

.article-body li + li {
  margin-top: 8px;
}

.callout {
  border-radius: 16px;
  padding: 18px;
}

.notion-note-block {
  padding: 18px 20px;
  border: 1px solid #E5E7F0;
  border-radius: 16px;
  background: #FBFCFF;
}

.notion-note-block h3 {
  margin: 16px 0 8px;
}

.notion-note-block h3:first-child {
  margin-top: 0;
}

.notion-note-block li {
  margin-left: 18px;
}

.content-loading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border: 1px dashed #CBD5E1;
  border-radius: 18px;
  background: #F8FAFC;
}

.content-loading h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.content-loading p {
  margin: 0;
  color: var(--text-2);
}

.content-loading-dot {
  width: 14px;
  height: 14px;
  margin-top: 9px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 0 7px rgba(37,99,235,0.12);
  flex: 0 0 auto;
}

.search-result-item {
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .home-header {
    padding: 24px;
    border-radius: 18px;
  }

  .home-title {
    font-size: 34px;
  }

  .home-actions {
    display: grid;
  }

  .home-actions button {
    width: 100%;
  }

  .article-wrap {
    padding: 22px;
    border-radius: 18px;
  }

  .article-body ul {
    padding-left: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================================================
   NOTION-INSPIRED DESIGN.MD PASS
   Warm minimalism, whisper borders, soft surfaces
   ================================================ */
:root {
  --bg: #F6F5F4;
  --bg-card: #FFFFFF;
  --sidebar-bg: #31302E;
  --text: rgba(0,0,0,0.95);
  --text-2: #615D59;
  --text-3: #A39E98;
  --border: rgba(0,0,0,0.10);
  --hover-bg: rgba(0,0,0,0.05);
  --notion-blue: #0075DE;
  --notion-blue-dark: #005BAB;
  --notion-blue-soft: #F2F9FF;
  --warm-white: #F6F5F4;
  --shadow-sm: rgba(0,0,0,0.025) 0 1px 3px, rgba(0,0,0,0.02) 0 2px 7px;
  --shadow: rgba(0,0,0,0.04) 0 4px 18px, rgba(0,0,0,0.027) 0 2px 8px, rgba(0,0,0,0.02) 0 1px 3px;
  --shadow-lg: rgba(0,0,0,0.01) 0 1px 3px, rgba(0,0,0,0.02) 0 3px 7px, rgba(0,0,0,0.02) 0 7px 15px, rgba(0,0,0,0.04) 0 14px 28px, rgba(0,0,0,0.05) 0 23px 52px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-feature-settings: "lnum", "locl";
}

.topbar {
  background: rgba(246,245,244,0.88);
}

.home-header,
.cat-header,
.article-wrap,
.category-card,
.article-card,
.search-result-item {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.home-header::after {
  border-color: rgba(0,0,0,0.08);
}

.home-title,
.article-title {
  letter-spacing: -1.875px;
  text-wrap: balance;
}

.article-body h2 {
  letter-spacing: -0.625px;
  text-wrap: balance;
}

.home-count-badge,
.category-card-count,
.article-card-tag,
.article-tag {
  background: var(--notion-blue-soft) !important;
  color: #097FE8 !important;
}

.home-actions button {
  border-radius: 6px;
  background: var(--notion-blue);
}

.home-actions button:hover {
  background: var(--notion-blue-dark);
}

.home-actions button.secondary {
  background: rgba(0,0,0,0.05);
  color: var(--text);
}

.home-actions button.secondary:hover {
  background: rgba(0,0,0,0.08);
}

.category-card:hover,
.article-card:hover {
  box-shadow: var(--shadow-lg);
}

.category-card-icon,
.article-card-icon,
.article-body ul,
.notion-note-block {
  background: var(--warm-white);
}

.category-card-action {
  color: var(--notion-blue);
}

.article-body h2 + p {
  color: #31302E;
}

/* ================================================
   MINIMAL BLACK & WHITE NOTION LANGUAGE
   ================================================ */
:root {
  --bg: #FFFFFF;
  --bg-card: #FFFFFF;
  --sidebar-bg: #F7F7F5;
  --text: rgba(0,0,0,0.92);
  --text-2: rgba(0,0,0,0.58);
  --text-3: rgba(0,0,0,0.38);
  --border: rgba(0,0,0,0.10);
  --hover-bg: rgba(0,0,0,0.045);
  --notion-blue: #000000;
  --notion-blue-dark: #000000;
  --notion-blue-soft: #F5F5F4;
  --warm-white: #F7F7F5;
  --shadow-sm: none;
  --shadow: none;
  --shadow-lg: 0 1px 0 rgba(0,0,0,0.06);
}

body {
  background: #fff;
}

.sidebar {
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
}

.sidebar-stats {
  color: var(--text-3);
}

.category-card-icon,
.article-card-icon {
  background: transparent;
  box-shadow: none;
  filter: grayscale(1);
}

.sidebar-search-input {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.sidebar-search-input::placeholder,
.sidebar-search-icon {
  color: var(--text-3);
}

.sidebar-search-input:focus,
.sidebar-search-input:focus-visible {
  background: #fff;
  border-color: rgba(0,0,0,0.24);
  outline-color: rgba(0,0,0,0.18);
}

.sidebar-item {
  color: var(--text-2);
  background: transparent;
}

.sidebar-item:hover,
.sidebar-item.active {
  background: var(--hover-bg);
  color: var(--text);
}

.sidebar-item-count {
  background: rgba(0,0,0,0.06);
  color: var(--text-3);
}

.topbar {
  background: rgba(255,255,255,0.88);
}

.home-header {
  padding: 28px 0 24px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.home-header::after {
  display: none;
}

.home-title {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 56px);
}

.home-sub {
  max-width: 680px;
}

.home-count-badge,
.category-card-count,
.article-card-tag,
.article-tag {
  background: #F1F1EF !important;
  color: var(--text-2) !important;
}

.home-actions button,
.home-actions button.secondary {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
}

.home-actions button:first-child {
  background: #000;
  color: #fff;
}

.home-actions button:hover,
.home-actions button.secondary:hover {
  background: var(--hover-bg);
  box-shadow: none;
}

.home-actions button:first-child:hover {
  background: #111;
}

.home-metrics span {
  background: #fff;
  border-color: var(--border);
}

.category-card,
.article-card,
.cat-header,
.article-wrap,
.search-result-item {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: none;
}

.category-card,
.article-card {
  min-height: unset;
  border-radius: 12px;
}

.category-card:hover,
.article-card:hover,
.search-result-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.22);
  box-shadow: none;
}

.category-card-accent {
  display: none;
}

.category-card-action {
  color: var(--text);
}

.cat-header,
.article-wrap {
  border-radius: 12px;
}

.article-body ul,
.notion-note-block,
.callout {
  background: #F7F7F5 !important;
  border-color: var(--border) !important;
}

.notion-only-content h2:first-child,
.notion-only-content h3:first-child,
.notion-only-content h4:first-child {
  margin-top: 0;
}

.notion-asset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 16px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #F7F7F5;
  color: var(--text-2);
  font-size: 13px;
}

.notion-asset .phosphor-icon {
  width: 15px;
  height: 15px;
}

.notion-image {
  margin: 18px 0;
}

.notion-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #F7F7F5;
}

.notion-image figcaption {
  margin-top: 6px;
  color: var(--text-3);
  font-size: 12px;
}

.notion-video {
  display: block;
  width: 100%;
  max-height: 560px;
  margin: 18px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #F7F7F5;
}

.content-loading-dot {
  background: rgba(0,0,0,0.44);
  box-shadow: 0 0 0 7px rgba(0,0,0,0.06);
}

.article-body a,
.resource-list li a {
  color: var(--text);
}

.tag {
  border: 1px solid var(--border);
}

.topbar-menu:hover,
.bc-item:hover,
.article-back:hover {
  background: var(--hover-bg);
}

/* ================================================
   NOTION-STYLE ICON SYSTEM
   ================================================ */
.phosphor-icon {
  width: 1em;
  height: 1em;
  display: block;
  color: currentColor;
}

.category-card-icon,
.article-card-icon,
.cat-header-icon,
.article-icon-header,
.search-result-icon,
.coming-soon-icon {
  color: var(--text);
  background: transparent;
  box-shadow: none;
  filter: none;
}

.category-card-icon,
.article-card-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #F7F7F5;
}

.category-card-icon .phosphor-icon,
.article-card-icon .phosphor-icon {
  width: 18px;
  height: 18px;
}

.cat-header-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #F7F7F5;
  flex: 0 0 auto;
}

.cat-header-icon .phosphor-icon {
  width: 20px;
  height: 20px;
}

.article-icon-header {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #F7F7F5;
  margin-bottom: 14px;
}

.article-icon-header .phosphor-icon {
  width: 24px;
  height: 24px;
}

.callout-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--text-2);
}

.callout-icon .phosphor-icon {
  width: 18px;
  height: 18px;
}

.search-result-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #F7F7F5;
  flex: 0 0 auto;
  margin-top: 1px;
}

.search-result-icon .phosphor-icon {
  width: 16px;
  height: 16px;
}

.coming-soon-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #F7F7F5;
}

.coming-soon-icon .phosphor-icon {
  width: 22px;
  height: 22px;
}

.article-tag,
.article-read-time,
.bc-current,
.bc-item,
.search-result-tag .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-tag .phosphor-icon,
.article-read-time .phosphor-icon,
.bc-current .phosphor-icon,
.bc-item .phosphor-icon,
.search-result-tag .phosphor-icon {
  width: 13px;
  height: 13px;
}

.sidebar {
  padding-top: 0;
}

.sidebar-search-wrap {
  margin: 16px 14px 14px;
}

.sidebar-search-input {
  min-height: 44px;
  border-radius: 10px;
  padding-left: 38px;
  font-size: 15px;
}

.sidebar-search-icon {
  left: 14px;
  color: var(--text-3);
}

.sidebar-nav {
  padding: 6px 10px 12px;
}

.sidebar-section-label {
  padding: 16px 10px 8px;
  color: var(--text-3);
  letter-spacing: 0.12em;
}

.sidebar-item {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 520;
}

.sidebar-item:hover {
  background: rgba(0,0,0,0.04);
  color: var(--text);
}

.sidebar-item.active {
  background: #EFEFED;
  color: var(--text);
  font-weight: 650;
}

.sidebar-item-icon {
  width: 20px;
  height: 20px;
  color: currentColor;
  opacity: 0.68;
}

.sidebar-item.active .sidebar-item-icon {
  opacity: 1;
}

.sidebar-item-icon .phosphor-icon {
  width: 18px;
  height: 18px;
}

.sidebar-item-count {
  min-width: 34px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,0,0,0.055);
  color: var(--text-2);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.sidebar-stats {
  padding: 14px 20px 18px;
  color: var(--text-3);
}

.article-card-disabled,
.search-result-disabled {
  opacity: 0.46;
  cursor: not-allowed;
  background: #F3F3F1;
  border-color: #E5E5E1;
  color: #777772;
  box-shadow: none;
}

.article-card-disabled:hover,
.search-result-disabled:hover {
  transform: none;
  border-color: #E5E5E1;
  box-shadow: none;
}

.article-card-disabled .article-card-title,
.search-result-disabled .search-result-title {
  color: #666662;
}

.article-card-disabled .article-card-summary,
.search-result-disabled .search-result-summary,
.article-card-disabled .article-card-read {
  color: #8B8A86;
}

.article-card-disabled .article-card-icon,
.search-result-disabled .search-result-icon {
  background: #EDEDEA;
  color: #8B8A86;
}

.tag.muted,
.article-card-tag.muted {
  background: #E9E9E6 !important;
  color: #777772 !important;
  border: 1px solid #DADAD6;
}
