:root {
  --blog-shell-width: min(1180px, calc(100% - 48px));
  --blog-content-width: min(860px, 100%);
}

html {
  scroll-behavior: smooth;
}

body.cyberfrog-blog-theme {
  background:
    radial-gradient(circle at top left, rgba(126,214,176,.18), transparent 34%),
    radial-gradient(circle at top right, rgba(167,247,208,.08), transparent 30%),
    linear-gradient(180deg, #0b1612 0%, #102018 40%, #0c1512 100%);
  color: #eef8f0;
}

body.cyberfrog-blog-theme .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.blog-main {
  min-height: calc(100vh - 220px);
}

.blog-hero-section {
  padding-top: 44px;
  padding-bottom: 28px;
}

.blog-hero-shell,
.blog-list-shell,
.article-shell,
.article-cta-shell {
  width: var(--blog-shell-width);
  margin: 0 auto;
}

.blog-hero-shell {
  display: block;
}

.blog-hero-copy {
  max-width: 860px;
}

.blog-hero-copy small,
.article-cta-shell small,
.section-heading-inline small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(103,237,178,.34);
  background: rgba(92,229,168,.08);
  color: #89f2bf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.blog-hero-copy small {
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(167,247,208,.82);
  background: linear-gradient(135deg, rgba(92,229,168,.26), rgba(167,247,208,.12));
  box-shadow: 0 0 10px rgba(92,229,168,.48), 0 0 22px rgba(167,247,208,.2), inset 0 1px 0 rgba(255,255,255,.28);
  color: #effff6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.blog-hero-copy small::before,
.article-cta-shell small::before,
.section-heading-inline small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72ebb4;
  box-shadow: 0 0 12px #72ebb4;
}

.blog-hero-copy h1 {
  margin: 24px 0 18px;
  max-width: 940px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.blog-hero-copy .accent {
  color: var(--mint2);
}

.blog-hero-copy p,
.article-cta-shell p {
  max-width: 760px;
  color: #b6c8c0;
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.blog-hero-actions,
.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.blog-hero-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(167,247,208,.82);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(92,229,168,.26), rgba(167,247,208,.12));
  box-shadow: 0 0 10px rgba(92,229,168,.48), 0 0 22px rgba(167,247,208,.2), inset 0 1px 0 rgba(255,255,255,.28);
  color: #effff6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.blog-hero-menu-button:hover {
  color: #f2fff8;
  border-color: rgba(167,247,208,.48);
  background: rgba(92,229,168,.06);
}

.blog-hero-menu-button svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  display: block;
  color: currentColor;
}

.blog-list-section,
.article-section,
.article-cta-section,
.related-posts-section {
  padding-top: 14px;
  padding-bottom: 56px;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-post-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(119, 235, 186, .18);
  background: linear-gradient(180deg, rgba(15,31,24,.94), rgba(10,19,15,.98));
  box-shadow: 0 28px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
}

.blog-post-card::before,
.article-card::before,
.article-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(126,214,176,.12), transparent 24%, transparent 72%, rgba(167,247,208,.06));
}

.blog-post-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  min-height: 100%;
}

.blog-post-card__meta,
.article-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-post-card__meta span,
.article-meta-pills span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(126,214,176,.2);
  background: rgba(167,247,208,.06);
  color: #9cefc8;
  font-size: 12px;
  font-weight: 700;
}

.blog-post-card__title,
.section-heading-inline h2 {
  margin: 0;
  color: #f3fbf6;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.blog-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-post-card__title a:hover,
.blog-post-card__link:hover,
.article-back-link:hover {
  color: #9cefc8;
}

.blog-post-card__excerpt,
.blog-post-card__excerpt p {
  margin: 0;
  color: #bfd0c8;
  line-height: 1.8;
}

.blog-post-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-post-card__excerpt p {
  display: inline;
}

.blog-post-card__link,
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dffef0;
  text-decoration: none;
  font-weight: 700;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(27,44,35,.08);
  box-shadow: 0 8px 20px rgba(27,44,35,.05);
}

.blog-pagination a,
.blog-pagination span {
  display: grid;
  place-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7a8c83;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.blog-pagination a:hover {
  background: rgba(92,229,168,.12);
  color: #176e46;
  transform: translateY(-1px);
}

.blog-pagination .current {
  color: #fff;
  background: #39bf78;
  box-shadow: 0 4px 10px rgba(57,191,120,.24);
}

.blog-pagination .current::after {
  content: none;
}

.blog-pagination .pagination-next {
  margin-left: 2px;
  color: #176e46;
}

.blog-pagination .pagination-next svg {
  width: 15px;
  height: 15px;
  display: block;
  stroke-width: 2;
}

.blog-pagination .pagination-next:hover {
  background: #39bf78;
  color: #fff;
}

.blog-pagination-more {
  display: none;
}

.blog-hero-section--article {
  padding-bottom: 14px;
}

.blog-hero-copy--article {
  max-width: 920px;
}

.article-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.article-deck {
  margin-top: 10px !important;
}

.article-shell {
  width: min(960px, calc(100% - 48px));
}

.article-card,
.article-cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(119,235,186,.18);
  background: linear-gradient(180deg, rgba(251,252,250,.98), rgba(245,249,246,.98));
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
}

.article-card {
  padding: clamp(28px, 4vw, 54px);
}

