@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --background: #0b1017;
  --background-soft: #111925;
  --primary: #ef576e;
  --primary-hover: #ff7589;
  --body: #d9d9d9;
  --muted: #999;
  --blue: #4b586e;
  --green: #00ff15;
  --primary-blue: #24a2ee;
  --secondary-blue: #76bbeb;
  --border: rgba(36, 162, 238, 0.3);
  --title-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --body-font: "Inter", system-ui, sans-serif;
  --content-width: 1650px;
  --article-width: 1314px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--background);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
picture {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--primary-hover);
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #fff;
  background: rgba(239, 87, 110, 0.72);
}

.content-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 112px);
}

.article-shell {
  width: min(100%, var(--content-width));
  padding-inline: 24px;
}

.narrow-section {
  max-width: 1040px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 9px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 98px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}

.brand {
  position: relative;
  z-index: 52;
  display: block;
  width: clamp(200px, 18vw, 253px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 15px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-color: rgba(239, 87, 110, 0.7);
  background: rgba(239, 87, 110, 0.1);
}

.menu-toggle {
  position: relative;
  z-index: 52;
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle img {
  width: 28px;
  height: 28px;
}

.menu-close-icon {
  display: none;
}

.hero {
  position: relative;
  min-height: 566px;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  width: min(100%, var(--content-width));
  height: 565px;
  background: radial-gradient(50.9% 41.75% at 89.13% 52.39%, rgba(152, 188, 220, 0.2), rgba(44, 55, 75, 0.2));
  filter: blur(135px);
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 128px;
  text-align: center;
}

.hero h1,
.post-header h1,
.section-title,
.interception h2,
.not-found h1 {
  margin: 0;
  color: #fff;
  font-family: var(--title-font);
  font-weight: 600;
  letter-spacing: normal;
}

.hero h1 {
  max-width: 900px;
  color: var(--primary);
  font-size: 60px;
  line-height: 1;
}

.hero p {
  max-width: 672px;
  margin: 64px 0 0;
  color: var(--body);
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
}

.hero-action {
  margin-top: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  border-radius: 15px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--primary);
  border: 1px solid rgba(239, 87, 110, 0.6);
  background: rgba(239, 87, 110, 0.05);
}

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

.interception {
  position: relative;
  min-height: 423px;
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.interception::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 125%;
  content: "";
  background: radial-gradient(68.65% 82.94% at 3.47% 65.87%, rgba(118, 187, 235, 0.36), rgba(36, 162, 238, 0));
  opacity: 0.6;
  backdrop-filter: blur(2px);
  z-index: 0;
}

.interception::after {
  position: absolute;
  top: 32px;
  left: 0;
  width: 1440px;
  height: 356px;
  content: "";
  pointer-events: none;
  background: radial-gradient(10.66% 16.82% at 19.31% 51.12%, rgba(0, 255, 21, 0.24), rgba(33, 71, 60, 0));
  backdrop-filter: blur(2px);
  z-index: 0;
}

.interception-texture {
  position: absolute;
  inset: 0;
  background: url("/assets/images/intercepted-hacks-bg.png") center / min(80%, 1371px) auto no-repeat;
  opacity: 0.01;
  background-blend-mode: luminosity;
  z-index: 0;
}

.interception-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(420px, 1fr);
  align-items: center;
  min-height: 423px;
}

.interception-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 74px;
}

.interception-value span {
  display: inline-flex;
  padding: 12px 24px;
  color: var(--green);
  font-family: var(--body-font);
  font-size: 60px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 60px;
  border: 1px solid rgba(0, 255, 21, 0.6);
  border-radius: 15px;
  background: rgba(0, 255, 21, 0.08);
}

.interception-copy {
  min-width: 0;
  max-width: 100%;
  padding: 96px 16px;
}

.interception h2 {
  font-size: 48px;
  line-height: 81px;
}

.interception h2 span,
.section-title span {
  color: var(--primary);
}

.interception p {
  width: 36ch;
  max-width: 100%;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-wrap: balance;
}

.blog-section {
  position: relative;
  padding-block: 128px 0;
  overflow: hidden;
}

.blog-page {
  padding-top: 124px;
}

.blog-glow,
.section-glow::before {
  display: none;
}

.section-title {
  position: relative;
  margin-bottom: 96px;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
}

.blog-list {
  position: relative;
  display: grid;
  gap: 48px;
}

.blog-card {
  margin: 0;
  opacity: 0.8;
  transition: opacity 300ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  opacity: 1;
}

.blog-card > a {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.blog-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(118, 187, 235, 0.6);
  border-radius: 15px;
  background: var(--background-soft);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease;
}

.blog-card-image picture {
  width: 100%;
  height: 100%;
}

