@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #eef1f4;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --ink: #17202a;
  --muted: #667085;
  --line: #d9e0e8;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --good: #14835a;
  --bad: #c2410c;
  --warn: #b45309;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}

a {
  color: var(--accent);
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  width: min(1680px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.topbar h1,
.panel h2 {
  margin: 0;
  letter-spacing: 0;
}

.topbar h1 {
  font-size: 1.35rem;
}

.top-actions,
.start-full-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.start-full-form {
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.start-full-form label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.start-full-form label span {
  margin: 0;
}

.start-full-form input[type="number"] {
  width: 86px;
  min-height: 38px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.switch-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.switch-button.is-on {
  border-color: rgba(20, 131, 90, 0.35);
  background: rgba(20, 131, 90, 0.08);
  color: var(--good);
}

.switch-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #98a2b3;
}

.switch-button.is-on .switch-dot {
  background: var(--good);
}

.flash-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.flash {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.flash-success {
  border-color: rgba(20, 131, 90, 0.3);
  color: var(--good);
}

.flash-warning {
  border-color: rgba(180, 83, 9, 0.35);
  color: var(--warn);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.65rem;
}

.quality-stat {
  background: #fbfdff;
}

.quality-stat strong {
  color: var(--accent);
}

.layout-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 300px;
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}

.side-column,
.main-column,
.activity-column {
  display: grid;
  gap: 14px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-head,
.panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-head {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.panel h2 {
  font-size: 1rem;
}

.status-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-chip.good {
  background: rgba(20, 131, 90, 0.1);
  color: var(--good);
}

.status-chip.bad {
  background: rgba(194, 65, 12, 0.1);
  color: var(--bad);
}

.status-generated,
.status-published {
  background: rgba(20, 131, 90, 0.1);
  color: var(--good);
}

.status-failed {
  background: rgba(194, 65, 12, 0.1);
  color: var(--bad);
}

.status-generating,
.status-publishing {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}

.form-grid,
.form-inline {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.form-inline {
  grid-template-columns: 1fr auto;
  align-items: end;
  border-top: 1px solid var(--line);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: #344054;
  font-size: 0.8rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.45);
}

.check-row,
.mini-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-row input,
.mini-check input,
.topic-row input {
  width: auto;
}

.check-row span,
.mini-check span {
  margin: 0;
}

.button,
.icon-button {
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 700;
}

.button {
  min-height: 40px;
  padding: 0 14px;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.toolbar-form {
  display: grid;
  grid-template-columns: 78px auto auto;
  gap: 8px;
  align-items: center;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

td strong,
.topic-name {
  display: block;
  font-weight: 750;
}

td small,
.error-text {
  display: block;
  margin-top: 5px;
  color: var(--bad);
  line-height: 1.35;
}

.row-actions {
  display: flex;
  gap: 5px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.empty-cell {
  color: var(--muted);
  text-align: center;
}

.topic-list {
  display: grid;
  max-height: 520px;
  overflow: auto;
}

.topic-row {
  display: grid;
  grid-template-columns: 24px 56px minmax(0, 1fr) 170px 82px;
  gap: 10px;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
}

.topic-row:hover {
  background: var(--panel-soft);
}

.rank,
.topic-angle,
.topic-score {
  color: var(--muted);
  font-size: 0.82rem;
}

.topic-score {
  font-weight: 800;
}

.event-list,
.file-list {
  display: grid;
}

.event,
.file-list div {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.event small,
.file-list small {
  color: var(--muted);
}

.event-success span {
  color: var(--good);
}

.event-warning span {
  color: var(--warn);
}

.back-link {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}

.article-panel {
  padding: 24px;
}

.article-body {
  max-width: 860px;
  line-height: 1.68;
}

.article-body h1,
.article-body h2,
.article-body h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

.meta-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 16px 16px;
}

.meta-list div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.meta-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.meta-list dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.public-blog {
  background: #0d0e12; /* Premium deep dark gray */
  color: #f3f4f6;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px max(24px, 50% - 600px); /* Elegant layout container centering */
  background: rgba(13, 14, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  padding: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-mark:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-menu-toggle {
  display: none;
}

.site-nav nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav nav a:hover {
  color: #ffffff;
}

.nav-pill {
  padding: 8px 16px;
  border-radius: 8px;
  background: #a3e635;
  color: #0d0e12 !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(163, 230, 53, 0.15);
  transition: all 0.2s ease !important;
}

.nav-pill:hover {
  background: #bef264;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(163, 230, 53, 0.25);
}

.blog-directory,
.article-layout {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 58px max(24px, 50% - 600px) 86px; /* Elegant layout container centering */
}

.blog-directory-head {
  max-width: 780px;
}

.public-blog .eyebrow {
  color: #a3e635;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-directory-head h1,
.article-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.blog-directory-head p,
.blog-subtitle {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
  line-height: 1.62;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-cloud a,
.category-cloud button,
.feed-tags a,
.blog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.category-cloud a:hover,
.feed-tags a:hover {
  border-color: rgba(163, 230, 53, 0.4);
  background: rgba(163, 230, 53, 0.08);
  color: #a3e635;
}

.category-cloud button {
  cursor: default;
}

.article-feed {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.feed-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.25s ease;
}

.feed-card:hover {
  border-color: rgba(163, 230, 53, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
  font-weight: 600;
}

.feed-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.feed-title a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.feed-title a:hover {
  color: #a3e635;
}

.feed-body p {
  max-width: 840px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.62;
}

.feed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.feed-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #a3e635;
  color: #0d0e12;
  font-weight: 800;
  object-fit: cover;
  border: 1px solid rgba(163, 230, 53, 0.42);
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.08);
}

img.author-avatar {
  display: block;
}

.feed-author strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
}

.feed-author small {
  display: block;
  color: rgba(255, 255, 255, 0.4);
}

.feed-tags,
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.read-link {
  display: inline-block;
  color: #a3e635;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.read-link:hover {
  color: #bef264;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 360px; /* Enhanced readability width */
  gap: 56px; /* Spacious separation */
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-hero {
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-blog .back-link {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s ease;
}

.public-blog .back-link:hover {
  color: #a3e635;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  font-weight: 600;
}

.article-meta span {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.article-aside {
  position: sticky;
  top: 102px; /* Adjusted for sticky header */
  display: grid;
  gap: 20px;
}

.article-aside section {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.article-aside p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.56;
}

.article-aside .trial-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.article-aside .trial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #a3e635, #bef264);
}

.article-aside .trial-card:hover {
  border-color: rgba(163, 230, 53, 0.3);
  box-shadow: 0 20px 40px rgba(163, 230, 53, 0.05);
}

.article-aside .trial-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin: 0 0 12px;
  padding: 0 10px;
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: 999px;
  background: rgba(163, 230, 53, 0.08);
  color: #a3e635;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trial-card h2 {
  margin: 0;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.article-aside .trial-copy {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.48;
}

.trial-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border-radius: 8px;
  background: #a3e635;
  color: #0d0e12;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 20px rgba(163, 230, 53, 0.15);
  transition: all 0.25s ease;
}

.trial-button:hover {
  background: #bef264;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(163, 230, 53, 0.25);
}

.trial-button-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1.15em;
  line-height: 1;
  transform: translateY(-1px);
}

.article-aside .trial-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  text-align: center;
}

.trial-benefits {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-benefits p,
.trial-includes p {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.trial-benefits ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-benefits li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
}

.trial-benefits li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 8px;
  background: rgba(163, 230, 53, 0.06);
  color: #a3e635;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.trial-benefits strong {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.2;
}

.trial-benefits small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.26;
}

.trial-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-includes p {
  grid-column: 1 / -1;
  text-align: center;
}

.trial-includes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.blog-article {
  max-width: 100%;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.76;
}

.blog-article h2 {
  margin-top: 42px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.blog-article h3 {
  margin-top: 32px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
}

.blog-article p,
.blog-article ul,
.blog-article ol {
  margin: 16px 0;
}

.blog-article li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.85);
}

.blog-article table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
}

.blog-article th,
.blog-article td {
  border-color: rgba(255, 255, 255, 0.06);
}

.blog-article mark {
  padding: 0.04em 0.24em;
  border-radius: 5px;
  background: rgba(163, 230, 53, 0.17);
  color: #f7ffe9;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.blog-article p strong,
.blog-article li strong,
.blog-article td strong {
  color: #f5ffe4;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(163, 230, 53, 0.5);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.answer-callout,
.blog-article blockquote {
  position: relative;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(163, 230, 53, 0.08), rgba(255, 255, 255, 0.018)),
    #10120d;
  color: rgba(255, 255, 255, 0.84);
}

.answer-callout {
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(163, 230, 53, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.answer-callout::before,
.blog-article blockquote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #a3e635;
}

.answer-callout::after {
  content: "QA";
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(163, 230, 53, 0.18);
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
}

.answer-callout p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.blog-article blockquote {
  padding: 18px 22px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.blog-article blockquote p + p {
  margin-top: 12px;
}

.blog-article blockquote strong:first-child {
  color: #a3e635;
  font-weight: 950;
  text-decoration: none;
}

.article-callout::after,
.article-quote::after {
  position: absolute;
  top: 12px;
  right: 18px;
  color: rgba(163, 230, 53, 0.22);
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
}

.article-callout::after {
  content: "!";
}

.article-callout-warning::before,
.article-callout-important::before {
  background: #d9ff8b;
}

.article-callout-tip::after {
  content: "→";
}

.article-callout-example::after {
  content: "#";
}

.article-callout-rule::after {
  content: "✓";
}

.article-callout-note::after {
  content: "i";
}

.article-callout-takeaway::after {
  content: "★";
}

.article-quote {
  font-size: 1.12rem;
  font-style: italic;
}

.article-quote::after {
  content: "”";
}

@media (max-width: 1320px) {
  .layout-grid {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .activity-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .stats-grid,
  .layout-grid,
  .article-grid,
  .article-layout,
  .two-cols {
    grid-template-columns: 1fr;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav nav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .topbar,
  .panel-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions,
  .start-full-form {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-form,
  .form-inline,
  .topic-row {
    grid-template-columns: 1fr;
  }

  .blog-directory {
    padding-top: 34px;
  }

  .blog-directory-head h1,
  .article-hero h1 {
    font-size: 2.15rem;
  }

  .feed-card {
    padding: 18px;
  }

  .feed-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-aside {
    position: static;
  }
}

/* Public blog polish */
.public-blog {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(163, 230, 53, 0.045), rgba(10, 10, 10, 0) 260px),
    #070807;
  text-rendering: optimizeLegibility;
}

.public-blog a,
.public-blog button {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav {
  position: relative;
  top: auto;
  z-index: 2;
  width: 100%;
  padding: 16px max(24px, calc((100% - 1380px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 7, 0.96);
  backdrop-filter: none;
}

.site-nav nav a:hover,
.site-nav nav a:focus-visible {
  color: #ffffff;
}

.brand-mark:hover span,
.brand-mark:focus-visible span {
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.14);
}

.nav-pill {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(163, 230, 53, 0.12);
}

.nav-pill:hover,
.nav-pill:focus-visible {
  background: #bef264;
  transform: translateY(-1px);
}

.blog-directory {
  width: min(1380px, calc(100% - 48px));
  padding-top: 70px;
}

.article-layout {
  width: min(1480px, calc(100% - 64px));
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  padding-top: 58px;
}

.blog-directory-head,
.article-hero {
  animation: blogFadeUp 460ms ease both;
}

.blog-directory-head {
  max-width: 940px;
}

.public-blog .eyebrow {
  color: #a3e635;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.blog-directory-head h1 {
  max-width: 920px;
  font-size: 4rem;
  line-height: 0.98;
}

.article-hero h1 {
  max-width: 980px;
  font-size: 3.7rem;
  line-height: 1.04;
}

.blog-directory-head p,
.blog-subtitle {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
}

.category-cloud {
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 34px;
}

.category-cloud button,
.feed-tags button,
.blog-tags span,
.article-meta span {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 780;
}

.category-cloud button,
.feed-tags button {
  cursor: pointer;
}

.category-cloud button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.feed-tags button,
.blog-tags span {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.8rem;
}

.category-cloud button:hover,
.category-cloud button:focus-visible,
.feed-tags button:hover,
.feed-tags button:focus-visible,
.category-cloud button.is-active,
.feed-tags button.is-active {
  border-color: rgba(163, 230, 53, 0.72);
  background: rgba(163, 230, 53, 0.14);
  color: #d9ff8b;
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0.16), 0 10px 28px rgba(163, 230, 53, 0.08);
}

.category-cloud button:hover,
.feed-tags button:hover,
.feed-card:hover,
.trial-button:hover {
  transform: translateY(-1px);
}

.article-feed {
  gap: 18px;
  margin-top: 38px;
}

.feed-card {
  position: relative;
  overflow: hidden;
  gap: 18px;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #0c0d0b;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  animation: blogFadeUp 420ms ease both;
}

.feed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0);
  transition: box-shadow 180ms ease;
}

.feed-card:hover {
  border-color: rgba(163, 230, 53, 0.42);
  background:
    linear-gradient(135deg, rgba(163, 230, 53, 0.06), rgba(255, 255, 255, 0.025)),
    #0f110d;
}

.feed-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0.18);
}

.feed-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.feed-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0.1);
  opacity: 0;
  transition: opacity 180ms ease, box-shadow 180ms ease;
}

.feed-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform 220ms ease, filter 220ms ease;
}

.feed-card:hover .feed-cover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(163, 230, 53, 0.28);
}

.feed-card:hover .feed-cover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}

.feed-meta {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.feed-title {
  max-width: 1040px;
  font-size: 1.75rem;
  line-height: 1.16;
}

.feed-body p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.58);
}

.feed-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
}

.feed-tags,
.blog-tags {
  justify-content: flex-end;
}

.read-link {
  width: fit-content;
}

.read-link:hover,
.read-link:focus-visible {
  color: #d9ff8b;
  transform: translateX(3px);
}

.article-hero {
  padding: 18px 0 30px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.public-blog .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

.public-blog .back-link::before {
  content: "←";
}

.public-blog .back-link:hover,
.public-blog .back-link:focus-visible {
  color: #a3e635;
  transform: translateX(-2px);
}

.article-meta-row {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.article-meta {
  margin-top: 0;
}

.article-meta span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.66);
}

.article-author-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-author-pill img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(163, 230, 53, 0.35);
}