.article-content {
  position: relative;
  z-index: 1;
  color: #1d3129;
  font-size: 18px;
  line-height: 1.9;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content > *:last-child {
  margin-bottom: 0;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  color: #10221b;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin: 1.6em 0 .55em;
}

.article-content h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.article-content h3 {
  font-size: clamp(24px, 2.4vw, 30px);
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table,
.article-content pre {
  margin: 0 0 1.15em;
}

.article-content a {
  color: #167552;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35em;
}

.article-content li + li {
  margin-top: .45em;
}

.article-content strong {
  color: #10221b;
}

.article-content blockquote {
  padding: 18px 20px;
  border-left: 4px solid #72ebb4;
  border-radius: 0 18px 18px 0;
  background: rgba(22,117,82,.06);
  color: #173127;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 28px auto;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.article-content figure {
  margin: 28px 0;
}

.article-content figcaption {
  margin-top: 10px;
  color: #4e6259;
  font-size: 14px;
  text-align: center;
}

.article-content code,
.article-content pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, monospace;
}

.article-content pre {
  overflow: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: #10221b;
  color: #dffff0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 12px 14px;
  border: 1px solid rgba(16,34,27,.12);
  text-align: left;
}

.article-content hr {
  border: 0;
  border-top: 1px solid rgba(16,34,27,.12);
  margin: 2em 0;
}

.article-cta-shell {
  width: var(--blog-shell-width);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.article-cta-shell > * {
  position: relative;
  z-index: 1;
}

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.blog-empty-state {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(119,235,186,.18);
  background: rgba(15,31,24,.9);
}

body.cyberfrog-blog-theme .site-footer {
  margin-top: 18px;
}

body.cyberfrog-blog-theme .footer-bar {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body.cyberfrog-blog-theme .footer-brand {
  position: absolute;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

body.cyberfrog-blog-theme .footer-links {
  width: auto;
  justify-content: center;
  text-align: center;
  flex-direction: row;
}

body.cyberfrog-blog-theme .footer-links span {
  justify-content: center;
}

body.cyberfrog-blog-theme .footer-menu-dropdown {
  position: relative;
}

body.cyberfrog-blog-theme .footer-menu-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(167,247,208,.36);
  border-radius: 999px;
  background: rgba(92,229,168,.06);
  color: #dff8ec;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

body.cyberfrog-blog-theme .footer-menu-dropdown > summary::-webkit-details-marker {
  display: none;
}

body.cyberfrog-blog-theme .footer-menu-dropdown > summary::after {
  content: "▾";
  color: #89f2bf;
  font-size: 12px;
  line-height: 1;
  transition: transform .2s ease;
}

body.cyberfrog-blog-theme .footer-menu-dropdown[open] > summary::after {
  transform: rotate(180deg);
}

body.cyberfrog-blog-theme .footer-menu-dropdown > summary:hover {
  border-color: rgba(167,247,208,.62);
  background: rgba(92,229,168,.12);
  color: #fff;
}

body.cyberfrog-blog-theme .footer-menu-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 12;
  display: grid;
  min-width: 196px;
  padding: 8px;
  border: 1px solid rgba(103,237,178,.18);
  border-radius: 12px;
  background: rgba(3,13,10,.97);
  box-shadow: 0 16px 32px rgba(0,0,0,.28);
}

body.cyberfrog-blog-theme .footer-menu-panel > a,
body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown summary,
body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #b6c8c0;
  text-decoration: none;
  font-size: 12px;
}

body.cyberfrog-blog-theme .footer-menu-panel > a:hover,
body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown summary:hover,
body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown-menu a:hover {
  background: rgba(92,229,168,.1);
  color: #fff;
}

body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #b6c8c0;
  font-weight: 400;
}

body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown summary::after {
  content: "▾";
  color: #89f2bf;
  font-size: 12px;
}

body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown-menu {
  position: static;
  min-width: 0;
  margin: 4px 0 0;
  padding: 4px;
  background: rgba(92,229,168,.05);
  box-shadow: none;
}

/* One consistent footer menu component across every breakpoint. */
body.cyberfrog-blog-theme .footer-menu-dropdown > summary {
  min-height: 44px;
  padding: 9px 15px;
  justify-content: center;
  font-size: 12px;
}

body.cyberfrog-blog-theme .footer-menu-dropdown > summary svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

body.cyberfrog-blog-theme .footer-menu-panel > a,
body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown summary,
body.cyberfrog-blog-theme .footer-menu-panel .solution-dropdown-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
}

