:root {
  --canvas: #f7f8fa;
  --ink: #111318;
  --secondary: #68707d;
  --blue: #0a84ff;
  --blue-text: #006ec9;
  --cyan: #66d7ff;
  --line: rgba(17, 19, 24, 0.12);
  --soft-line: rgba(17, 19, 24, 0.08);
  --selection: rgba(10, 132, 255, 0.12);
  --system: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --top-surface-offset: 102px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: var(--system); -webkit-font-smoothing: antialiased; }
body, button { font-family: var(--system); }
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
h1, h2, h3, p, pre, blockquote { margin: 0; }
.shell { width: min(100% - 36px, 1210px); margin-inline: auto; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 20; padding: 10px 14px; border-radius: 10px; color: white; background: var(--ink); font-size: 13px; transform: translateY(-150%); }
.skip-link:focus-visible { transform: translateY(0); }

.site-header { position: relative; z-index: 5; min-height: var(--top-surface-offset); padding-top: 22px; background: transparent; }
.nav { position: relative; z-index: 2; width: 720px; height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 6px 14px; border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 999px; background: rgba(255, 255, 255, 0.62); backdrop-filter: blur(22px) saturate(145%); box-shadow: 0 10px 30px rgba(17, 19, 24, 0.06); }
.brand { display: flex; align-items: center; gap: 8px; font-size: 14px; line-height: 18px; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.brand strong { font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--secondary); font-size: 13px; line-height: 16px; }
.nav-links a { position: relative; transition: color 180ms ease, transform 180ms ease; }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 14px 20px; border-radius: 11px; font-size: 15px; line-height: 18px; font-weight: 600; transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.button-dark { color: white; background: var(--ink); }
.button-blue { color: white; background: var(--blue); }
.desktop-download { display: inline-flex; }
.mobile-share { display: none; }
.nav-download { padding: 10px 16px; font-size: 13px; line-height: 16px; }
.share-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:active { transform: scale(0.98); }
.button:focus-visible, .nav-links a:focus-visible, .brand:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 4px; }
.menu { display: none; width: 38px; height: 36px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: rgba(255, 255, 255, 0.72); cursor: pointer; transition: background-color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out); }
.menu:active { transform: scale(0.96); }
.menu:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.menu-icon { position: relative; width: 16px; height: 14px; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; top: 6px; left: 1px; width: 14px; height: 1.5px; border-radius: 999px; background: currentColor; transition: transform 180ms var(--ease-out); }
.menu-icon::before { transform: translateY(-3px); }
.menu-icon::after { transform: translateY(3px); }
.menu[aria-expanded="true"] .menu-icon::before { transform: rotate(45deg); }
.menu[aria-expanded="true"] .menu-icon::after { transform: rotate(-45deg); }

