:root {
  --ink: #10243e;
  --ink-strong: #071a32;
  --muted: #5b6e83;
  --line: #dbe4ee;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-blue: #edf6ff;
  --blue: #118ad3;
  --blue-dark: #0969ac;
  --yellow: #ffd84a;
  --green: #1f9d69;
  --shadow-sm: 0 12px 30px rgba(16, 36, 62, 0.08);
  --shadow-lg: 0 24px 70px rgba(16, 36, 62, 0.13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

p { margin: 0 0 1rem; }

h1,
h2,
h3 {
  color: var(--ink-strong);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.25rem; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink-strong);
  color: #fff;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--surface-blue); }

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 { margin: 10px 0 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
}

.lede,
.muted { color: var(--muted); }

.lede {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 228, 238, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink-strong);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(17, 138, 211, 0.2);
}

.desktop-nav,
.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.desktop-nav { gap: 26px; }

.desktop-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--ink-strong); }

.header-actions { gap: 13px; }
.language-switcher { gap: 4px; }

.language-button {
  min-width: 36px;
  padding: 7px 8px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-button[aria-pressed="true"] {
  color: var(--ink-strong);
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(9, 105, 172, 0.24);
}

.button-primary:hover { background: #07588f; }

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

.button-secondary:hover { box-shadow: var(--shadow-sm); }

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.button svg { width: 18px; height: 18px; }

.mobile-menu { display: none; }
.mobile-menu summary { list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }

.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-button svg { width: 22px; height: 22px; }

.mobile-menu-panel {
  position: absolute;
  top: 68px;
  right: 20px;
  left: 20px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.mobile-menu-panel nav { display: grid; }

.mobile-menu-panel nav a {
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
}

.mobile-menu-panel nav a:hover { background: var(--surface-soft); color: var(--ink-strong); }
.mobile-menu-tools { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; border-top: 1px solid var(--line); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 128px) 0 clamp(82px, 10vw, 142px);
  background:
    radial-gradient(circle at 85% 12%, rgba(17, 138, 211, 0.16), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 216, 74, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
}

.hero h1 .accent {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.hero h1 .accent::after {
  position: absolute;
  right: -4px;
  bottom: 0.06em;
  left: -4px;
  z-index: -1;
  height: 0.22em;
  border-radius: 5px;
  background: var(--yellow);
  content: "";
}

.hero-copy .lede { max-width: 630px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.proof-list li { display: flex; align-items: center; gap: 7px; }
.proof-list svg { width: 17px; height: 17px; color: var(--green); }

.integration-card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(17, 138, 211, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}

.integration-card::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 138, 211, 0.13), rgba(255, 216, 74, 0.13));
  content: "";
  transform: rotate(3deg) translate(16px, 17px);
}

.integration-label {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.integration-flow { display: grid; gap: 13px; }

.flow-node {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.flow-node strong { display: block; color: var(--ink-strong); }
.flow-node small { color: var(--muted); }

.flow-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background: #95bf47;
  font-size: 1.35rem;
  font-weight: 850;
}

.flow-icon img { width: 100%; height: 100%; object-fit: cover; }
.flow-target { background: var(--blue); }
.flow-status { color: var(--green); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.flow-arrow::before,
.flow-arrow::after { width: 38px; height: 1px; background: var(--line); content: ""; }

.benefit-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-dark);
  background: var(--surface-blue);
}

.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { margin: 0 0 12px; }
.benefit-card p { color: var(--muted); }

.feature-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.feature-list li::before { margin-right: 8px; color: var(--blue); content: "✓"; }

.step-card {
  position: relative;
  padding: 28px;
  border-top: 3px solid var(--blue);
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: block;
  margin-bottom: 30px;
  color: rgba(9, 105, 172, 0.3);
  font-size: 2.2rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.step-card h3 { margin: 0 0 12px; }
.step-card p { color: var(--muted); }

.demo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.demo-copy h2 { margin: 12px 0 18px; }

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 10px solid #fff;
  border-radius: 22px;
  background: var(--ink-strong);
  box-shadow: var(--shadow-lg);
}

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

.latest-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.latest-card img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.latest-content { padding: clamp(30px, 5vw, 56px); }
.latest-content h2 { margin: 12px 0 16px; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.latest-content .button { margin-top: 12px; }

.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-guide-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.home-guide-image { display: block; overflow: hidden; background: var(--surface-blue); }
.home-guide-image img { display: block; width: 100%; height: 190px; object-fit: cover; transition: transform 220ms ease; }
.home-guide-card:hover .home-guide-image img { transform: scale(1.025); }
.home-guide-content { padding: 24px; }
.home-guide-content h3 { margin: 10px 0 12px; font-size: 1.32rem; }
.home-guide-content h3 a:hover,
.guide-link:hover { color: var(--blue-dark); }
.home-guide-content p { color: var(--muted); }
.guide-link { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 800; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink-strong);
}

.cta-panel::after {
  position: absolute;
  right: -50px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 50px solid rgba(255, 216, 74, 0.17);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 { margin: 8px 0 14px; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-panel p { max-width: 700px; color: #bed0df; }
.cta-panel .eyebrow { color: #88c9f2; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-panel .button-primary { color: var(--ink-strong); background: var(--yellow); box-shadow: none; }
.cta-panel .button-secondary { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }

.site-footer {
  padding: 58px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 40px;
}

.footer-brand p { max-width: 440px; margin-top: 16px; color: var(--muted); }
.footer-column strong { display: block; margin-bottom: 12px; color: var(--ink-strong); }
.footer-column a,
.footer-column span { display: block; margin: 6px 0; color: var(--muted); font-size: 0.92rem; }
.footer-column a:hover { color: var(--blue-dark); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }

/* Blog and article pages */
.page-hero {
  padding: clamp(64px, 8vw, 100px) 0 48px;
  background: linear-gradient(180deg, #f2f8ff 0%, #fff 100%);
}

.page-hero h1 { max-width: 820px; margin: 14px 0 18px; font-size: clamp(2.5rem, 5vw, 4.8rem); }

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.post-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
}

.post-card-image { display: block; overflow: hidden; background: var(--surface-blue); }
.post-card-image img { display: block; width: 100%; height: 230px; object-fit: cover; transition: transform 220ms ease; }
.post-card:first-child .post-card-image img { height: 100%; min-height: 340px; }
.post-card:hover .post-card-image img { transform: scale(1.025); }
.post-card-content { padding: 26px; }
.post-card h2 { margin: 10px 0 14px; font-size: clamp(1.45rem, 2.6vw, 2.15rem); }
.post-card h2 a:hover { color: var(--blue-dark); }
.post-card p { color: var(--muted); }
.post-meta { color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag { padding: 5px 9px; border-radius: 99px; color: var(--blue-dark); background: var(--surface-blue); font-size: 0.72rem; font-weight: 800; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: 0.86rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--blue-dark); }

.article-page { padding: 54px 0 100px; }
.article-header { max-width: 900px; margin: 0 auto 34px; }
.article-header h1 { margin: 0 0 20px; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.article-header .lede { margin-top: 20px; }
.article-author { margin-top: 10px; color: var(--muted); font-size: .9rem; }
.article-author a { color: var(--blue-dark); font-weight: 800; }
.article-hero { display: block; width: 100%; max-height: 570px; margin: 0 0 46px; object-fit: cover; border-radius: var(--radius-lg); background: var(--surface-blue); }

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(36px, 7vw, 86px);
  justify-content: center;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.article-toc summary { color: var(--ink-strong); font-weight: 800; cursor: pointer; }
.article-toc ol { display: grid; gap: 10px; margin: 15px 0 0; padding-left: 19px; }
.article-toc a { color: var(--muted); font-size: 0.82rem; line-height: 1.4; }
.article-toc a:hover { color: var(--blue-dark); }

.reading-content { min-width: 0; color: #263b50; font-size: 1.06rem; }
.reading-content > p:first-child { font-size: 1.16rem; color: var(--ink); }
.reading-content h2 { margin: 2.5em 0 .65em; font-size: clamp(1.75rem, 3.4vw, 2.4rem); }
.reading-content h3 { margin: 2em 0 .6em; font-size: 1.4rem; }
.reading-content a { color: var(--blue-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.reading-content ul,
.reading-content ol { padding-left: 1.4em; }
.reading-content li { margin: .55em 0; }
.reading-content code { padding: 2px 5px; border-radius: 5px; background: var(--surface-blue); }
.callout { margin: 28px 0; padding: 20px 24px; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; background: var(--surface-blue); }
.table-wrap { overflow-x: auto; margin: 30px 0; border: 1px solid var(--line); border-radius: 14px; }
.reading-content table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.reading-content th,
.reading-content td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.reading-content th { color: var(--ink-strong); background: var(--surface-soft); }
.reading-content tr:last-child td { border-bottom: 0; }
.article-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.reading-content .article-cta a { text-decoration: none; }

.related-guides { max-width: 1080px; margin: 86px auto 0; }
.related-guides .section-heading { margin-bottom: 28px; }
.related-guides .section-heading h2 { margin-top: 10px; }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.related-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.related-card > a { display: block; overflow: hidden; background: var(--surface-blue); }
.related-card img { display: block; width: 100%; height: 190px; object-fit: cover; transition: transform 220ms ease; }
.related-card:hover img { transform: scale(1.025); }
.related-card > div { padding: 24px; }
.related-card h3 { margin: 10px 0 12px; font-size: 1.3rem; }
.related-card h3 a:hover { color: var(--blue-dark); }
.related-card p { color: var(--muted); }

/* FAQ */
.faq-shell { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 50px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 22px 54px 22px 24px; color: var(--ink-strong); font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { float: right; margin-right: -30px; color: var(--blue); content: "+"; font-size: 1.35rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 24px 22px; color: var(--muted); }
.faq-answer a { color: var(--blue-dark); font-weight: 800; }
.support-card { position: sticky; top: 104px; padding: 28px; border-radius: var(--radius); color: #fff; background: var(--ink-strong); }
.support-card h2 { margin: 8px 0 13px; color: #fff; font-size: 1.7rem; }
.support-card p { color: #bed0df; }
.support-card .button { width: 100%; margin-top: 10px; color: var(--ink-strong); background: var(--yellow); }

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions { display: none; }
  .mobile-menu { display: block; }
  .hero-grid,
  .demo-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .integration-card { max-width: 680px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { display: grid; grid-template-columns: 54px 1fr; column-gap: 20px; }
  .benefit-icon { grid-row: 1 / 4; }
  .benefit-card h3 { margin-top: 5px; }
  .feature-list { grid-column: 2; }
  .home-guide-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .faq-shell { grid-template-columns: 1fr; }
  .support-card { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 66px 0; }
  .nav-shell { min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .hero { padding: 62px 0 78px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4.2rem); }
  .hero h1 .accent { white-space: normal; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .integration-card { padding: 20px; border-radius: 22px; }
  .flow-node { grid-template-columns: 44px 1fr; }
  .flow-status { grid-column: 2; }
  .benefit-card { display: block; padding: 25px; }
  .feature-list { display: grid; }
  .step-grid { grid-template-columns: 1fr; }
  .demo-grid { gap: 30px; }
  .video-frame { border-width: 6px; border-radius: 16px; }
  .latest-card,
  .post-card:first-child { grid-template-columns: 1fr; }
  .latest-card img { min-height: 220px; max-height: 280px; }
  .cta-panel { grid-template-columns: 1fr; padding: 32px 24px; }
  .cta-actions { display: grid; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-card:first-child { grid-column: auto; }
  .post-card:first-child .post-card-image img { min-height: 0; height: 230px; }
  .article-page { padding-top: 38px; }
  .article-hero { margin-bottom: 30px; border-radius: 18px; }
  .article-toc { padding: 16px; }
  .reading-content { font-size: 1rem; }
  .article-cta { display: grid; }
  .article-cta .button { width: 100%; }
  .related-guides { margin-top: 62px; }
  .related-grid { grid-template-columns: 1fr; }
}

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