/* On tablet and mobile, keep the menu above its trigger and safely within view. */
@media (max-width: 1024px) {
  body.cyberfrog-blog-theme .site-footer {
    overflow: visible;
  }

  body.cyberfrog-blog-theme .site-footer .footer-menu-dropdown {
    position: relative;
    z-index: 20;
    width: min(340px, 100%);
    max-width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body.cyberfrog-blog-theme .footer-menu-dropdown > summary {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 9px 15px;
    font-size: 12px;
  }

  body.cyberfrog-blog-theme .footer-menu-dropdown > summary svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  body.cyberfrog-blog-theme .site-footer .footer-menu-panel {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: calc(100% + 10px);
    width: min(340px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    max-height: min(360px, calc(100dvh - 112px));
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(-50%);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    text-align: left;
  }

  body.cyberfrog-blog-theme .site-footer .footer-menu-panel > a,
  body.cyberfrog-blog-theme .site-footer .footer-menu-panel .solution-dropdown summary,
  body.cyberfrog-blog-theme .site-footer .footer-menu-panel .solution-dropdown-menu a {
    min-height: 42px;
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  body.cyberfrog-blog-theme .footer-menu-dropdown > summary {
    min-height: 44px;
    padding: 9px 15px;
    font-size: 12px;
  }

  body.cyberfrog-blog-theme .site-footer .footer-menu-dropdown {
    width: min(340px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  body.cyberfrog-blog-theme .site-footer .footer-menu-panel {
    width: min(340px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    bottom: calc(100% + 10px);
    border-radius: 14px;
  }

  body.cyberfrog-blog-theme .site-footer .footer-menu-panel > a,
  body.cyberfrog-blog-theme .site-footer .footer-menu-panel .solution-dropdown summary,
  body.cyberfrog-blog-theme .site-footer .footer-menu-panel .solution-dropdown-menu a {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 13px;
  }
}

body.cyberfrog-blog-theme .footer-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

body.cyberfrog-blog-theme .footer-nav-dropdown summary {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.cyberfrog-blog-theme .footer-nav-dropdown summary svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  display: block;
  color: currentColor;
}

body.cyberfrog-blog-theme .footer-nav-dropdown-menu {
  left: 50%;
  right: auto;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  min-width: 220px;
  text-align: left;
}

body.cyberfrog-blog-theme .footer-nav-dropdown-menu a,
body.cyberfrog-blog-theme .footer-nav-dropdown-group {
  display: block;
}

body.cyberfrog-blog-theme .footer-nav-dropdown-group {
  padding: 10px 10px 4px;
  color: #89f2bf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  body.cyberfrog-blog-theme .site-footer {
    overflow: visible;
    padding-left: 20px;
    padding-right: 20px;
  }

  body.cyberfrog-blog-theme .footer-bar {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-brand {
    position: static;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-copy {
    width: 100%;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown {
    width: min(340px, 100%);
    max-width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown summary {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 9px 15px;
    font-size: 12px;
    box-sizing: border-box;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown summary svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown-menu {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 0;
    padding: 8px;
    text-align: left;
    z-index: 12;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown-menu a,
  body.cyberfrog-blog-theme .footer-nav-dropdown-group {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  body.cyberfrog-blog-theme .site-footer {
    overflow: visible;
    padding: 20px 12px 24px;
  }

  body.cyberfrog-blog-theme .footer-bar {
    gap: 18px;
    align-items: center;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-brand {
    align-self: center;
    justify-content: center;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-links {
    gap: 14px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  body.cyberfrog-blog-theme .footer-links > span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown {
    width: min(340px, calc(100vw - 24px));
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown summary {
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 11px 18px;
    font-size: 13px;
    box-sizing: border-box;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown-menu {
    left: 50%;
    right: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: 100%;
    min-width: 0;
    margin-top: 0;
    border-radius: 14px;
    text-align: left;
  }

  body.cyberfrog-blog-theme .footer-nav-dropdown-menu a,
  body.cyberfrog-blog-theme .footer-nav-dropdown-group {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 13px;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .blog-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-cta-shell,
  .section-heading-inline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --blog-shell-width: min(100%, calc(100% - 24px));
  }

  .blog-hero-section {
    padding-top: 26px;
  }

  .blog-hero-copy h1 {
    margin-top: 18px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .article-shell {
    width: min(100%, calc(100% - 24px));
  }

  .article-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .article-content {
    font-size: 17px;
    line-height: 1.8;
  }

  .article-kicker-row {
    align-items: flex-start;
  }
}

/* Refined single article layout */
.single-post-main--refined {
  padding-bottom: 8px;
}

.article-landing-hero {
  padding-top: 42px;
  padding-bottom: 18px;
}

.article-landing-hero__shell,
.article-reading-wrap,
.article-next-strip {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.article-landing-hero__shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  border: 1px solid rgba(126,214,176,.16);
  background:
    radial-gradient(circle at top right, rgba(126,214,176,.16), transparent 30%),
    radial-gradient(circle at top left, rgba(167,247,208,.08), transparent 26%),
    linear-gradient(180deg, rgba(13,27,21,.96), rgba(10,18,15,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.04);
}

.article-landing-hero__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(126,214,176,.08), transparent 22%, transparent 76%, rgba(167,247,208,.06));
}

.article-landing-hero__top,
.article-landing-hero__intro {
  position: relative;
  z-index: 1;
}

.article-landing-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.article-landing-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dffef0;
  text-decoration: none;
  font-weight: 700;
}

.article-landing-hero__back:hover {
  color: #9cefc8;
}

.article-landing-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.article-landing-hero__meta span,
.article-category-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(126,214,176,.2);
  background: rgba(167,247,208,.06);
  color: #9cefc8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.article-landing-hero__intro {
  max-width: 760px;
}

.article-landing-hero__intro small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(103,237,178,.34);
  background: rgba(92,229,168,.08);
  color: #89f2bf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-landing-hero__intro small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72ebb4;
  box-shadow: 0 0 12px #72ebb4;
}

.article-landing-hero__intro h1 {
  margin: 20px 0 16px;
  color: #f4fbf6;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.article-landing-hero__deck {
  margin: 0;
  color: #b6c8c0;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.75;
}

.article-reading-section {
  padding-top: 8px;
  padding-bottom: 38px;
}

.article-reading-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 32px;
  border: 1px solid rgba(126,214,176,.14);
  background:
    linear-gradient(180deg, rgba(15,28,23,.96), rgba(9,18,14,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
}

.article-reading-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(126,214,176,.05), transparent 20%, transparent 78%, rgba(167,247,208,.05));
}

.article-reading-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  color: #d8e6de;
  font-size: 19px;
  line-height: 1.95;
}

.article-reading-content > *:first-child {
  margin-top: 0;
}

.article-reading-content > *:last-child {
  margin-bottom: 0;
}

.article-reading-content h1,
.article-reading-content h2,
.article-reading-content h3,
.article-reading-content h4 {
  color: #f3fbf6;
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 1.65em 0 .6em;
}

.article-reading-content h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.article-reading-content h3 {
  font-size: clamp(24px, 2.4vw, 30px);
}

.article-reading-content p,
.article-reading-content ul,
.article-reading-content ol,
.article-reading-content blockquote,
.article-reading-content table,
.article-reading-content pre,
.article-reading-content figure {
  margin: 0 0 1.2em;
}

.article-reading-content a {
  color: #8df1bf;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-reading-content strong {
  color: #f4fbf6;
}

.article-reading-content ul,
.article-reading-content ol {
  padding-left: 1.35em;
}

.article-reading-content li + li {
  margin-top: .45em;
}

.article-reading-content blockquote {
  padding: 18px 20px;
  border-left: 4px solid #72ebb4;
  border-radius: 0 18px 18px 0;
  background: rgba(126,214,176,.08);
  color: #e8f7ee;
}

.article-reading-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 30px auto;
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.article-reading-content figcaption {
  margin-top: 10px;
  color: #98aba3;
  font-size: 14px;
  text-align: center;
}

.article-reading-content code,
.article-reading-content pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, monospace;
}

.article-reading-content pre {
  overflow: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: #08110d;
  color: #dffff0;
}

.article-reading-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-reading-content th,
.article-reading-content td {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  text-align: left;
}

.article-reading-content hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 2em 0;
}

.article-next-section {
  padding-top: 0;
  padding-bottom: 28px;
}

.article-next-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 30px;
  border: 1px solid rgba(126,214,176,.14);
  background: linear-gradient(180deg, rgba(15,28,23,.96), rgba(9,18,14,.98));
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.article-next-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(126,214,176,.08), transparent 22%, transparent 78%, rgba(167,247,208,.05));
}

.article-next-strip__copy,
.article-next-strip__actions {
  position: relative;
  z-index: 1;
}

.article-next-strip__copy {
  max-width: 620px;
}

.article-next-strip__copy h2 {
  margin: 16px 0 10px;
  color: #f4fbf6;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.article-next-strip__copy p {
  margin: 0;
  color: #b6c8c0;
  line-height: 1.75;
}

.article-next-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-posts-section--refined {
  padding-top: 8px;
}

.section-heading-inline--refined h2 {
  color: #f4fbf6;
}

@media (max-width: 900px) {
  .article-landing-hero__top,
  .article-next-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-landing-hero__meta {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .article-landing-hero__shell,
  .article-reading-wrap,
  .article-next-strip {
    width: min(100%, calc(100% - 24px));
  }

  .article-landing-hero {
    padding-top: 24px;
  }

  .article-reading-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .article-reading-content {
    font-size: 17px;
    line-height: 1.85;
  }

  .article-next-strip {
    border-radius: 24px;
  }
}

/* Landing-aligned single article redesign */
.single-post-main--landing {
  padding-bottom: 8px;
}

.single-post-main--landing .article-hero-section {
  padding-top: 18px;
  padding-bottom: 24px;
  background: linear-gradient(145deg, #103528 0%, #0b1f18 58%, #081510 100%);
}

.article-hero-wrap--landing {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: stretch;
}

.article-hero-copy--landing {
  padding: 18px 0 0;
}

.article-hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 6px;
}

.article-meta-pills--landing {
  justify-content: flex-end;
}

.article-meta-pills--landing span,
.article-meta-pills--landing a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(126,214,176,.2);
  background: rgba(167,247,208,.06);
  color: #9cefc8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.single-post-main--landing .article-hero-copy h1 {
  max-width: 900px;
  margin: 18px 0 16px;
}

.article-hero-deck {
  max-width: 760px !important;
}

.article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.article-hero-panel {
  display: flex;
}

.article-hero-panel__card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(167,247,208,.82);
  background: linear-gradient(180deg, rgba(15,31,24,.94), rgba(10,19,15,.98));
  box-shadow: 0 0 10px rgba(92,229,168,.48), 0 0 22px rgba(167,247,208,.2), 0 28px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.28);
}

.article-hero-panel__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(126,214,176,.12), transparent 24%, transparent 72%, rgba(167,247,208,.06));
}

.article-hero-panel__card > * {
  position: relative;
  z-index: 1;
}

.article-hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #89f2bf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-hero-panel__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72ebb4;
  box-shadow: 0 0 12px #72ebb4;
}

.article-hero-panel__card p {
  margin: 16px 0 20px;
  color: #bfd0c8;
  line-height: 1.75;
}

.article-hero-panel__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.article-hero-panel__facts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(167,247,208,.05);
  border: 1px solid rgba(126,214,176,.12);
}

.article-hero-panel__facts span {
  color: #9fb6ac;
  font-size: 13px;
}

.article-hero-panel__facts strong {
  color: #f2fff8;
  font-size: 13px;
}

.article-story-section--landing {
  position: relative;
  background:
    linear-gradient(rgba(126,214,176,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,214,176,.08) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfa 0%, #f7faf7 100%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
  border-top: 1px solid rgba(103,237,178,.08);
  border-bottom: 1px solid rgba(103,237,178,.08);
  color: #102019;
  padding-top: 28px;
  padding-bottom: 34px;
}

.article-story-wrap--landing,
.article-bridge-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.article-story-card {
  position: relative;
  overflow: hidden;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(16,32,25,.08);
  box-shadow: 0 24px 60px rgba(16,32,25,.08), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.article-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,0));
}

.article-story-content {
  position: relative;
  z-index: 1;
  color: #21352d;
  font-size: 18px;
  line-height: 1.9;
}

.article-story-content > *:first-child {
  margin-top: 0;
}

.article-story-content > *:last-child {
  margin-bottom: 0;
}

.article-story-content h1,
.article-story-content h2,
.article-story-content h3,
.article-story-content h4 {
  color: #10221b;
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 1.6em 0 .58em;
}

.article-story-content h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.article-story-content h3 {
  font-size: clamp(24px, 2.4vw, 30px);
}

.article-story-content p,
.article-story-content ul,
.article-story-content ol,
.article-story-content blockquote,
.article-story-content table,
.article-story-content pre,
.article-story-content figure {
  margin: 0 0 1.15em;
}

.article-story-content a {
  color: #167552;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-story-content strong {
  color: #10221b;
}

.article-story-content ul,
.article-story-content ol {
  padding-left: 1.35em;
}

.article-story-content li + li {
  margin-top: .45em;
}

.article-story-content blockquote {
  padding: 18px 20px;
  border-left: 4px solid #72ebb4;
  border-radius: 0 18px 18px 0;
  background: rgba(22,117,82,.06);
  color: #173127;
}

.article-story-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 28px auto;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.article-story-content figcaption {
  margin-top: 10px;
  color: #4e6259;
  font-size: 14px;
  text-align: center;
}

.article-story-content code,
.article-story-content pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, monospace;
}

