:root {
  --bg: #090d13;
  --panel: #0e141d;
  --panel-2: #111a25;
  --line: #243246;
  --line-soft: #182231;
  --text: #f5f8fc;
  --muted: #9aa9bb;
  --blue: #5eb5de;
  --blue-2: #8dd0ec;
  --blue-3: #2f89b3;
  --green: #63d297;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site {
  width: min(1360px, calc(100% - 32px));
  margin: auto;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  position: relative;
}

.site::before,
.site::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 150px;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(circle, #25364a 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: linear-gradient(to right, transparent, #000, transparent);
}

.site::before {
  left: 0;
}

.site::after {
  right: 0;
}

.inner {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px dashed #28384b;
  background: rgba(9, 13, 19, 0.92);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-inner > .brand {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex: 0 0 auto;
  gap: 9px;
  min-width: max-content;
  white-space: nowrap;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo-wrap img,
.brand img {
  display: block;
  width: auto;
  height: 34px;
  flex: 0 0 auto;
}

.brand-site-title {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid rgba(141, 208, 236, 0.32);
  color: #dff1ff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(1px);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #c7d5e4;
  font-size: 14px;
}

.nav-menu a {
  padding: 11px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-menu a:hover {
  background: rgba(17, 26, 37, 0.88);
  color: var(--blue-2);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
}

.nav-cta,
.btn.secondary {
  border-color: #315275;
  background: #0b2137;
  color: #dff1ff;
}

.btn.primary {
  background: #f5f8fc;
  color: #0b1724;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #315275;
  border-radius: 12px;
  background: #0b2137;
  color: #dff1ff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 36px 0 14px;
}

.hero-box {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  min-height: 520px;
  border: 1px solid #2a6390;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 115%, rgba(141, 208, 236, 0.95), rgba(94, 181, 222, 0.42) 14%, transparent 31%),
    linear-gradient(135deg, #3f97c1, #2f89b3 46%, #1d5f85);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transition: transform 0.18s ease, border-color 0.25s ease;
}

.hero-box:hover {
  border-color: var(--blue-2);
}

.hero-grid {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding: 42px;
}

.pill,
.section-kicker,
.label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #e9f7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero p,
.section-title p,
.split-head p {
  color: #d2dfeb;
  font-size: 17px;
  line-height: 1.65;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 96px 0;
}

.section-muted {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(17, 26, 37, 0.52), rgba(9, 13, 19, 0));
}

.section-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
}

p {
  margin: 0;
}

.challenge-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.challenge-grid article,
.outcome-grid article,
.capabilities article,
.product-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.9);
}

.challenge-grid article {
  min-height: 190px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.challenge-grid span,
.outcome-grid span,
.capabilities span,
.industry-list span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.network-visual {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 50%, rgba(94, 181, 222, 0.22), transparent 35%),
    radial-gradient(circle, rgba(90, 147, 204, 0.18) 1px, transparent 1px);
  background-size: auto, 9px 9px;
}

.ring {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(141, 208, 236, 0.28);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 34px rgba(141, 208, 236, 0.7);
}

.node-a {
  left: 25%;
  top: 27%;
}

.node-b {
  right: 22%;
  top: 34%;
}

.node-c {
  left: 37%;
  bottom: 24%;
}