.blog-card a:hover .blog-card-image img {
  transform: scale(1.035);
}

.blog-card h2 {
  max-width: 950px;
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.2;
  transition: color 160ms ease;
}

.blog-card a:hover h2 {
  color: var(--primary);
}

.blog-card p {
  max-width: 1050px;
  margin: 0 0 16px;
  color: var(--body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.56;
}

.blog-card-copy {
  padding-inline: 48px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 400;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.stay-connected {
  position: relative;
  margin-top: 96px;
  padding: 96px 0 128px;
  overflow: hidden;
}

.stay-connected::before {
  position: absolute;
  top: -384px;
  right: 0;
  left: 0;
  height: 1100px;
  content: "";
  background: radial-gradient(52.99% 76.72% at 50% 84.79%, rgba(44, 55, 75, 0.6), rgba(33, 49, 71, 0));
  filter: blur(155px);
}

@media (min-width: 768px) {
  .stay-connected .section-title {
    margin-bottom: 64px;
  }
}

.social-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.social-links > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 24px 26px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  border: 1px solid rgba(118, 187, 235, 0.3);
  border-radius: 15px;
  background: rgba(17, 25, 37, 0.55);
  transition: color 300ms ease, border-color 300ms ease, background 300ms ease, transform 300ms ease;
}

.social-links > a:hover {
  color: #fff;
  border-color: rgba(239, 87, 110, 0.7);
  background: rgba(24, 33, 48, 0.8);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  margin-left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: background 300ms ease;
}

.social-links > a:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
}

.social-icon img {
  width: 32px;
  height: 32px;
}

.social-links > a:first-child .social-icon img {
  width: 28px;
  height: 28px;
}

.email-icon {
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
}

.site-footer {
  position: relative;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 64px);
  max-width: calc(var(--content-width) - 64px);
  margin-inline: auto;
  padding-block: 32px;
  color: var(--body);
  font-size: 16px;
  border-top: 1px solid rgba(217, 217, 217, 0.3);
}

.footer-inner img {
  width: 180px;
}

.post-header {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
}

.post {
  position: relative;
}

.post-header-glow {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 565px;
  pointer-events: none;
  background: radial-gradient(30.74% 149.12% at 46.18% 0%, rgba(152, 188, 220, 0.6), rgba(44, 55, 75, 0.2));
  filter: blur(135px);
}

.post-header h1 {
  position: relative;
  max-width: var(--article-width);
  color: #fff;
  font-size: 60px;
  line-height: 1;
}

.post-meta-large {
  position: relative;
  margin-top: 32px;
  font-size: 20px;
  line-height: 28px;
}

.post-content {
  padding-bottom: 130px;
  color: var(--body);
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

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

.post-toc {
  margin-top: 32px;
  padding-block: 20px;
  border-block: 1px solid rgba(75, 88, 110, 0.5);
}

.post-content .post-toc-title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.post-content .post-toc ul {
  column-count: 2;
  column-gap: 24px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 24px;
}

.post-content .post-toc li {
  break-inside: avoid;
  margin: 0 0 6px;
}

.post-toc a {
  display: block;
  padding-block: 3px;
}

@media (max-width: 600px) {
  .post-content .post-toc ul {
    column-count: 1;
  }
}

.post-description {
  margin: 0;
  color: var(--body);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.post-lead-image {
  width: min(100%, 600px);
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 5px;
}

.post-lead-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 780px;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 5px;
}

.post-lead-image img {
  width: 100%;
  max-height: none;
}

.post-content p > img:only-child,
.post-content p > a:only-child > img:only-child {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.post-content p:has(> img:only-child),
.post-content p:has(> a:only-child > img:only-child) {
  margin-top: 32px;
}

.post-content p > img:only-child:not(.sized-image),
.post-content p > a:only-child > img:only-child:not(.sized-image) {
  width: auto;
}

.post-content table img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-inline: auto;
}

.video-embed {
  position: relative;
  height: 0;
  max-width: 100%;
  margin: 2em 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 1.6em 0;
}

.comparison-grid figure {
  margin: 0;
}

.comparison-grid figcaption {
  padding: 10px 13px;
  color: #fff;
  font-weight: 700;
  background: #151e2b;
  border: 1px solid rgba(75, 88, 110, 0.5);
}

.comparison-grid p {
  margin: 0;
}

.comparison-grid img {
  width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid rgba(75, 88, 110, 0.5);
  border-top: 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 32px 0 0;
  scroll-margin-top: 112px;
  color: var(--body);
  font-family: var(--title-font);
  font-weight: 300;
  letter-spacing: normal;
  line-height: 40px;
  text-align: left;
}

.post-content h2 {
  font-size: 36px;
}

.post-content h3 {
  font-size: 36px;
}

.post-content h4 {
  font-size: 22px;
}

.post-content .section-link {
  color: inherit;
  text-decoration: none;
}

.post-content .section-link:hover,
.post-content .section-link:focus-visible,
.post-content :target > .section-link {
  color: var(--primary);
  text-decoration: underline;
}

.post-content .section-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 6px;
  border-radius: 2px;
}