.article-story-content pre {
  overflow: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: #10221b;
  color: #dffff0;
}

.article-story-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-story-content th,
.article-story-content td {
  padding: 12px 14px;
  border: 1px solid rgba(16,34,27,.12);
  text-align: left;
}

.article-story-content hr {
  border: 0;
  border-top: 1px solid rgba(16,34,27,.12);
  margin: 2em 0;
}

.article-bridge-section {
  padding-top: 28px;
  padding-bottom: 22px;
}

.article-bridge-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.article-bridge-copy {
  max-width: 660px;
}

.article-bridge-copy small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(103,237,178,.34);
  background: rgba(92,229,168,.08);
  color: #89f2bf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-bridge-copy small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72ebb4;
  box-shadow: 0 0 12px #72ebb4;
}

.article-bridge-copy h2 {
  margin: 18px 0 12px;
  color: #f4fbf6;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.article-bridge-copy p {
  margin: 0;
  color: #b6c8c0;
  font-size: 18px;
  line-height: 1.75;
}

.article-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-posts-section--landing {
  padding-top: 28px;
}

@media (max-width: 980px) {
  .article-hero-wrap--landing {
    grid-template-columns: 1fr;
  }

  .article-bridge-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .single-post-main--landing .article-hero-section {
    padding-top: 4px;
  }

  .article-hero-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-meta-pills--landing {
    justify-content: flex-start;
  }

  .article-story-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .article-story-content {
    font-size: 17px;
    line-height: 1.82;
  }
}

/* Smaller landing-like article typography tweaks */
.single-post-main--landing .article-hero-copy small {
  padding: 6px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: none;
}

.single-post-main--landing .article-hero-copy small::before,
.single-post-main--landing .section-heading-inline--landing small::before {
  width: 7px;
  height: 7px;
}

.single-post-main--landing .section-heading-inline--landing small {
  padding: 6px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.single-post-main--landing .section-heading-inline--landing h2 {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.08;
  letter-spacing: -.03em;
}


/* Single article hero title centering */
.single-post-main--landing .article-hero-copy h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* Left-aligned article title + hero image */
.single-post-main--landing .article-hero-copy h1 {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.article-hero-image-wrap {
  margin-top: 26px;
  max-width: 760px;
}

.article-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(167,247,208,.82);
  box-shadow: 0 0 10px rgba(92,229,168,.48), 0 0 22px rgba(167,247,208,.2), 0 28px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.28);
}

@media (max-width: 720px) {
  .article-hero-image-wrap {
    margin-top: 20px;
  }

  .article-hero-image {
    border-radius: 22px;
  }
}

/* Smaller single article hero image */
.article-hero-image-wrap {
  max-width: 420px !important;
}

.article-hero-image {
  max-width: 420px;
}

@media (max-width: 720px) {
  .article-hero-image-wrap,
  .article-hero-image {
    max-width: 100% !important;
  }
}

/* Single article image + summary side-by-side */
.article-hero-wrap--landing {
  grid-template-columns: 1fr !important;
}

