:root {
  --article-ink: #0a1020;
  --article-soft: #5f6677;
  --article-paper: #f6f7fb;
  --article-white: #ffffff;
  --article-blue: #315dff;
  --article-blue-deep: #2147db;
  --article-lime: #caff69;
  --article-coral: #ff806b;
  --article-line: rgba(16, 25, 49, 0.13);
  --article-shadow: 0 24px 70px rgba(22, 31, 61, 0.11);
}

html { scroll-padding-top: 104px; }

.article-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 10%, rgba(202, 255, 105, 0.19), transparent 22rem),
    radial-gradient(circle at 10% 20%, rgba(255, 128, 107, 0.12), transparent 24rem),
    var(--article-paper);
  color: var(--article-ink);
  font-family: "Instrument Sans", "Helvetica Neue", sans-serif;
  font-size: 17px;
}

.article-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(28px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(16, 25, 49, 0.09);
  background: rgba(246, 247, 251, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
}

.article-brand { justify-self: start; display: inline-flex; align-items: center; }
.article-brand img { width: 118px; height: auto; display: block; }
.article-header nav { display: flex; gap: 32px; color: #596071; font-size: 14px; font-weight: 690; }
.article-header nav a { transition: color 180ms ease, transform 180ms ease; }
.article-header nav a:hover, .article-header nav a[aria-current="page"] { color: var(--article-ink); }
.article-header nav a:hover { transform: translateY(-1px); }
.article-header-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }

.article-sign-in,
.article-start {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 720;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.article-sign-in { border: 1px solid var(--article-line); background: rgba(255,255,255,.72); }
.article-start { border: 1px solid var(--article-blue); background: var(--article-blue); color: white; }
.article-sign-in:hover, .article-start:hover { transform: translateY(-1px); }
.article-start:hover { background: var(--article-blue-deep); }

.article-hero {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0 54px;
  animation: article-rise 540ms cubic-bezier(.2,.72,.2,1) both;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  color: var(--article-blue);
  font: 700 11px/1.4 "IBM Plex Mono", monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.article-breadcrumb i { width: 28px; height: 1px; background: currentColor; }
.article-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.article-dek {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--article-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
  text-wrap: pretty;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 25px;
  margin-top: 30px;
  color: #687083;
  font: 600 11px/1.5 "IBM Plex Mono", monospace;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.article-meta span { display: inline-flex; align-items: center; gap: 9px; }
.article-meta span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--article-coral); content: ""; }
.article-meta span:nth-child(2)::before { background: var(--article-lime); }
.article-meta span:nth-child(3)::before { background: var(--article-blue); }

.article-cover {
  position: relative;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto 88px;
}

.article-cover::before {
  position: absolute;
  z-index: -1;
  inset: 10% -22px -24px 22px;
  border-radius: 38px;
  background: var(--article-lime);
  content: "";
  transform: rotate(-1.2deg);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(16, 25, 49, 0.15);
  border-radius: 34px;
  box-shadow: var(--article-shadow);
}

.article-shell {
  width: min(1120px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 86px;
  margin: 0 auto;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 112px;
  padding: 23px 0;
  border-top: 1px solid var(--article-line);
  border-bottom: 1px solid var(--article-line);
}

.article-toc strong {
  display: block;
  margin-bottom: 17px;
  color: #7d8494;
  font: 700 10px/1.4 "IBM Plex Mono", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 7px 0;
  color: #626a7a;
  font-size: 13px;
  line-height: 1.4;
  transition: color 160ms ease, transform 160ms ease;
}

.article-toc a:hover { color: var(--article-blue); transform: translateX(3px); }

.article-content { min-width: 0; }
.article-content > :first-child { margin-top: 0; }
.article-content h2 {
  margin: 80px 0 22px;
  font-size: clamp(31px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.article-content h3 {
  margin: 38px 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.article-content p,
.article-content li {
  color: #3d4556;
  font-size: 17px;
  line-height: 1.83;
}

.article-content p { margin: 0 0 23px; }
.article-content ul { margin: 24px 0 30px; padding: 0; list-style: none; }
.article-content li { position: relative; margin: 12px 0; padding-left: 28px; }
.article-content li::before {
  position: absolute;
  top: .75em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--article-coral);
  content: "";
  transform: rotate(12deg);
}

.article-content a { color: var(--article-blue-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content strong { color: var(--article-ink); }

.article-content blockquote {
  position: relative;
  margin: 34px 0;
  padding: 28px 31px 28px 74px;
  border: 1px solid rgba(49,93,255,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  color: var(--article-ink);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.48;
  letter-spacing: -.02em;
}

.article-content blockquote::before {
  position: absolute;
  top: 27px;
  left: 28px;
  color: var(--article-blue);
  font: 700 30px/1 "Instrument Sans", sans-serif;
  content: "/";
}

.article-table-wrap {
  margin: 32px 0 38px;
  overflow-x: auto;
  border: 1px solid var(--article-line);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(22,31,61,.055);
}

.article-content table { width: 100%; min-width: 650px; border-collapse: collapse; }
.article-content th,
.article-content td { padding: 17px 18px; border-bottom: 1px solid var(--article-line); text-align: left; vertical-align: top; }
.article-content tr:last-child td { border-bottom: 0; }
.article-content th {
  background: #111a34;
  color: white;
  font: 700 10px/1.4 "IBM Plex Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.article-content td { color: #485064; font-size: 14px; line-height: 1.55; }
.article-content td:first-child { color: var(--article-ink); font-weight: 700; }

.article-callout {
  margin: 42px 0;
  padding: 30px;
  border: 1px solid rgba(16,25,49,.12);
  border-radius: 24px;
  background: var(--article-lime);
  color: var(--article-ink);
}
.article-callout strong { display: block; margin-bottom: 8px; font-size: 20px; letter-spacing: -.02em; }
.article-callout p { margin: 0; color: #33401d; }

.article-steps { counter-reset: article-step; }
.article-step { position: relative; }
.article-step h2 { padding-left: 65px; }
.article-step h2::before {
  position: absolute;
  left: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--article-ink);
  color: white;
  font: 700 12px/1 "IBM Plex Mono", monospace;
  counter-increment: article-step;
  content: "0" counter(article-step);
  transform: rotate(-3deg);
}

.article-example {
  margin-top: 82px;
  padding: 42px;
  border-radius: 30px;
  background: #111a34;
  color: white;
  box-shadow: 0 22px 60px rgba(17,26,52,.15);
}
.article-example h2 { margin-top: 0; color: white; }
.article-example p { color: #c9d0df; }
.article-example strong { color: var(--article-lime); }

.article-faq { margin-top: 88px; }
.article-faq > h2 { margin-bottom: 30px; }
.article-faq details { border-top: 1px solid var(--article-line); }
.article-faq details:last-child { border-bottom: 1px solid var(--article-line); }
.article-faq summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--article-ink);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after { color: var(--article-blue); font: 700 22px/1 "IBM Plex Mono", monospace; content: "+"; }
.article-faq details[open] summary::after { content: "-"; }
.article-faq details p { max-width: 680px; padding-bottom: 24px; }

.article-product-cta {
  width: min(1120px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  margin: 110px auto 88px;
  padding: 48px;
  border-radius: 30px;
  background: var(--article-coral);
  color: var(--article-ink);
  transform: rotate(.25deg);
}
.article-product-cta span { font: 700 10px/1.4 "IBM Plex Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.article-product-cta h2 { max-width: 680px; margin: 12px 0 0; font-size: clamp(34px,4vw,52px); line-height: 1.03; letter-spacing: -.05em; }
.article-product-cta a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 11px;
  background: var(--article-ink);
  color: white;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 180ms ease;
}
.article-product-cta a:hover { transform: translateY(-2px) rotate(-1deg); }

.article-footer {
  width: min(1280px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 1.3fr repeat(3, auto);
  gap: 64px;
  margin: 0 auto;
  padding: 45px 0 56px;
  border-top: 1px solid var(--article-line);
  color: #626a7a;
  font-size: 12px;
}
.article-footer-brand img { width: 124px; height: auto; display: block; object-fit: contain; }
.article-footer-brand p { max-width: 300px; margin: 14px 0 0; line-height: 1.6; }
.article-footer-links { display: grid; align-content: start; gap: 9px; }
.article-footer-links strong { margin-bottom: 3px; color: var(--article-ink); }
.article-footer-links a:hover { color: var(--article-blue); }

.blog-index {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 110px 0 120px;
}
.blog-index-intro { max-width: 850px; }
.blog-index-intro .article-breadcrumb { margin-bottom: 24px; }
.blog-index h1 { margin: 0; font-size: clamp(58px, 8vw, 104px); line-height: .9; letter-spacing: -.07em; text-wrap: balance; }
.blog-index-intro > p { max-width: 680px; margin: 30px 0 0; color: var(--article-soft); font-size: 21px; line-height: 1.65; }
.blog-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 0;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 32px;
  background: var(--article-white);
  box-shadow: var(--article-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.blog-card:hover { transform: translateY(-5px) rotate(-.15deg); box-shadow: 0 30px 80px rgba(22,31,61,.15); }
.blog-card img { width: 100%; height: 100%; min-height: 430px; display: block; object-fit: cover; }
.blog-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.blog-card-copy > span { color: var(--article-blue); font: 700 10px/1.4 "IBM Plex Mono", monospace; letter-spacing: .11em; text-transform: uppercase; }
.blog-card-copy h2 { margin: 17px 0 18px; font-size: clamp(33px,4vw,50px); line-height: 1.02; letter-spacing: -.05em; }
.blog-card-copy p { margin: 0; color: var(--article-soft); font-size: 16px; line-height: 1.7; }
.blog-card-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--article-blue-deep); font-weight: 750; }
.blog-card-link::after { content: "->"; transition: transform 180ms ease; }
.blog-card:hover .blog-card-link::after { transform: translateX(4px); }

@keyframes article-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .article-header { grid-template-columns: 1fr auto; }
  .article-header nav { display: none; }
  .article-shell { grid-template-columns: 1fr; }
  .article-toc { display: none; }
  .article-product-cta { grid-template-columns: 1fr; align-items: start; }
  .article-footer { grid-template-columns: 1fr repeat(3, auto); gap: 36px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card img { min-height: 0; aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 82px; }
  .article-body { font-size: 16px; }
  .article-header { height: 66px; padding-inline: 16px; }
  .article-brand img { width: 106px; }
  .article-sign-in { display: none; }
  .article-start { min-height: 37px; padding-inline: 12px; font-size: 12px; }
  .article-hero, .article-shell, .article-product-cta, .blog-index { width: calc(100% - 32px); }
  .article-cover, .article-footer { width: calc(100% - 24px); }
  .article-hero { padding: 64px 0 38px; }
  .article-hero h1 { font-size: 48px; }
  .article-dek { margin-top: 23px; font-size: 18px; }
  .article-meta { display: grid; gap: 8px; }
  .article-cover { margin-bottom: 62px; }
  .article-cover::before { inset: 9% -8px -10px 8px; border-radius: 20px; }
  .article-cover img { border-radius: 19px; }
  .article-content h2 { margin-top: 64px; font-size: 34px; }
  .article-step h2 { padding-left: 0; padding-top: 57px; }
  .article-step h2::before { top: 0; }
  .article-content p, .article-content li { font-size: 16px; line-height: 1.75; }
  .article-content blockquote { padding: 65px 23px 24px; font-size: 18px; }
  .article-content blockquote::before { top: 22px; left: 23px; }
  .article-example { margin-inline: -8px; padding: 28px 24px; border-radius: 22px; }
  .article-product-cta { margin-top: 82px; padding: 29px 24px; border-radius: 22px; transform: none; }
  .article-product-cta h2 { font-size: 37px; }
  .article-product-cta a { width: 100%; }
  .article-footer { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .article-footer-brand { grid-column: 1 / -1; }
  .blog-index { padding: 75px 0 90px; }
  .blog-index h1 { font-size: 64px; }
  .blog-index-intro > p { font-size: 18px; }
  .blog-card { margin-top: 48px; border-radius: 22px; }
  .blog-card-copy { padding: 30px 24px 34px; }
}

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

/* Minimal public-blog alignment: match the landing page instead of introducing a second design language. */
.article-body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
}

.article-body::before { display: none; }

.article-breadcrumb,
.article-meta,
.article-toc strong,
.blog-card-copy > span {
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
}

.article-hero {
  width: min(980px, calc(100% - 64px));
  padding: 156px 0 48px;
  animation: none;
}

.article-breadcrumb {
  margin-bottom: 20px;
  color: #737b8b;
  font-size: 12px;
  font-weight: var(--type-ui-weight);
}

.article-breadcrumb i { width: 18px; background: #a8afbc; }

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 6vw, 70px);
  font-weight: var(--type-heading-weight);
  line-height: 1;
  letter-spacing: -.052em;
}

.article-dek {
  max-width: 700px;
  margin-top: 24px;
  color: #687083;
  font-size: 19px;
  line-height: 1.62;
}

.article-meta {
  margin-top: 24px;
  color: #8a91a0;
  font-size: 11px;
  font-weight: var(--type-ui-weight);
}

.article-meta span::before { width: 4px; height: 4px; background: #a8afbc !important; }

.article-cover {
  width: min(900px, calc(100% - 64px));
  margin-bottom: 76px;
}

.article-cover::before { display: none; }

.article-cover img {
  border-color: var(--line);
  border-radius: 16px;
  box-shadow: none;
}

.article-shell {
  width: min(980px, calc(100% - 64px));
  grid-template-columns: 180px minmax(0, 720px);
  gap: 64px;
}

.article-toc {
  top: 34px;
  padding: 18px 0;
}

.article-toc strong {
  margin-bottom: 11px;
  color: #8a91a0;
  font-size: 11px;
}

.article-toc a { padding: 5px 0; font-size: 12px; }

.article-content h2 {
  margin-top: 66px;
  font-size: clamp(29px, 3.2vw, 38px);
  font-weight: var(--type-heading-weight);
  line-height: 1.12;
  letter-spacing: -.038em;
}

.article-content h3 { font-weight: var(--type-heading-weight); }

.article-content p,
.article-content li {
  color: #4f5768;
  font-size: 16px;
  line-height: 1.8;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border: 0;
  border-left: 3px solid var(--blue);
  border-radius: 0;
  background: transparent;
  font-size: 18px;
  font-weight: var(--type-ui-weight);
}

.article-content blockquote::before { display: none; }

.article-callout {
  margin: 34px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.article-callout strong { font-size: 17px; }
.article-callout p { color: #596173; }

.article-step h2 { padding-left: 0; }
.article-step h2::before { display: none; }

.article-table-wrap {
  border-radius: 12px;
  box-shadow: none;
}

.article-content th {
  background: #f0f2f7;
  color: #5b6373;
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
}

.article-example {
  margin-top: 72px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.article-example h2 { color: var(--ink); }
.article-example p { color: #4f5768; }
.article-example strong { color: var(--ink); }

.article-faq { margin-top: 72px; }

.article-product-cta {
  width: min(980px, calc(100% - 64px));
  margin: 92px auto 72px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transform: none;
}

.article-product-cta span {
  color: #7b8291;
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
}

.article-product-cta h2 {
  max-width: 660px;
  font-size: clamp(31px, 3.6vw, 44px);
  font-weight: var(--type-heading-weight);
}

.article-product-cta a {
  min-height: 46px;
  border-radius: 8px;
  background: var(--blue);
  font-weight: var(--type-ui-weight);
}

.article-product-cta a:hover { transform: translateY(-1px); }

.article-footer {
  width: min(1120px, calc(100% - 64px));
  font-family: var(--font-sans);
}

.blog-index {
  width: min(980px, calc(100% - 64px));
  padding: 166px 0 110px;
}

.blog-index-intro {
  max-width: 760px;
}

.blog-index-intro .eyebrow {
  margin-bottom: 17px;
  color: #727a8a;
  font-size: 11px;
  letter-spacing: .12em;
}

.blog-index h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 70px);
  font-weight: var(--type-heading-weight);
  line-height: 1;
  letter-spacing: -.052em;
}

.blog-index-intro > p {
  max-width: 650px;
  margin-top: 24px;
  color: #687083;
  font-size: 18px;
  line-height: 1.65;
}

.blog-card {
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 36px;
  margin-top: 62px;
  padding: 30px 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.blog-card:hover {
  box-shadow: none;
  transform: none;
}

.blog-card img {
  width: 310px;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.blog-card-copy {
  justify-content: center;
  padding: 0;
}

.blog-card-copy > span {
  color: #7d8493;
  font-size: 11px;
}

.blog-card-copy h2 {
  max-width: 560px;
  margin: 13px 0 14px;
  font-size: clamp(29px, 3.7vw, 42px);
  font-weight: var(--type-heading-weight);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.blog-card-copy p {
  max-width: 560px;
  color: #687083;
  font-size: 15px;
}

.blog-card-link {
  margin-top: 22px;
  font-size: 13px;
  font-weight: var(--type-ui-weight);
}

@media (max-width: 900px) {
  .article-hero,
  .article-cover,
  .article-shell,
  .article-product-cta,
  .blog-index { width: calc(100% - 36px); }
}

@media (max-width: 640px) {
  .article-hero { padding-top: 118px; }
  .article-hero h1 { font-size: 44px; }
  .article-cover { margin-bottom: 54px; }
  .article-product-cta { padding: 28px 0; }
  .blog-index { padding: 122px 0 80px; }
  .blog-index h1 { font-size: 46px; }
  .blog-card { grid-template-columns: 1fr; gap: 22px; padding: 24px 0 28px; }
  .blog-card img { width: 100%; max-width: 420px; }
  .blog-card-copy { padding: 0; }
}