.article-masthead, .blog-hero { position: relative; background: transparent; }
.article-masthead::before, .blog-hero::before { content: ""; position: absolute; top: calc(-1 * var(--top-surface-offset)); right: 0; bottom: 0; left: 0; z-index: 0; background: radial-gradient(circle at 20% 24%, rgba(102, 215, 255, 0.24), transparent 34%), radial-gradient(circle at 80% 18%, rgba(10, 132, 255, 0.14), transparent 32%), linear-gradient(180deg, #f8fbff 0%, var(--canvas) 100%); pointer-events: none; }
.article-masthead { padding: 64px 18px 92px; border-bottom: 1px solid var(--line); }
.article-header { position: relative; z-index: 1; display: flex; align-items: center; flex-direction: column; gap: 24px; text-align: center; }
.article-kicker { display: flex; align-items: center; gap: 10px; padding: 7px 12px; border: 1px solid rgba(17, 19, 24, 0.1); border-radius: 999px; color: var(--secondary); background: rgba(255, 255, 255, 0.58); font-size: 12px; line-height: 16px; }
.article-kicker span:first-child { color: var(--blue-text); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.article-kicker i, .article-meta i, .post-row-meta i { width: 3px; height: 3px; border-radius: 50%; background: #9aa1ac; }
.article-header h1 { max-width: 940px; font-size: 64px; line-height: 66px; letter-spacing: -0.045em; font-weight: 700; text-wrap: balance; }
.article-header > p { max-width: 720px; color: var(--secondary); font-size: 20px; line-height: 30px; letter-spacing: -0.012em; text-wrap: pretty; }
.article-meta { display: flex; align-items: center; gap: 12px; padding-top: 8px; color: var(--secondary); font-size: 13px; line-height: 18px; }
.article-meta strong { color: var(--ink); font-weight: 500; }
.author-mark { width: 30px; height: 30px; display: inline-flex; flex: 0 0 30px; align-items: center; justify-content: center; border-radius: 50%; color: white; background: var(--ink); font-size: 10px; line-height: 12px; font-weight: 700; }
img.author-mark { display: block; object-fit: cover; }

.article-shell { padding: 96px 72px 128px; background: white; }
.article-layout { width: min(100%, 1120px); display: flex; align-items: flex-start; gap: 96px; margin-inline: auto; }
.contents-rail { position: sticky; top: 32px; width: 224px; display: flex; flex: 0 0 224px; flex-direction: column; gap: 22px; padding-top: 5px; }
.contents-rail > span { color: var(--secondary); font-size: 11px; line-height: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.contents-rail nav { display: flex; flex-direction: column; padding-left: 16px; border-left: 1px solid var(--line); }
.contents-rail nav a { padding: 9px 0; color: var(--secondary); font-size: 13px; line-height: 18px; transition: color 160ms ease; }
.contents-rail nav a.is-active { color: var(--blue-text); font-weight: 500; }
.contents-rail nav a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
.rail-cta { display: flex; flex-direction: column; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--canvas); }
.rail-cta strong { font-size: 13px; line-height: 18px; }
.rail-cta p { color: var(--secondary); font-size: 12px; line-height: 17px; }
.rail-cta a { color: var(--blue-text); font-size: 12px; line-height: 16px; font-weight: 600; }
.mobile-contents { display: none; }

.markdown-body { width: 720px; min-width: 0; color: #3f4650; font-size: 19px; line-height: 31px; }
.markdown-body > :first-child { margin-top: 0; }
.markdown-body > p:first-child { color: var(--ink); font-size: 24px; line-height: 36px; letter-spacing: -0.018em; }
.markdown-body p { margin-top: 22px; text-wrap: pretty; }
.markdown-body h2, .markdown-body h3 { color: var(--ink); scroll-margin-top: 32px; }
.markdown-body h2 { margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--soft-line); font-size: 34px; line-height: 40px; letter-spacing: -0.032em; font-weight: 700; }
.markdown-body h2::before { content: ""; width: 30px; height: 1px; display: block; margin-bottom: 22px; background: var(--blue); }
.markdown-body h3 { margin-top: 38px; font-size: 23px; line-height: 29px; letter-spacing: -0.02em; font-weight: 650; }
.markdown-body a { color: var(--blue-text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.markdown-body strong { color: var(--ink); font-weight: 650; }
.markdown-body ul, .markdown-body ol { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 0; padding-left: 25px; }
.markdown-body li { padding-left: 6px; }
.markdown-body li::marker { color: var(--blue); font-weight: 600; }
.markdown-body blockquote { position: relative; display: flex; flex-direction: column; gap: 6px; margin-top: 32px; padding: 24px 26px 24px 78px; border: 1px solid rgba(10, 132, 255, 0.18); border-radius: 18px; color: var(--secondary); background: rgba(10, 132, 255, 0.07); font-size: 15px; line-height: 23px; }
.markdown-body blockquote::before { content: "i"; position: absolute; top: 24px; left: 28px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--blue); font-size: 15px; line-height: 18px; font-weight: 700; }
.markdown-body blockquote p { margin: 0; }
.markdown-body blockquote p:first-child { color: var(--ink); font-weight: 600; }
.markdown-body code { border-radius: 5px; color: #273148; background: #eef1f6; font-family: var(--mono); font-size: 0.87em; }
.markdown-body :not(pre) > code { padding: 2px 5px; }
.markdown-body pre { overflow-x: auto; margin-top: 28px; padding: 24px 26px 28px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; color: #dde6f2; background: #11151d; font-family: var(--mono); font-size: 14px; line-height: 23px; tab-size: 2; }
.markdown-body pre code { padding: 0; color: inherit; background: transparent; font: inherit; }
.markdown-body hr { height: 1px; margin: 56px 0; border: 0; background: var(--line); }
.markdown-body table { width: 100%; margin-top: 28px; border-collapse: collapse; font-size: 15px; line-height: 22px; }
.markdown-body th, .markdown-body td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.markdown-body th { color: var(--ink); background: var(--canvas); font-weight: 600; }
.markdown-body > img, .markdown-body p > img { display: block; width: 100%; margin-top: 28px; border-radius: 18px; }

.article-video { margin: 32px 0 0; }
.article-video video { width: 100%; aspect-ratio: 16 / 9; display: block; overflow: hidden; border-radius: 18px; object-fit: cover; background: #11151d; box-shadow: 0 20px 46px rgba(17, 19, 24, 0.14); }
.article-video figcaption { padding: 12px 4px 0; color: var(--secondary); font-size: 13px; line-height: 19px; }

.article-end { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-author { display: flex; align-items: center; gap: 12px; }
.article-author > div { display: flex; flex-direction: column; gap: 2px; }
.article-author strong { color: var(--ink); font-size: 13px; line-height: 18px; }
.article-author span { color: var(--secondary); font-size: 12px; line-height: 16px; }
.article-author > .author-mark { color: white; font-size: 10px; line-height: 12px; }
.article-actions { display: flex; align-items: center; gap: 8px; }
.article-actions button { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--secondary); background: white; font-size: 12px; line-height: 16px; cursor: pointer; transition: color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out); }
.article-actions button:active { transform: scale(0.97); }
.article-actions button:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.article-download-cta { display: flex; margin-top: 28px; }
.article-download-cta .button { color: white; text-decoration: none; }

.next-article { padding: 88px 72px; border-top: 1px solid var(--line); background: var(--canvas); }
.next-article-inner { width: min(100%, 1120px); display: flex; align-items: flex-end; justify-content: space-between; gap: 72px; margin-inline: auto; }
.next-article-inner > div { max-width: 760px; display: flex; flex-direction: column; gap: 18px; }
.next-article-inner span, .blog-hero span { color: var(--blue-text); font-size: 11px; line-height: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.next-article h2 { font-size: 42px; line-height: 48px; letter-spacing: -0.036em; font-weight: 700; text-wrap: balance; }
.next-article p { color: var(--secondary); font-size: 14px; line-height: 20px; }
.next-article-inner > i { width: 52px; height: 52px; display: grid; flex: 0 0 52px; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: 22px; font-style: normal; transition: transform 160ms var(--ease-out); }
.next-article-inner:focus-visible { outline: 2px solid var(--blue); outline-offset: 10px; border-radius: 4px; }

.blog-hero { padding: 96px 18px 106px; border-bottom: 1px solid var(--line); }
.blog-hero .shell { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 22px; }
.blog-hero h1 { max-width: 920px; font-size: 68px; line-height: 70px; letter-spacing: -0.05em; font-weight: 700; text-wrap: balance; }
.blog-hero p { max-width: 650px; color: var(--secondary); font-size: 19px; line-height: 29px; }
.post-index { padding-block: 92px 128px; }
.post-index-heading { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.post-index-heading h2 { font-size: 22px; line-height: 28px; letter-spacing: -0.02em; }
.post-index-heading span { color: var(--secondary); font-size: 12px; line-height: 16px; }
.post-list { display: flex; flex-direction: column; }
.post-row { min-height: 236px; display: grid; grid-template-columns: 54px minmax(0, 1fr) 154px 52px; grid-template-rows: auto auto auto; align-items: baseline; column-gap: 26px; row-gap: 13px; padding: 52px 0; border-bottom: 1px solid var(--line); }
.post-row-number { grid-column: 1; grid-row: 1; color: var(--blue-text); font-size: 12px; line-height: 14px; font-weight: 600; }
.post-row-meta { grid-column: 2; grid-row: 1; display: flex; align-items: center; gap: 9px; color: var(--secondary); font-size: 11px; line-height: 14px; }
.post-row-meta span:first-child { color: var(--blue-text); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.post-row h3 { grid-column: 2 / 4; grid-row: 2; max-width: 720px; font-size: 34px; line-height: 39px; letter-spacing: -0.032em; font-weight: 700; text-wrap: balance; }
.post-row p { grid-column: 2 / 4; grid-row: 3; max-width: 680px; color: var(--secondary); font-size: 15px; line-height: 24px; }
.post-row time { grid-column: 3; grid-row: 1; justify-self: end; color: var(--secondary); font-size: 12px; line-height: 14px; text-align: right; }
.post-row-arrow { grid-column: 4; grid-row: 1 / 4; align-self: center; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: 20px; transition: transform 160ms var(--ease-out); }
.post-row:focus-visible { outline: 2px solid var(--blue); outline-offset: 8px; border-radius: 4px; }

.site-footer { display: flex; align-items: center; justify-content: space-between; padding: 30px 72px 42px; border-top: 1px solid var(--soft-line); color: var(--secondary); background: var(--canvas); font-size: 12px; line-height: 16px; }
.footer-brand, .footer-links { min-height: 30px; display: flex; align-items: center; gap: 9px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand-copy { display: flex; align-items: baseline; gap: 9px; }
.footer-brand-copy strong { color: var(--ink); font-size: 14px; line-height: 18px; }
.footer-links { gap: 26px; }
.footer-links a:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 3px; }

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--ink); transform: translateY(-1px); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-links a:active { transform: none; }
  .menu:hover { background: white; border-color: rgba(17, 19, 24, 0.15); }
  .button-dark:hover { background: #292d35; transform: translateY(-1px); }
  .button-blue:hover { background: #0077e6; transform: translateY(-1px); }
  .nav-links .nav-mobile-share:hover { color: white; background: #292d35; }
  .contents-rail nav a:hover, .rail-cta a:hover { color: var(--ink); }
  .article-actions button:hover { color: var(--ink); border-color: rgba(17, 19, 24, 0.22); }
  .next-article-inner:hover > i, .post-row:hover .post-row-arrow { transform: translateX(4px); }
}

@media (max-width: 800px) {
  :root { --top-surface-offset: 59px; }
  .shell { width: calc(100% - 36px); }
  .site-header { min-height: 59px; padding: 0; background: var(--canvas); }
  .nav { width: 100%; height: auto; min-height: 59px; display: grid; grid-template-rows: 40px; grid-template-columns: 1fr auto; padding: 8px 18px 10px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: var(--canvas); backdrop-filter: none; box-shadow: none; }
  .brand { grid-row: 1; grid-column: 1; }
  .brand img { width: 34px; height: 34px; border-radius: 9px; }
  .nav-links, .nav-download, .desktop-download { display: none; }
  .mobile-share { display: inline-flex; }
  .nav-links.is-open { position: static; grid-row: 2; grid-column: 1 / -1; display: flex; align-items: stretch; flex-direction: column; gap: 0; margin: 10px -18px -10px; padding: 0 18px 8px; border-top: 1px solid var(--line); border-radius: 0; color: var(--secondary); background: var(--canvas); box-shadow: none; }
  .nav-links.is-open a { padding: 15px 0; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 14px; line-height: 18px; }
  .nav-links.is-open a:last-child { border-bottom: 0; }
  .nav-links.is-open a:hover { color: var(--ink); transform: none; }
  .nav-links.is-open a::after { display: none; }
  .nav-links.is-open a[aria-current="page"] { color: var(--ink); background: transparent; }
  .nav-links.is-open .nav-mobile-share { min-height: 44px; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; padding: 13px 16px; border: 0; border-radius: 11px; color: white; background: var(--ink); font-weight: 600; }
  .menu { grid-row: 1; grid-column: 2; display: grid; }

  .article-masthead { padding: 54px 18px 58px; }
  .article-header { align-items: flex-start; gap: 22px; text-align: left; }
  .article-kicker { padding: 6px 10px; font-size: 10px; line-height: 14px; }
  .article-header h1 { width: 100%; font-size: 40px; line-height: 42px; letter-spacing: -0.045em; text-wrap: pretty; }
  .article-header > p { width: 100%; font-size: 17px; line-height: 25px; }
  .article-meta { gap: 10px; padding-top: 4px; font-size: 11px; line-height: 16px; }
  .article-meta .author-mark { width: 28px; height: 28px; flex-basis: 28px; }

  .article-shell { padding: 42px 18px 28px; }
  .mobile-contents { width: 100%; display: block; margin-bottom: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--canvas); }
  .mobile-contents summary { display: flex; align-items: center; gap: 9px; padding: 14px 16px; cursor: pointer; list-style: none; }
  .mobile-contents summary::-webkit-details-marker { display: none; }
  .contents-chevron { width: 16px; height: 16px; flex: 0 0 16px; margin-left: auto; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 160ms var(--ease-out); }
  .mobile-contents[open] .contents-chevron { transform: rotate(180deg); }
  .mobile-contents summary > span { color: var(--blue-text); font-size: 11px; line-height: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-contents summary small { color: var(--secondary); font-size: 12px; line-height: 16px; }
  .mobile-contents nav { display: flex; flex-direction: column; padding: 0 16px 12px; }
  .mobile-contents nav a { padding: 9px 0; border-top: 1px solid var(--soft-line); color: var(--secondary); font-size: 13px; line-height: 18px; transition: color 160ms ease; }
  .mobile-contents nav a.is-active { color: var(--blue-text); font-weight: 500; }
  .contents-rail { display: none; }
  .article-layout { width: 100%; display: block; }
  .markdown-body { width: 100%; font-size: 17px; line-height: 28px; }
  .markdown-body > p:first-child { font-size: 22px; line-height: 32px; }
  .markdown-body p { margin-top: 18px; }
  .markdown-body h2 { margin-top: 56px; padding-top: 26px; font-size: 30px; line-height: 34px; letter-spacing: -0.035em; }
  .markdown-body h2::before { width: 26px; margin-bottom: 18px; }
  .markdown-body h3 { margin-top: 34px; font-size: 22px; line-height: 27px; }
  .markdown-body ul, .markdown-body ol { gap: 10px; margin-top: 20px; padding-left: 22px; }
  .markdown-body blockquote { gap: 12px; padding: 20px; font-size: 14px; line-height: 22px; }
  .markdown-body blockquote::before { position: static; width: 30px; height: 30px; }
  .markdown-body pre { margin-top: 24px; padding: 20px 16px 22px; border-radius: 16px; font-size: 12px; line-height: 20px; }
  .markdown-body table { display: block; overflow-x: auto; font-size: 14px; }
  .article-video { margin-top: 26px; }
  .article-video video { aspect-ratio: 808 / 1080; border-radius: 16px; }
  .article-end { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 54px; padding-top: 24px; }
  .article-download-cta .mobile-share { width: 100%; }

  .next-article { padding: 58px 18px 62px; }
  .next-article-inner { align-items: flex-end; gap: 18px; }
  .next-article-inner > div { gap: 14px; }
  .next-article h2 { font-size: 30px; line-height: 34px; letter-spacing: -0.035em; }
  .next-article p { font-size: 12px; line-height: 16px; }
  .next-article-inner > i { width: 44px; height: 44px; flex-basis: 44px; font-size: 19px; }

  .blog-hero { padding: 68px 18px 72px; }
  .blog-hero .shell { gap: 18px; }
  .blog-hero h1 { font-size: 42px; line-height: 44px; letter-spacing: -0.045em; }
  .blog-hero p { font-size: 17px; line-height: 26px; }
  .post-index { padding-block: 58px 78px; }
  .post-index-heading { padding-bottom: 18px; }
  .post-index-heading h2 { font-size: 20px; line-height: 26px; }
  .post-row { min-height: 0; grid-template-columns: 32px minmax(0, 1fr) 40px; grid-template-rows: auto auto auto auto; column-gap: 12px; row-gap: 11px; padding: 28px 0; }
  .post-row-number { grid-row: 1 / span 4; align-self: start; }
  .post-row-meta { grid-column: 2; grid-row: 1; }
  .post-row h3 { grid-column: 2; grid-row: 2; font-size: 26px; line-height: 30px; }
  .post-row p { grid-column: 2; grid-row: 3; font-size: 14px; line-height: 22px; }
  .post-row time { grid-column: 2; grid-row: 4; justify-self: start; text-align: left; }
  .post-row-arrow { grid-column: 3; grid-row: 1 / span 4; width: 38px; height: 38px; font-size: 17px; }

  .site-footer { align-items: center; flex-direction: column; gap: 14px; padding: 28px 18px 38px; }
  .footer-brand-copy span { display: none; }
  .footer-links { gap: 18px; font-size: 10px; line-height: 12px; }
}

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