.article-hero-copy--landing {
  max-width: 100%;
}

.article-hero-media-row {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(320px, 420px);
  gap: 26px;
  align-items: stretch;
  margin-top: 26px;
  max-width: 866px;
}

.article-hero-image-wrap {
  margin-top: 0 !important;
  max-width: 420px !important;
}

.article-hero-panel--inline {
  display: block;
  width: 100%;
  max-width: 420px;
}

.article-hero-panel--inline .article-hero-panel__card {
  min-height: 100%;
}

@media (max-width: 900px) {
  .article-hero-media-row {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .article-hero-panel--inline,
  .article-hero-image-wrap {
    max-width: 420px !important;
  }
}

@media (max-width: 720px) {
  .article-hero-media-row,
  .article-hero-panel--inline,
  .article-hero-image-wrap {
    max-width: 100% !important;
  }
}

/* Final single article hero sizing/alignment */
.single-post-main--landing .article-hero-copy h1 {
  text-align: center !important;
  margin: 0 auto 24px !important;
  max-width: none !important;
  font-size: clamp(24px, 2.7vw, 38px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
  white-space: nowrap;
}

.article-hero-media-row {
  grid-template-columns: repeat(2, minmax(0, 390px)) !important;
  justify-content: center;
  max-width: 806px !important;
}

.article-hero-image-wrap,
.article-hero-panel--inline {
  width: 100%;
  max-width: none !important;
}

.article-hero-image-wrap {
  display: flex;
  min-height: 350px;
}

.article-hero-image {
  width: 100%;
  max-width: none !important;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.article-hero-panel--inline .article-hero-panel__card {
  min-height: 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .single-post-main--landing .article-hero-copy h1 {
    white-space: normal;
  }

  .article-hero-media-row {
    grid-template-columns: 1fr !important;
    max-width: 390px !important;
  }

  .article-hero-image-wrap,
  .article-hero-image,
  .article-hero-panel--inline .article-hero-panel__card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .single-post-main--landing .article-hero-copy h1 {
    font-size: clamp(22px, 6vw, 30px) !important;
  }

  .article-hero-media-row {
    max-width: 100% !important;
  }
}

/* Center hero media row and both blocks */
.article-hero-copy--landing {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-hero-media-row {
  margin-left: auto;
  margin-right: auto;
}

.article-hero-image-wrap,
.article-hero-panel--inline {
  margin-left: auto;
  margin-right: auto;
}

/* Article summary panel: dark top, blurred bottom */
.article-hero-panel--inline .article-hero-panel__card {
  padding: 0 !important;
  background:
    linear-gradient(180deg, rgba(11,24,19,.96) 0%, rgba(11,24,19,.96) 52%, rgba(167,247,208,.10) 52%, rgba(167,247,208,.10) 100%) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.article-hero-panel--inline .article-hero-panel__card > p {
  margin: 0 !important;
  padding: 26px 24px 22px;
  color: #eef8f2;
}

.article-hero-panel--inline .article-hero-panel__facts {
  margin: 0;
  padding: 18px 20px 20px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.article-hero-panel--inline .article-hero-panel__facts li {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.10);
}

/* Remove blur from summary text area; keep facts blur below */
.article-hero-panel--inline .article-hero-panel__card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Remove blur from article facts area */
.article-hero-panel--inline .article-hero-panel__facts {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Refined article summary panel without changing footprint */
.article-hero-panel--inline .article-hero-panel__card {
  background:
    linear-gradient(180deg, rgba(10,20,16,.98) 0%, rgba(10,20,16,.98) 54%, rgba(14,27,22,.96) 54%, rgba(14,27,22,.96) 100%) !important;
  border-color: rgba(167,247,208,.82);
  box-shadow: 0 0 10px rgba(92,229,168,.48), 0 0 22px rgba(167,247,208,.2), 0 28px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.28);
}

.article-hero-panel--inline .article-hero-panel__card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(167,247,208,.28), rgba(167,247,208,0));
  pointer-events: none;
}

.article-hero-panel--inline .article-hero-panel__card::before {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 32%, rgba(92,229,168,.04) 72%, rgba(255,255,255,0) 100%);
}

.article-hero-panel--inline .article-hero-panel__card > p {
  padding: 24px 24px 20px;
  color: #effaf3;
  font-size: 16px;
  line-height: 1.78;
  border-bottom: 1px solid rgba(167,247,208,.10);
}

.article-hero-panel--inline .article-hero-panel__facts {
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  gap: 10px;
}

.article-hero-panel--inline .article-hero-panel__facts li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: start;
  justify-content: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(167,247,208,.10);
}

.article-hero-panel--inline .article-hero-panel__facts span {
  color: #8fb8a3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-hero-panel--inline .article-hero-panel__facts strong {
  color: #f4fbf7;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

/* Related posts CTA/button alignment */
.article-view-all-button {
  align-self: center;
}

.blog-post-card__link {
  margin-top: auto;
}

/* Minimal related-posts link */
.article-minimal-link {
  color: #dffef0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  opacity: .92;
  transition: color .2s ease, opacity .2s ease;
}

.article-minimal-link:hover {
  color: #9cefc8;
  opacity: 1;
}

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

.article-minimal-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

/* Square hero blocks under article title */
.article-hero-image-wrap,
.article-hero-panel--inline {
  aspect-ratio: 1 / 1;
}

.article-hero-image-wrap {
  min-height: 0 !important;
}

.article-hero-image {
  min-height: 0 !important;
  height: 100%;
}

.article-hero-panel--inline .article-hero-panel__card {
  min-height: 0 !important;
  height: 100%;
}

/* Compact facts list so all labels fit inside square card */
.article-hero-panel--inline .article-hero-panel__facts {
  padding: 14px 16px 16px;
  gap: 8px;
}

.article-hero-panel--inline .article-hero-panel__facts li {
  padding: 10px 12px;
  gap: 3px;
  border-radius: 14px;
}

.article-hero-panel--inline .article-hero-panel__facts span {
  font-size: 10px;
  letter-spacing: .06em;
}

.article-hero-panel--inline .article-hero-panel__facts strong {
  font-size: 13px;
  line-height: 1.25;
}

/* Make the square facts panel fit cleanly */
.article-hero-panel--inline .article-hero-panel__card {
  justify-content: flex-start;
}

.article-hero-panel--inline .article-hero-panel__card > p {
  padding: 20px 20px 16px;
  font-size: 15px;
  line-height: 1.6;
}

.article-hero-panel--inline .article-hero-panel__facts {
  margin-top: auto;
  padding: 12px 14px 14px;
  gap: 8px;
}

.article-hero-panel--inline .article-hero-panel__facts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  min-height: 48px;
}

.article-hero-panel--inline .article-hero-panel__facts span {
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 1.2;
}

.article-hero-panel--inline .article-hero-panel__facts strong {
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
  max-width: 46%;
}

/* Align article title + hero blocks with header width */
.article-hero-copy--landing {
  width: 100%;
  max-width: 100%;
  align-items: stretch !important;
}

.single-post-main--landing .article-hero-copy h1 {
  width: 100%;
  max-width: 100% !important;
}

.article-hero-media-row {
  width: 100%;
  max-width: 100% !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  justify-content: stretch !important;
}

.article-hero-image-wrap,
.article-hero-panel--inline {
  width: 100%;
  max-width: 100% !important;
}

@media (max-width: 900px) {
  .article-hero-media-row {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Slightly smaller but still aligned hero blocks */
.article-hero-media-row {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 900px) {
  .article-hero-media-row {
    max-width: 380px !important;
  }
}

/* Article table of contents panel */
.article-hero-media-row {
  max-width: 1140px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.article-hero-panel--inline {
  order: 1;
}

.article-hero-image-wrap {
  order: 2;
}

.article-hero-toc {
  order: 3;
}

.article-hero-toc {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.article-hero-toc__card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(167,247,208,.82);
  background: linear-gradient(180deg, rgba(15,31,24,.94), rgba(10,19,15,.98));
  box-shadow: 0 0 10px rgba(92,229,168,.48), 0 0 22px rgba(167,247,208,.2), 0 28px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.28);
}

.article-hero-toc__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(126,214,176,.12), transparent 24%, transparent 72%, rgba(167,247,208,.06));
}

.article-hero-toc__title,
.article-hero-toc__nav {
  position: relative;
  z-index: 1;
}

.article-hero-toc__title {
  color: #effaf3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.article-hero-toc__nav {
  height: calc(100% - 32px);
  overflow: auto;
  padding-right: 4px;
}

.article-hero-toc__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.article-hero-toc__nav li {
  line-height: 1.35;
}

.article-hero-toc__nav li.level-1 a {
  color: #f4fbf7;
  font-weight: 700;
}

.article-hero-toc__nav li.level-2 {
  padding-left: 10px;
}

.article-hero-toc__nav li.level-3 {
  padding-left: 20px;
}

.article-hero-toc__nav a {
  color: #b9d2c6;
  text-decoration: none;
  font-size: 13px;
}

.article-hero-toc__nav a:hover {
  color: #9cefc8;
}

@media (max-width: 1100px) {
  .article-hero-media-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 760px !important;
  }

  .article-hero-toc {
    aspect-ratio: auto;
  }

  .article-hero-toc__card {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .article-hero-media-row {
    grid-template-columns: 1fr !important;
    max-width: 380px !important;
  }

  .article-hero-toc__card {
    min-height: 0;
    height: auto;
  }

  .article-hero-toc__nav {
    height: auto;
    overflow: visible;
  }
}

/* Refined integrated TOC design */
.article-hero-toc__card {
  padding: 18px 16px 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(126,214,176,.12), transparent 30%),
    linear-gradient(180deg, rgba(12,24,19,.98), rgba(9,17,14,.99)) !important;
}