.article-tags {
  justify-content: flex-start;
}

.article-cover {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin: 26px 0 34px;
  overflow: hidden;
  border: 1px solid rgba(163, 230, 53, 0.22);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  animation: blogFadeUp 420ms ease both;
}

.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -36px 80px rgba(0, 0, 0, 0.18);
}

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

.blog-article {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.blog-article h2 {
  padding-top: 6px;
  font-size: 1.72rem;
}

.blog-article h3 {
  font-size: 1.24rem;
}

.blog-article a {
  color: #bef264;
}

.blog-article a:hover {
  color: #ffffff;
}

.blog-article table,
.blog-article blockquote,
.answer-callout {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.related-posts {
  max-width: 880px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-posts-head {
  display: grid;
  gap: 4px;
}

.related-posts-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.18;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.related-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(163, 230, 53, 0.08), rgba(255, 255, 255, 0.018)),
    #11120f;
  color: #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.related-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #a3e635;
  opacity: 0;
  transition: opacity 180ms ease;
}

.related-card span {
  color: #a3e635;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.related-card strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.28;
}

.related-card small {
  align-self: end;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 750;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(163, 230, 53, 0.55);
  background:
    linear-gradient(135deg, rgba(163, 230, 53, 0.13), rgba(255, 255, 255, 0.03)),
    #13160f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.related-card:hover::before,
.related-card:focus-visible::before {
  opacity: 1;
}

.article-aside {
  top: 82px;
}

.article-aside .trial-card {
  padding: 16px;
  border-radius: 8px;
  border-color: rgba(163, 230, 53, 0.34);
  background:
    linear-gradient(180deg, rgba(163, 230, 53, 0.13), rgba(255, 255, 255, 0.035) 48%),
    #11130e;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: blogFadeUp 520ms ease 90ms both;
}

.article-aside .trial-card:hover {
  border-color: rgba(163, 230, 53, 0.58);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(163, 230, 53, 0.1);
}

.article-aside .trial-badge {
  margin-bottom: 10px;
}

.trial-card h2 {
  font-size: 1.12rem;
}

.article-aside .trial-copy {
  margin: 8px 0 12px;
  font-size: 0.84rem;
  line-height: 1.34;
}

.trial-button {
  min-height: 42px;
  box-shadow: 0 12px 26px rgba(163, 230, 53, 0.18);
}

.trial-button:hover,
.trial-button:focus-visible {
  box-shadow: 0 14px 34px rgba(163, 230, 53, 0.28);
}

.trial-benefits {
  margin-top: 12px;
  padding-top: 12px;
}

.trial-benefits ul {
  gap: 8px;
}

.trial-includes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 12px;
  padding-top: 12px;
}

.trial-includes span {
  min-height: 28px;
  padding: 0 5px;
  font-size: 0.66rem;
}

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

@media (max-width: 1100px) {
  .blog-directory {
    padding-top: 44px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    width: min(900px, calc(100% - 48px));
    padding-top: 36px;
  }

  .blog-directory-head h1 {
    font-size: 3.25rem;
  }

  .article-hero h1 {
    max-width: 860px;
    font-size: 2.85rem;
    line-height: 1.06;
  }

  .article-aside {
    position: static;
  }

  .article-aside .trial-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .trial-benefits,
  .trial-includes {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .site-nav,
  .blog-directory,
  .article-layout {
    width: min(100% - 28px, 720px);
  }

  .site-nav {
    position: static;
    gap: 14px;
    padding: 14px 0;
  }

  .site-nav nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
  }

  .site-nav nav a {
    white-space: nowrap;
  }

  .blog-directory,
  .article-layout {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .blog-directory-head h1,
  .article-hero h1 {
    font-size: 2.15rem;
    line-height: 1.06;
  }

  .blog-directory-head p,
  .blog-subtitle {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .category-cloud {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-top: 24px;
    padding-bottom: 20px;
  }

  .category-cloud button {
    min-height: 36px;
    white-space: nowrap;
  }

  .feed-card {
    padding: 18px;
  }

  .feed-cover {
    border-radius: 8px;
  }

  .feed-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feed-tags,
  .blog-tags {
    justify-content: flex-start;
  }

  .feed-title {
    font-size: 1.34rem;
  }

  .article-meta-row {
    gap: 12px;
  }

  .article-meta,
  .article-tags {
    gap: 7px;
  }

  .article-meta span,
  .blog-tags span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 0.76rem;
  }

  .blog-article {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .answer-callout,
  .blog-article blockquote {
    margin: 22px 0;
    padding: 16px 16px 16px 18px;
  }

  .answer-callout::after,
  .article-callout::after,
  .article-quote::after {
    top: 10px;
    right: 12px;
    font-size: 2rem;
  }

  .article-cover {
    width: 100%;
    margin: 20px 0 28px;
  }

  .related-posts {
    margin-top: 38px;
    padding-top: 22px;
  }

  .related-posts-head h2 {
    font-size: 1.35rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    min-height: auto;
    padding: 15px;
  }

  .article-aside .trial-card {
    display: block;
  }

  .trial-benefits,
  .trial-includes {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trial-includes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .blog-directory-head h1,
  .article-hero h1 {
    font-size: 1.9rem;
  }

  .feed-card {
    padding: 16px;
  }

  .article-cover {
    margin-top: 18px;
    margin-bottom: 24px;
  }

  .feed-meta {
    font-size: 0.78rem;
  }

  .trial-button {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-blog *,
  .public-blog *::before,
  .public-blog *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

/* Mobile hardening for public blog */
.public-blog,
.public-blog * {
  box-sizing: border-box;
}

.public-blog {
  overflow-x: hidden;
}

.public-blog .site-nav {
  box-sizing: border-box;
}

.blog-article table {
  max-width: 100%;
}

@media (max-width: 760px) {
  .public-blog .site-nav {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    margin: 0;
    padding: 12px 14px;
  }

  .public-blog .brand-mark {
    width: fit-content;
    min-width: 0;
  }

  .public-blog .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .public-blog .brand-mark strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .public-blog .site-nav nav {
    display: contents;
  }

  .public-blog .site-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .public-blog .site-nav nav a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-height: 30px;
    font-size: 0.82rem;
  }

  .public-blog .site-nav-links a {
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.72);
  }

  .public-blog .site-nav-links a:hover,
  .public-blog .site-nav-links a:focus-visible {
    border-color: rgba(163, 230, 53, 0.48);
    background: rgba(163, 230, 53, 0.1);
    color: #d9ff8b;
  }

  .public-blog .site-nav .nav-pill {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .blog-article {
    min-width: 0;
  }

  .blog-article table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 430px) {
  .public-blog .site-nav {
    gap: 9px 10px;
    padding: 11px 12px;
  }

  .public-blog .brand-mark {
    gap: 8px;
  }

  .public-blog .brand-mark img {
    width: 31px;
    height: 31px;
  }

  .public-blog .brand-mark strong {
    font-size: 0.94rem;
  }

  .public-blog .site-nav-links {
    gap: 6px;
  }

  .public-blog .site-nav-links a {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .public-blog .site-nav .nav-pill {
    min-height: 33px;
    padding: 0 11px;
    font-size: 0.78rem;
  }
}

/* Mobile burger navigation */
@media (max-width: 760px) {
  .public-blog .site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 11px 12px;
    background: rgba(7, 8, 7, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .public-blog .site-nav nav {
    display: contents;
  }

  .public-blog .brand-mark {
    grid-column: 1;
    min-width: 0;
  }

  .public-blog .brand-mark img {
    width: 32px;
    height: 32px;
  }

  .public-blog .brand-mark strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .public-blog .site-nav .nav-pill {
    grid-column: 2;
    grid-row: 1;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .public-blog .site-menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    height: 38px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    cursor: pointer;
  }

  .public-blog .site-menu-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .public-blog .site-nav.is-open .site-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .public-blog .site-nav.is-open .site-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .public-blog .site-nav.is-open .site-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .public-blog .site-nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 30;
    width: auto;
    min-width: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(11, 12, 10, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  }

  .public-blog .site-nav.is-open .site-nav-links {
    display: grid;
  }

  .public-blog .site-nav-links a {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
  }

  .public-blog .site-nav-links a:hover,
  .public-blog .site-nav-links a:focus-visible {
    border-color: rgba(163, 230, 53, 0.44);
    background: rgba(163, 230, 53, 0.1);
    color: #d9ff8b;
  }
}

@media (max-width: 390px) {
  .public-blog .site-nav {
    gap: 8px;
    padding: 10px;
  }

  .public-blog .brand-mark {
    gap: 7px;
  }

  .public-blog .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .public-blog .brand-mark strong {
    font-size: 0.92rem;
  }

  .public-blog .site-nav .nav-pill {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .public-blog .site-menu-toggle {
    width: 35px;
    height: 35px;
  }
}

/* Mobile table cards */
@media (max-width: 760px) {
  .blog-article table {
    display: block;
    width: 100%;
    overflow: visible;
    white-space: normal;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .blog-article thead {
    display: none;
  }

  .blog-article tbody {
    display: grid;
    gap: 12px;
  }

  .blog-article tr {
    display: grid;
    gap: 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
      #0c0d0b;
  }

  .blog-article td {
    display: grid;
    grid-template-columns: minmax(92px, 0.36fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 10px 0;
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .blog-article td + td {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .blog-article td::before {
    content: attr(data-label);
    color: rgba(163, 230, 53, 0.82);
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .blog-article td:not([data-label])::before {
    content: "";
  }
}

@media (max-width: 430px) {
  .blog-article tr {
    padding: 10px 12px;
  }

  .blog-article td {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 9px 0;
  }

  .blog-article td::before {
    font-size: 0.66rem;
  }
}