.node-d {
  right: 34%;
  bottom: 28%;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capabilities article,
.outcome-grid article {
  padding: 22px;
}

.capabilities h3,
.outcome-grid h3 {
  margin: 16px 0 10px;
}

.capabilities p,
.outcome-grid p,
.product-card p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0b1119;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.industry-list a {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.industry-list a:hover {
  background: rgba(94, 181, 222, 0.08);
  color: var(--blue-2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 460px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.product-card h3 {
  max-width: 420px;
  margin: 18px 0 16px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
}

.dark-card {
  background:
    linear-gradient(180deg, rgba(14, 20, 29, 0.82), rgba(9, 13, 19, 0.98)),
    radial-gradient(circle at 72% 78%, rgba(94, 181, 222, 0.2), transparent 34%);
}

.bright-card {
  background:
    linear-gradient(145deg, rgba(47, 137, 179, 0.34), rgba(14, 20, 29, 0.96)),
    var(--panel);
}

.tag-cloud {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span,
.bright-card li {
  border: 1px solid rgba(141, 208, 236, 0.25);
  border-radius: 8px;
  background: rgba(9, 13, 19, 0.58);
  color: #dff1ff;
}

.tag-cloud span {
  padding: 9px 11px;
  font-size: 13px;
}

.bright-card ul {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.bright-card li {
  padding: 13px 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  color: var(--blue-2);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 0 20px;
  max-width: 780px;
}

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer img {
  height: 30px;
  width: auto;
  margin-bottom: 12px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.58;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site {
    width: 100%;
    border: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(9, 13, 19, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-box {
    min-height: 470px;
  }

  .hero-content {
    padding: 28px;
  }

  .split-head,
  .workflow,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .challenge-grid,
  .outcome-grid,
  .capabilities,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .network-visual {
    min-height: 310px;
  }

  .product-card {
    min-height: 390px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .inner {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    height: 28px;
  }

  .brand-site-title {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-box {
    transform: none !important;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-logo-link {
  display: inline-flex;
}

.nav-menu ul,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  margin: 0;
}

.blog-hero .hero-box {
  min-height: 470px;
}

.blog-section .split-head {
  align-items: center;
}

.search-form {
  display: flex;
  width: min(100%, 420px);
  justify-self: end;
  gap: 10px;
}

.search-form label {
  flex: 1;
}

.search-field,
.search-form button,
.post-content input,
.post-content textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.92);
  color: var(--text);
  font: inherit;
}

.search-field,
.post-content input,
.post-content textarea {
  width: 100%;
  padding: 0 14px;
}

.search-form button,
.post-content input[type="submit"],
.post-content button {
  padding: 0 16px;
  border-color: #315275;
  background: #0b2137;
  color: #dff1ff;
  cursor: pointer;
  font-weight: 800;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.post-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.9);
}

.post-card-media {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 75%, rgba(94, 181, 222, 0.32), transparent 36%),
    linear-gradient(135deg, #102337, #1d5f85);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card-media span {
  color: #e9f7ff;
  font-size: 76px;
  font-weight: 900;
}

.post-card-body {
  padding: 22px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.post-meta a {
  color: inherit;
}

.post-card h3 {
  margin: 16px 0 12px;
}

.post-card p {
  color: var(--muted);
  line-height: 1.65;
}

.read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-2);
  font-weight: 800;
}

.pagination-nav {
  margin-top: 34px;
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.86);
  color: #dff1ff;
  font-weight: 800;
}

.page-numbers.current {
  border-color: var(--blue-2);
  background: #0b2137;
}

.empty-state {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.9);
}

.empty-state p {
  margin-top: 10px;
  color: var(--muted);
}

.single-hero {
  padding: 78px 0 42px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 110%, rgba(94, 181, 222, 0.22), transparent 32%),
    rgba(17, 26, 37, 0.28);
}

.single-hero-content {
  max-width: 900px;
}

.single-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.single-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: #d2dfeb;
  font-size: 18px;
  line-height: 1.65;
}

.single-featured-image {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.single-featured-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}

.post-content {
  max-width: 780px;
  color: #d9e5f1;
  font-size: 18px;
  line-height: 1.78;
}

.page-content {
  max-width: 860px;
}

.post-content > * + * {
  margin-top: 1.15em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text);
}

.post-content h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.post-content a {
  color: var(--blue-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-content blockquote {
  margin-left: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--blue-2);
  background: rgba(14, 20, 29, 0.84);
}

.post-content img {
  border-radius: 8px;
}

.post-sidebar {
  position: sticky;
  top: 104px;
}

.sidebar-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.9);
}

.sidebar-panel h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.wp-tags {
  position: static;
  margin: 0 0 22px;
}

.wp-tags a {
  padding: 9px 11px;
  border: 1px solid rgba(141, 208, 236, 0.25);
  border-radius: 8px;
  background: rgba(9, 13, 19, 0.58);
  color: #dff1ff;
  font-size: 13px;
}

.comments-area {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.comment-list {
  display: grid;
  gap: 18px;
  padding-left: 0;
  list-style: none;
}

.comment-body {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 20, 29, 0.86);
}

@media (max-width: 900px) {
  .nav-menu ul,
  .nav-links {
    align-items: stretch;
    flex-direction: column;
  }

  .search-form {
    width: 100%;
    justify-self: stretch;
  }

  .post-grid,
  .single-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .search-form {
    flex-direction: column;
  }

  .search-form button {
    width: 100%;
  }

  .post-card-media {
    min-height: 180px;
  }

  .single-hero {
    padding-top: 48px;
  }

  .single-hero h1 {
    font-size: 38px;
  }
}

:root {
  --panel2: var(--panel-2);
  --line2: var(--line-soft);
  --blue2: var(--blue-2);
  --blue3: var(--blue-3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.links {
  color: #dce4ed;
  z-index: 20;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  display: flex;
  position: relative;
}

.nav-link {
  z-index: 3;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  position: relative;
}

.nav-link:hover {
  color: var(--blue-2);
  background: rgba(17, 26, 37, 0.88);
}

.nav-sales-inline {
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  display: flex;
}

.nav-sales-kicker {
  color: #22c55e;
  white-space: nowrap;
  align-items: center;
  gap: 7px;
  padding: 0;
  font-size: 13px;
  display: inline-flex;
}

@media (min-width: 901px) {
  .nav-inner > .links.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.blog-page,
.blog-post-page {
  background:
    radial-gradient(circle at top, rgba(94, 181, 222, 0.12), transparent 26%),
    linear-gradient(#090d13 0%, #0b1119 100%);
}

.policy-page-hero,
.blog-page-hero {
  padding: 108px 0 64px;
}

.blog-page-hero .hero-grid {
  min-height: 0;
  display: grid;
  place-items: start;
  background: none;
  opacity: 1;
  position: static;
}

.blog-page-hero .copy {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.eyebrow {
  color: var(--blue-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.blog-page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  color: #dfebf4d6;
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.blog-featured-section,
.blog-list-section {
  padding: 24px 0 40px;
}

.blog-featured-card {
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.85fr);
  gap: 34px;
  padding: 8px 0;
  display: grid;
}

.blog-featured-copy {
  align-content: center;
  gap: 20px;
  padding: 32px 28px 32px 0;
  display: grid;
}

.blog-featured-copy h2,
.blog-post-card h3 {
  letter-spacing: 0;
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.02;
}

.blog-featured-copy p,
.blog-post-card p {
  color: #dfebf4b8;
  max-width: 50rem;
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
}

.blog-featured-visual {
  min-height: 320px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(112, 159, 205, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 74% 82%, rgba(94, 181, 222, 0.32), transparent 34%),
    radial-gradient(circle, rgba(90, 147, 204, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #0b131d, #112337);
  background-size: auto, 9px 9px, auto;
}

.blog-featured-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.blog-post-date {
  color: #a0b0bee6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

.blog-post-meta {
  color: #86aec8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 15px;
  display: flex;
}

.blog-post-meta span {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.blog-post-meta span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(145, 197, 232, 0.4);
}

.blog-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  display: grid;
  position: relative;
}

.blog-card-grid::before {
  content: "";
  pointer-events: none;
  background: rgba(112, 159, 205, 0.16);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 0.5px);
}

.blog-card-grid::after {
  content: "";
  pointer-events: none;
  background: rgba(112, 159, 205, 0.16);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.blog-post-card {
  min-height: 0;
  box-shadow: none;
  background: none;
  border: 0;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 36px 48px 36px 0;
  display: grid;
}

.blog-post-card:nth-child(2n) {
  padding-left: 48px;
  padding-right: 0;
}

.blog-editorial-card {
  position: relative;
  overflow: hidden;
}

.blog-post-card-copy {
  text-align: left;
  align-content: center;
  justify-items: start;
  gap: 16px;
  display: grid;
}

.blog-post-title-link {
  color: inherit;
}

.blog-post-title-link:hover {
  color: #cfeeff;
}

.blog-post-footer {
  color: #8faabc;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  width: 100%;
  font-size: 14px;
  display: flex;
}

.blog-post-hero {
  padding: 112px 0 70px;
}

.blog-post-hero-shell {
  width: min(980px, 100%);
}

.blog-post-hero-copy {
  display: grid;
  gap: 18px;
}

.blog-breadcrumbs {
  color: #9fb7c9;
  align-items: center;
  gap: 10px;
  display: flex;
}

.blog-post-hero-shell h1 {
  letter-spacing: 0;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 67px);
  line-height: 0.96;
}

.blog-post-hero-shell p {
  color: #dfebf4d6;
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.blog-post-link,
.blog-back-link {
  color: #cfeeff;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
  display: inline-flex;
}

.blog-post-link:hover,
.blog-back-link:hover {
  color: #dff5ff;
}

.blog-post-content {
  border-bottom: 0;
  padding: 0 0 40px;
}

.blog-post-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-top: 12px;
  display: grid;
}

.blog-article-shell {
  width: 100%;
  box-shadow: none;
  background: none;
  border: 0;
  gap: 22px;
  margin: 0;
  padding: 0;
  display: grid;
}

.blog-article-shell h2 {
  color: #f4fbff;
  letter-spacing: 0;
  margin: 8px 0 0;
  font-size: clamp(24px, 2.3vw, 35px);
  line-height: 1.08;
}

.blog-article-shell h3 {
  color: #e4f3ff;
  margin: 4px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
}

.blog-article-shell p,
.blog-article-shell li {
  color: #e4eef6e0;
  width: 100%;
  max-width: 980px;
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.82;
}

.blog-article-shell > * + * {
  margin-top: 0;
}

.blog-article-intro,
.blog-article-cta {
  background: linear-gradient(rgba(255, 255, 255, 0.016), transparent), rgba(7, 14, 22, 0.42);
  border: 1px solid rgba(112, 159, 205, 0.16);
  border-radius: 24px;
  padding: 24px;
}

.blog-article-intro {
  gap: 12px;
  display: grid;
}

.blog-article-kicker {
  color: #8fc7e7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.blog-article-cta {
  gap: 14px;
  margin-top: 12px;
  display: grid;
}

.blog-article-cta p {
  color: #d6e4efd1;
}

.blog-article-cta-actions {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.blog-post-link-secondary {
  color: #9fcbe6;
}

footer {
  border-top: 1px solid var(--line-soft);
  padding: 54px 0 28px;
}

.footer-meta {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-meta p {
  margin: 0;
  text-align: right;
  line-height: 1.55;
}

.footer-bottom-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.footer-bottom-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  max-width: 116px;
  overflow: hidden;
  line-height: 0;
}

.footer-bottom-logo img {
  display: block;
  width: auto !important;
  max-width: 116px !important;
  height: 24px !important;
  max-height: 24px !important;
  object-fit: contain;
}

@media (max-width: 980px) {
  .blog-featured-card,
  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-featured-copy {
    border-bottom: 1px solid rgba(112, 159, 205, 0.16);
    padding-right: 0;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-grid::before,
  .blog-card-grid::after {
    display: none;
  }

  .blog-post-card {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-post-card:nth-child(2n) {
    padding-left: 0;
  }

  .blog-post-card:not(:last-child) {
    border-bottom: 1px solid rgba(112, 159, 205, 0.16);
  }

}

@media (max-width: 900px) {
  .links.nav-menu {
    display: none;
  }

  .links.nav-menu.is-open {
    display: flex;
  }

  .nav-sales-inline {
    display: none;
  }
}

@media (max-width: 640px) {
  .policy-page-hero,
  .blog-page-hero,
  .blog-post-hero {
    padding: 92px 0 56px;
  }

  .blog-page-hero h1,
  .blog-post-hero-shell h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .blog-featured-copy,
  .blog-post-card,
  .blog-post-card-copy,
  .blog-featured-card {
    gap: 22px;
  }

  .blog-post-layout {
    padding-top: 22px;
  }

  .blog-article-intro,
  .blog-article-cta {
    padding: 20px;
  }

  .blog-post-footer,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta p {
    text-align: left;
  }

  .footer-bottom-brand {
    gap: 12px;
  }
}

/* Codex live alignment overrides 2026-09-10 */
.blog-page-hero{padding:72px 0 64px!important;}
.blog-page-hero h1,#blog-hero-title{max-width:920px!important;font-size:clamp(44px,6.4vw,78px)!important;line-height:.98!important;}
.blog-page-hero .lead{max-width:720px!important;}
.blog-post-hero{padding:96px 0 70px!important;min-height:500px;}
.blog-post-hero-shell h1{font-size:clamp(38px,4.8vw,67px)!important;line-height:.96!important;}
.blog-article-shell{width:min(860px,100%)!important;margin:0 auto 0 0!important;}