.article-hero-toc__card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(167,247,208,.28), rgba(167,247,208,0));
  pointer-events: none;
}

.article-hero-toc__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #9cefc8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-hero-toc__title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72ebb4;
  box-shadow: 0 0 12px rgba(114,235,180,.9);
}

.article-hero-toc__nav {
  height: calc(100% - 38px);
  padding-right: 2px;
}

.article-hero-toc__nav::-webkit-scrollbar {
  width: 6px;
}

.article-hero-toc__nav::-webkit-scrollbar-thumb {
  background: rgba(167,247,208,.18);
  border-radius: 999px;
}

.article-hero-toc__nav ul {
  gap: 8px;
}

.article-hero-toc__nav li {
  position: relative;
}

.article-hero-toc__nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(167,247,208,.22);
}

.article-hero-toc__nav li.level-1::before {
  background: #72ebb4;
  box-shadow: 0 0 10px rgba(114,235,180,.55);
}

.article-hero-toc__nav li.level-2 {
  padding-left: 12px;
}

.article-hero-toc__nav li.level-3 {
  padding-left: 24px;
}

.article-hero-toc__nav a {
  display: inline-block;
  padding-left: 16px;
  color: #c7d8d0;
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.article-hero-toc__nav li.level-1 a {
  color: #f4fbf7;
  font-weight: 700;
}

.article-hero-toc__nav li.level-2 a {
  font-weight: 600;
}

.article-hero-toc__nav li.level-3 a {
  color: #9fb8ad;
}

.article-hero-toc__nav a:hover {
  color: #9cefc8;
}

/* Brighter TOC bullets for H2/H3 */
.article-hero-toc__nav li.level-2::before,
.article-hero-toc__nav li.level-3::before {
  background: #8ff0c1;
  box-shadow: 0 0 10px rgba(143,240,193,.55), 0 0 18px rgba(114,235,180,.35);
}

.article-hero-panel__summary-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px 0;
  color: #9cefc8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-hero-panel__summary-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72ebb4;
  box-shadow: 0 0 10px rgba(114,235,180,.8);
}

.article-hero-panel--inline .article-hero-panel__card > p {
  padding-top: 12px;
}

/* Align Summary and TOC headings */
.article-hero-panel__summary-title,
.article-hero-toc__title {
  min-height: 18px;
}

.article-hero-panel__summary-title {
  padding: 18px 20px 0 !important;
  margin: 0 0 6px 0;
}


.article-hero-toc__title {
  margin: 0 0 24px 0;
}