.post-content p,
.post-content ul,
.post-content ol {
  margin: 16px 0 0;
}

.post-content ul,
.post-content ol {
  padding-left: 1.45em;
}

.post-content li + li {
  margin-top: 0.4em;
}

.post-content strong {
  color: #fff;
  font-weight: 700;
}

.post-content a {
  overflow-wrap: anywhere;
}

.post-callout,
.post-content blockquote {
  margin: 2em 0;
  padding: 25px 30px;
  color: #fff;
  border-left: 4px solid var(--primary);
  background: rgba(31, 42, 58, 0.68);
}

.post-content code {
  padding: 0.12em 0.32em;
  color: #f3b8c1;
  font-size: 0.91em;
  background: #151e2b;
  border-radius: 3px;
}

.post-content pre {
  max-width: 100%;
  padding: 22px;
  overflow: auto;
  border: 1px solid rgba(75, 88, 110, 0.4);
  background: #080d13;
}

.post-content pre code {
  padding: 0;
  color: var(--body);
  background: transparent;
}

/* Plain-text examples are explanatory callouts, distinct from source code. */
.post-content .language-text pre {
  margin-block: 24px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-inline-start: 3px solid var(--secondary-blue);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(110deg, rgba(36, 162, 238, 0.1), rgba(21, 30, 43, 0.5));
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.post-content .language-text pre code {
  color: #c5e2f5;
}

.post-content .summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-block: 24px;
  padding: 0;
  list-style: none;
}

.post-content .summary-grid > li {
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--secondary-blue);
  border-radius: 0 0 8px 8px;
  background: linear-gradient(110deg, rgba(36, 162, 238, 0.1), rgba(21, 30, 43, 0.5));
}

.summary-grid > li > strong {
  display: block;
  font-size: 16px;
}

@media (max-width: 900px) {
  .post-content .summary-grid {
    grid-template-columns: 1fr;
  }
}