/* Left-align TOC on tablets and mobiles */
@media (max-width: 1100px) {
  .article-hero-toc {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .article-hero-toc {
    justify-self: start;
    width: 100%;
  }

  .article-hero-toc__card {
    margin-left: 0;
    margin-right: auto;
  }
}

/* Left-align summary and TOC content on tablets/mobiles */
@media (max-width: 1100px) {
  .article-hero-panel--inline .article-hero-panel__card,
  .article-hero-panel--inline .article-hero-panel__card > p,
  .article-hero-panel__summary-title,
  .article-hero-toc__title,
  .article-hero-toc__nav,
  .article-hero-toc__nav ul,
  .article-hero-toc__nav li,
  .article-hero-toc__nav a {
    text-align: left;
  }

  .article-hero-panel--inline .article-hero-panel__card {
    align-items: flex-start;
  }

  .article-hero-toc__title,
  .article-hero-panel__summary-title {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .article-hero-panel--inline .article-hero-panel__card > p {
    text-align: left;
  }

  .article-hero-toc__nav a {
    text-align: left;
  }
}

/* Tablet/mobile: left-align TOC title + full-width facts rows */
@media (max-width: 1100px) {
  .article-hero-toc__title {
    width: 100%;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .article-hero-panel--inline .article-hero-panel__facts {
    width: 100%;
  }

  .article-hero-panel--inline .article-hero-panel__facts li {
    width: 100%;
  }

  .article-hero-panel--inline .article-hero-panel__facts span {
    flex: 1 1 auto;
  }

  .article-hero-panel--inline .article-hero-panel__facts strong {
    flex: 1 1 auto;
    max-width: none;
    text-align: right;
  }
}

.article-hero-toc__empty {
  position: relative;
  z-index: 1;
  color: #9fb8ad;
  font-size: 13px;
  line-height: 1.6;
  padding: 8px 0 0;
}

.top-announcement {
  position:relative;
  width:100%;
  overflow:hidden;
  border-bottom:1px solid rgba(103,237,178,.18);
  background:
    linear-gradient(90deg, rgba(92,229,168,.06), transparent 28%, transparent 72%, rgba(92,229,168,.06)),
    linear-gradient(135deg, #06130e 0%, #0a2118 50%, #06130e 100%);
  box-shadow:inset 0 -1px 0 rgba(167,247,208,.05);
  color:#fff;
  text-decoration:none;
}
.top-announcement::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.3;
  background:linear-gradient(90deg, rgba(167,247,208,.06) 1px, transparent 1px);
  background-size:28px 100%;
  mask-image:linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events:none;
}
.top-announcement-inner {
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  width:min(1180px,100%);
  min-height:38px;
  margin:0 auto;
  padding:8px 56px;
}
.top-announcement-label {
  display:inline-flex;
  flex:0 0 auto;
  align-items:center;
  gap:7px;
  color:#89f2bf;
  font-size:9px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.top-announcement-label::before {
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#72ebb4;
  box-shadow:0 0 9px rgba(114,235,180,.92);
  animation:latestArticlePulse 2.2s ease-in-out infinite;
}
.top-announcement-date {
  flex:0 0 auto;
  color:#89f2bf;
  font-size:10px;
  font-weight:400;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.top-announcement-divider {
  width:1px;
  height:14px;
  flex:0 0 auto;
  background:rgba(167,247,208,.24);
}
.top-announcement-separator {
  color:#89f2bf;
  font-weight:900;
}
.top-announcement-title {
  overflow:hidden;
  margin:0;
  color:rgba(244,255,249,.94);
  font-size:13px;
  font-weight:400;
  line-height:1.3;
  letter-spacing:.005em;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.top-announcement:hover .top-announcement-title {
  color:#fff;
}
@media(max-width:680px) {
  .top-announcement-inner {
    min-height:0;
    flex-wrap:wrap;
    gap:5px 9px;
    padding:8px 16px 9px;
  }
  .top-announcement-label,
  .top-announcement-date {
    font-size:8.5px;
  }
  .top-announcement-divider {
    height:12px;
  }
  .top-announcement-title {
    width:100%;
    font-size:12px;
  }
}
.top-announcement-wrap {
  position:relative;
  max-height:72px;
  overflow:hidden;
  transition:max-height .32s ease, opacity .22s ease;
}
.top-announcement-wrap.is-dismissed {
  max-height:0;
  opacity:0;
}
.top-announcement-wrap.is-dismissed + .announcement-header-divider {
  height:0;
  opacity:0;
  box-shadow:none;
  transition:height .18s ease, opacity .18s ease;
}
.top-announcement-inner {
  padding-right:56px;
}
.announcement-close {
  position:absolute;
  z-index:2;
  top:50%;
  right:max(20px, calc((100% - 1180px) / 2 + 20px));
  display:grid;
  width:26px;
  height:26px;
  padding:0;
  place-items:center;
  border:1px solid rgba(167,247,208,.2);
  border-radius:50%;
  background:rgba(3,13,10,.32);
  color:rgba(167,247,208,.76);
  font:400 20px/1 Arial,sans-serif;
  cursor:pointer;
  transform:translateY(-50%);
  transition:color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.announcement-close:hover,
.announcement-close:focus-visible {
  border-color:rgba(167,247,208,.5);
  background:rgba(92,229,168,.14);
  color:#fff;
  outline:none;
  transform:translateY(-50%) rotate(90deg);
}
@media(max-width:680px) {
  .top-announcement-inner {
    padding-right:46px;
  }
  .announcement-close {
    right:12px;
  }
}
.announcement-header-divider {
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(92,229,168,.18) 12%, rgba(167,247,208,.9) 50%, rgba(92,229,168,.18) 88%, transparent 100%);
  box-shadow:0 0 18px rgba(92,229,168,.08);
}
@keyframes latestArticlePulse {
  0%, 100% {
    opacity:.35;
    transform:scale(.84);
    box-shadow:0 0 0 rgba(114,235,180,0);
  }
  50% {
    opacity:1;
    transform:scale(1.12);
    box-shadow:0 0 12px rgba(114,235,180,.95);
  }
}
.agent-launcher{position:fixed;right:20px;bottom:20px;z-index:120;display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border:none;border-radius:999px;background:linear-gradient(135deg,rgba(20,57,43,.98),rgba(8,27,20,.98));color:#f3fff8;box-shadow:0 20px 42px rgba(0,0,0,.28),0 8px 18px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.09);font-size:12px;font-weight:700;line-height:1.2;letter-spacing:normal;font-family:Inter,Arial,sans-serif;cursor:pointer;transform:scale(1);transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease}
.agent-launcher:hover,.agent-launcher:focus-visible,.agent-launcher:active{transform:scale(1.05)}
.agent-launcher svg{width:16px;height:16px;flex:0 0 auto}.agent-launcher .agent-pill{display:inline-flex;align-items:center;gap:12px}.agent-launcher .agent-pill img{width:38px;height:38px;display:block;object-fit:contain}.agent-launcher .agent-dot{display:none}
.agent-shell{position:fixed;right:20px;bottom:84px;z-index:121;width:min(420px,calc(100vw - 24px));height:min(72vh,620px);max-height:calc(100dvh - 108px);display:none;flex-direction:column;border:1px solid rgba(167,247,208,.16);border-radius:26px;overflow:hidden;background:linear-gradient(180deg,rgba(9,18,14,.98),rgba(7,14,11,.99));box-shadow:0 26px 80px rgba(0,0,0,.32)}
.agent-shell.open{display:flex}.agent-head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;border-bottom:1px solid rgba(167,247,208,.1);background:linear-gradient(180deg,rgba(12,24,19,.98),rgba(10,19,15,.96))}.agent-head-brand{display:flex;align-items:center;gap:12px}.agent-head-brand img{width:54px;height:54px;display:block;object-fit:contain}.agent-head-copy small{display:inline-flex;align-items:center;gap:8px;color:#9cefc8;font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.agent-head-copy small::before{content:"";width:7px;height:7px;border-radius:50%;background:#72ebb4;box-shadow:0 0 10px rgba(114,235,180,.8)}.agent-head-copy h3{margin:6px 0 0;color:#f4fbf6;font-size:18px;line-height:1.1}.agent-head-copy p{margin:4px 0 0;color:#a8beb3;font-size:12px;line-height:1.45}.agent-close{border:none;background:transparent;color:#d8eee2;font-size:28px;line-height:1;cursor:pointer}
.agent-messages{flex:1;overflow:auto;padding:16px;display:flex;flex-direction:column;gap:12px;background:radial-gradient(circle at top right,rgba(126,214,176,.08),transparent 24%),linear-gradient(180deg,#08120f 0%,#091612 100%);scrollbar-width:thin;scrollbar-color:#39bf78 rgba(92,229,168,.12)}
.agent-messages::-webkit-scrollbar{width:10px}.agent-messages::-webkit-scrollbar-track{background:rgba(92,229,168,.12);border-radius:999px}.agent-messages::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#62e8aa,#39bf78);border-radius:999px;border:2px solid rgba(8,18,15,.9)}.agent-messages::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg,#7df1ba,#47cd86)}
.agent-msg{max-width:88%;padding:12px 14px;border-radius:18px;font:500 14px/1.55 Inter,Arial,sans-serif;white-space:pre-wrap}.agent-msg.bot{align-self:flex-start;background:rgba(167,247,208,.08);border:1px solid rgba(167,247,208,.12);color:#edf9f2}.agent-msg.user{align-self:flex-end;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);color:#fff}.agent-msg a{color:#9cefc8;text-decoration:underline;text-underline-offset:2px}.agent-msg a:hover{color:#cffff0}.agent-suggestions{display:none}.agent-chip{border:1px solid rgba(167,247,208,.18);background:rgba(255,255,255,.04);color:#dffef0;border-radius:999px;padding:7px 10px;font:700 12px/1 Inter,Arial,sans-serif;cursor:pointer}.agent-chip:hover{color:#9cefc8}
@media (max-width:720px){.agent-launcher.is-footer-hidden{opacity:0;pointer-events:none;transform:translateY(16px)}.agent-shell.is-footer-hidden{display:none!important;opacity:0;pointer-events:none;transform:translateY(16px)}}
.agent-form{display:flex;gap:10px;padding:14px 16px 16px;border-top:1px solid rgba(167,247,208,.08);background:rgba(7,14,11,.98)}.agent-input{flex:1;min-width:0;padding:12px 14px;border-radius:16px;border:1px solid rgba(167,247,208,.16);background:rgba(255,255,255,.04);color:#f4fbf6;font:500 14px/1.4 Inter,Arial,sans-serif}.agent-input::placeholder{color:#8ba599}.agent-send{width:92px;flex:0 0 92px;padding:0 12px;border:none;border-radius:16px;background:linear-gradient(135deg,rgba(20,57,43,.96),rgba(8,27,20,.96));color:#f3fff8;font:800 13px/1 Inter,Arial,sans-serif;cursor:pointer}.agent-foot{padding:0 16px 14px;color:#89a298;font-size:11px;line-height:1.4}.agent-foot-note{margin-bottom:10px;font-size:10px;line-height:1.2;white-space:nowrap}.agent-foot a{color:#9cefc8;text-decoration:none}.agent-lead-form{display:grid;grid-template-columns:1fr 1fr auto;gap:8px;align-items:center}.agent-lead-input{min-width:0;padding:10px 12px;border-radius:12px;border:1px solid rgba(167,247,208,.14);background:rgba(255,255,255,.04);color:#f4fbf6;font:500 12px/1.4 Inter,Arial,sans-serif}.agent-lead-input::placeholder{color:#89a298}.agent-lead-submit{padding:10px 12px;border:none;border-radius:12px;background:linear-gradient(135deg,rgba(20,57,43,.96),rgba(8,27,20,.96));color:#f3fff8;font:800 12px/1 Inter,Arial,sans-serif;cursor:pointer}.agent-lead-status{margin-top:8px;min-height:16px;color:#9cefc8}.agent-lead-status.error{color:#ffb2b2}
@media (max-width:980px){.agent-shell{right:16px;bottom:78px;width:min(430px,calc(100vw - 32px));height:min(74dvh,620px);max-height:calc(100dvh - 96px)}}
@media (max-width:720px){.agent-launcher{right:12px;bottom:12px;padding:11px 14px}.agent-launcher .agent-pill img{width:34px;height:34px}.agent-head{padding:14px 16px}.agent-head-brand img{width:44px;height:44px}.agent-head-copy h3{font-size:16px}.agent-shell{left:12px;right:12px;bottom:68px;width:auto;height:min(78dvh,560px);max-height:calc(100dvh - 84px);border-radius:22px}.agent-messages{padding:14px}.agent-msg{max-width:92%;font-size:13px}.agent-form{padding:12px 14px 14px}.agent-foot{padding:0 14px 14px}.agent-foot-note{white-space:normal}.agent-lead-form{grid-template-columns:1fr}.agent-lead-submit{width:100%}}
@media (max-width:560px){.agent-launcher{left:8px;right:8px;bottom:8px;justify-content:center;width:calc(100vw - 16px);max-width:none;padding:11px 12px}.agent-launcher .agent-pill{min-width:0}.agent-launcher .agent-pill img{width:32px;height:32px}.agent-shell{left:8px;right:8px;bottom:62px;height:min(82dvh,640px);max-height:calc(100dvh - 70px);border-radius:20px}.agent-head-brand{gap:10px}.agent-head-brand img{width:40px;height:40px}.agent-head-copy small{font-size:9px}.agent-head-copy h3{font-size:15px}.agent-close{font-size:24px}.agent-messages{padding:12px}.agent-msg{max-width:94%;padding:11px 12px;font-size:13px}.agent-form{flex-wrap:wrap;gap:8px}.agent-input{width:100%}.agent-send{width:100%;flex:1 1 100%;min-height:44px}.agent-foot-note{white-space:normal;font-size:10px}.agent-lead-input,.agent-lead-submit{min-height:42px}}