.table-scroll {
  max-width: 100%;
  margin: 1.6em 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.table-scroll:focus-visible {
  outline: 2px solid var(--secondary-blue);
  outline-offset: 4px;
}

.post-content .table-scroll-hint {
  position: sticky;
  left: 0;
  margin: 0 0 10px;
  color: var(--secondary-blue);
  font-size: 14px;
  line-height: 22px;
}

.table-scroll[data-overflow="false"] .table-scroll-hint {
  display: none;
}

.post-content table {
  width: 100%;
  max-width: 100%;
  margin: 1.6em 0;
  border-collapse: collapse;
  overflow-wrap: normal;
}

.post-content .table-scroll table {
  min-width: 42rem;
  margin: 0;
}

.post-content .table-scroll[data-columns="2"] table {
  min-width: 30rem;
}

.post-content .table-scroll[data-columns="4"] table {
  min-width: 48rem;
}

.post-content .table-scroll .timeline-table {
  min-width: 52rem;
}

.table-scroll :is(th, td) {
  vertical-align: top;
}

.post-content th,
.post-content td {
  padding: 10px 13px;
  border: 1px solid rgba(75, 88, 110, 0.5);
}

.post-content th {
  color: #fff;
  text-align: left;
  background: #151e2b;
}

.post-content tbody tr:nth-child(even) td {
  background: rgba(21, 30, 43, 0.36);
}

.post-content .timeline-table th:first-child,
.post-content .timeline-table td:first-child {
  width: 190px;
  white-space: nowrap;
}

.page-shell {
  min-height: 65vh;
  padding-block: 90px;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
}

.not-found-background,
.not-found-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.not-found-background {
  object-fit: cover;
  opacity: 0.42;
}

.not-found-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.not-found-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found h1 {
  max-width: 650px;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
}

.not-found strong {
  margin: 176px 0;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 96px;
  line-height: 1;
}

@media (min-width: 768px) {
  .blog-section .content-shell {
    padding-inline: 48px;
  }

  .article-shell {
    padding-inline: 72px;
  }

  .post-header-glow {
    top: -256px;
    right: 48px;
    left: 48px;
  }
}

@media (min-width: 1024px) {
  .blog-section .content-shell {
    padding-inline: 96px;
  }

  .article-shell {
    padding-inline: 168px;
  }

  .post-header-glow {
    right: 144px;
    left: 144px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .interception-inner {
    grid-template-columns: 5fr 7fr;
    padding-inline: 0;
  }

  .interception-value {
    padding-left: 128px;
  }
}

@media (min-width: 1280px) {
  .blog-section .content-shell {
    padding-inline: 192px;
  }

  .blog-card-copy {
    padding-inline: 96px;
  }
}

@media (min-width: 1536px) {
  .hero {
    min-height: 622px;
  }

  .hero h1 {
    font-size: 96px;
    line-height: 96px;
  }

  .hero p {
    line-height: 24px;
  }

  .blog-card-copy {
    padding-inline: 192px;
  }

  .post-header h1 {
    font-size: 72px;
    line-height: 81px;
  }
}

@media (max-width: 767px) {
  .site-nav {
    height: 88px;
  }

  .menu-toggle {
    display: block;
    width: 32px;
    height: 40px;
    padding: 0;
  }

  .menu-toggle img {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: calc(100vh - 88px);
    visibility: hidden;
    opacity: 0;
    background: rgba(11, 16, 23, 0.98);
    transition: opacity 160ms ease, visibility 160ms ease;
  }

  .nav-links a {
    min-width: 220px;
    min-height: 54px;
    font-size: 20px;
  }

  body.menu-open .nav-links {
    visibility: visible;
    opacity: 1;
  }

  body.menu-open .menu-open-icon {
    display: none;
  }

  body.menu-open .menu-close-icon {
    display: block;
  }

  .interception-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 390px;
    padding: 44px 0 52px;
    text-align: center;
  }

  .interception {
    min-height: 392px;
  }

  .interception-value {
    padding-left: 0;
  }

  .social-links {
    gap: 0;
  }

  .interception-copy {
    padding: 24px 0 0;
  }

  .interception p {
    margin-inline: auto;
  }

}

@media (max-width: 1023px) {
  .post-header {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .post-header h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .stay-connected {
    margin-top: 64px;
  }

  .social-links {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
  }

  .social-links > a {
    min-height: 96px;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .hero {
    min-height: 414px;
  }

  .hero-content {
    padding-top: 32px;
  }

  .hero p {
    margin-top: 16px;
    font-size: 20px;
    line-height: 28px;
  }

  .blog-section {
    padding-top: 64px;
  }

  .section-title {
    margin-bottom: 48px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .interception {
    min-height: 414px;
  }

  .interception-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 412px;
    padding: 44px 0 52px;
    text-align: center;
  }

  .interception-value {
    padding-left: 0;
  }

  .interception-copy {
    padding: 24px 0 0;
  }

  .interception h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .interception p {
    margin-top: 16px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 28px;
  }

  .blog-card > a {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 640px) {
  .content-shell {
    padding-inline: 24px;
  }

  .nav-inner {
    padding-inline: 32px;
  }

  .brand {
    width: 202px;
  }

  .hero {
    min-height: 439px;
  }

  .hero-content {
    padding-top: 32px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 28px;
  }

  .interception-value span {
    padding: 12px 24px;
    font-size: 36px;
    line-height: 40px;
  }

  .interception h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .interception p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 28px;
  }

  .interception::after {
    top: -97px;
    left: -80px;
  }

  .blog-section {
    padding-block: 64px 0;
  }

  .blog-page {
    padding-top: 84px;
  }

  .section-title {
    margin-bottom: 48px;
    font-size: 48px;
    line-height: 48px;
  }

  .blog-list {
    gap: 48px;
  }

  .blog-card > a {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 48px;
  }

  .blog-card-image {
    width: 50vw;
    align-self: center;
  }

  .blog-card-copy {
    padding-inline: 24px;
  }

  .blog-card h2 {
    font-size: 30px;
  }

  .blog-card p {
    font-size: 18px;
  }

  .stay-connected {
    margin-top: 64px;
    padding: 96px 0;
  }

  .social-links {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .social-links > a {
    flex-direction: row;
    justify-content: space-between;
    min-width: 0;
    min-height: 88px;
    padding: 18px 22px;
    font-size: 18px;
    text-align: left;
  }

  .social-icon {
    flex: 0 0 50px;
    margin: 0 0 0 18px;
  }

  .footer-inner {
    flex-direction: column-reverse;
    gap: 24px;
    justify-content: center;
    min-height: 155px;
    text-align: center;
  }

  .footer-inner img {
    width: 165px;
  }

  .post-header {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .post-header h1 {
    font-size: 36px;
    line-height: 1.11;
  }

  .post-content {
    padding-bottom: 90px;
    font-size: 18px;
  }

  .post-description {
    font-size: 18px;
  }

  .post-callout,
  .post-content blockquote {
    margin-inline: 0;
    padding: 20px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .post-content .timeline-table th:first-child,
  .post-content .timeline-table td:first-child {
    width: 130px;
    white-space: normal;
  }

  .not-found {
    min-height: 100vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
