:root {
  color-scheme: light;
  --blue: #1268ff;
  --blue-bright: #1d82ff;
  --blue-soft: #dce9ff;
  --navy: #061b41;
  --navy-2: #0a2456;
  --ink: #0a1427;
  --ink-soft: #465269;
  --paper: #f4f1ea;
  --paper-light: #fbfaf6;
  --white: #ffffff;
  --line: rgba(10, 20, 39, 0.16);
  --display: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.74 var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid #ffcb4b;
  outline-offset: 4px;
}

/* Shared article pages */
body:not(.blog-index) main {
  width: 100%;
  padding-bottom: 112px;
}

body:not(.blog-index) main > nav {
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding-inline: max(32px, calc((100vw - 1240px) / 2));
  color: var(--ink-soft);
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  font-size: 14px;
  font-weight: 650;
}

body:not(.blog-index) main > nav a {
  position: relative;
  transition: color 180ms ease;
}

body:not(.blog-index) main > nav a:hover { color: var(--blue); }

body:not(.blog-index) main > nav a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

body:not(.blog-index) main > nav a:first-child::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: url("/assets/bloop-icon.png") center / cover no-repeat;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 108, 255, 0.22);
}

body:not(.blog-index) article {
  position: relative;
  width: var(--shell);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 122px) 0 0;
  border: 0;
  background: transparent;
}

body:not(.blog-index) article::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: clamp(92px, 10vw, 138px);
  right: 24px;
  width: clamp(190px, 20vw, 250px);
  aspect-ratio: 1206 / 2622;
  background: #020815 url("/assets/product/iphone-overview-real.png") center top / 100% auto no-repeat;
  border: 7px solid #020815;
  border-radius: clamp(32px, 3.2vw, 48px);
  box-shadow: 0 34px 80px rgba(6, 27, 65, 0.26);
  transform: rotate(1.25deg);
  animation: article-device-in 900ms 180ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

body:not(.blog-index) article::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 76px;
  right: -150px;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 104, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(18, 104, 255, 0.035), 0 0 0 144px rgba(18, 104, 255, 0.02);
}

body:not(.blog-index) article > * {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

body:not(.blog-index) .meta {
  margin: 0 0 24px;
  padding-top: 15px;
  color: var(--blue);
  border-top: 2px solid var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
  animation: article-copy-in 650ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

body:not(.blog-index) h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.7vw, 92px);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
  animation: article-copy-in 720ms 70ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

body:not(.blog-index) .lead {
  max-width: 720px;
  margin: 30px 0 58px;
  padding-bottom: 34px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.5;
  text-wrap: pretty;
  animation: article-copy-in 720ms 140ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

body:not(.blog-index) article p,
body:not(.blog-index) article li {
  color: var(--ink-soft);
}

body:not(.blog-index) article p { margin: 0 0 22px; }

body:not(.blog-index) article ul,
body:not(.blog-index) article ol {
  margin: 0 0 30px;
  padding-left: 1.35em;
}

body:not(.blog-index) article li { margin: 0 0 10px; padding-left: 0.3em; }
body:not(.blog-index) article li::marker { color: var(--blue); font-weight: 800; }
body:not(.blog-index) article strong { color: var(--ink); }

body:not(.blog-index) article a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(18, 104, 255, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

body:not(.blog-index) article a:hover {
  color: var(--navy);
  text-decoration-color: currentColor;
}

body:not(.blog-index) h2 {
  margin: 68px 0 18px;
  font-family: var(--display);
  font-size: clamp(31px, 3.5vw, 45px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

body:not(.blog-index) h3 {
  margin: 38px 0 12px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

body:not(.blog-index) .callout {
  margin: 38px 0;
  padding: 4px 0 4px 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-left: 5px solid var(--blue);
  border-radius: 0;
  font-size: 19px;
}

body:not(.blog-index) .related {
  max-width: 820px;
  margin-top: 82px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 0 38px 38px 38px;
}

body:not(.blog-index) .related h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(29px, 3vw, 38px);
}

body:not(.blog-index) .related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.blog-index) .related li {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body:not(.blog-index) .related a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #d9e9ff;
  text-decoration: none;
}

body:not(.blog-index) .related a::after {
  content: "↗";
  color: #74adff;
  transition: transform 180ms ease;
}

body:not(.blog-index) .related a:hover { color: var(--white); }
body:not(.blog-index) .related a:hover::after { transform: translate(3px, -3px); }

body:not(.blog-index) code {
  padding: 0.12em 0.32em;
  color: var(--navy);
  background: var(--blue-soft);
  border-radius: 4px;
  font: 0.92em var(--mono);
}

/* Blog index */
.blog-index { background: var(--paper); }

.blog-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.blog-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 241, 234, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 40px rgba(6, 27, 65, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.blog-nav {
  width: var(--shell);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}

.blog-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.blog-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 108, 255, 0.24);
}

.blog-nav > a:not(.blog-brand):not(.blog-download) {
  opacity: 0.75;
  transition: opacity 160ms ease;
}

.blog-nav > a:not(.blog-brand):not(.blog-download):hover { opacity: 1; }

.blog-download {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding-inline: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.blog-header.is-scrolled .blog-download {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

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

.blog-main { width: 100%; }

.blog-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 36%, rgba(29, 130, 255, 0.42), transparent 25%),
    radial-gradient(circle at 50% 110%, rgba(18, 104, 255, 0.3), transparent 36%),
    linear-gradient(135deg, #04132f 0%, var(--navy) 54%, #071f50 100%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

.blog-hero::after {
  content: "";
  position: absolute;
  top: -38vw;
  right: -14vw;
  width: 76vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  transform: translateY(calc(var(--blog-scroll, 0) * -0.06px));
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: 88svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding: calc(var(--header-height) + 68px) 0 76px;
}

.blog-eyebrow,
.cluster-kicker,
.library-kicker,
.blog-visual-label {
  margin: 0;
  font: 750 10px/1.4 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8cbff;
  animation: blog-copy-in 720ms 80ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.blog-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #6aabff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(106, 171, 255, 0.14);
}

.blog-hero h1 {
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: clamp(70px, 9.4vw, 138px);
  font-weight: 830;
  letter-spacing: -0.07em;
  line-height: 0.84;
  animation: blog-copy-in 820ms 150ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.blog-hero h1 span {
  display: block;
  margin-top: 20px;
  color: #a8cbff;
  font-size: 0.58em;
  line-height: 0.96;
}

.blog-hero .lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  animation: blog-copy-in 820ms 240ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.blog-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  animation: blog-copy-in 820ms 320ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.blog-primary-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding-inline: 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  font-weight: 750;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-primary-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.blog-secondary-link {
  padding-block: 8px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.blog-hero-visual {
  position: relative;
  min-height: min(720px, calc(88svh - 110px));
  margin: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.blog-device-shell {
  position: relative;
  z-index: 2;
  width: clamp(250px, 24vw, 342px);
  overflow: hidden;
  background: #020815;
  border: 9px solid #020815;
  border-radius: clamp(42px, 4vw, 58px);
  box-shadow: 0 38px 86px rgba(0, 5, 24, 0.52);
  transform: rotate(1.5deg);
  animation: blog-device-in 1050ms 180ms both cubic-bezier(0.18, 0.78, 0.18, 1), blog-device-float 6s 1.4s infinite ease-in-out;
}

.blog-device-shell img { width: 100%; height: auto; }

.blog-visual-label {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 15%;
  padding: 9px 12px;
  color: #d9e9ff;
  background: rgba(3, 8, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.blog-visual-note {
  position: absolute;
  z-index: 3;
  top: 24%;
  left: -4%;
  width: 188px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 17px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: rotate(-7deg);
  animation: blog-note-in 760ms 620ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

.blog-visual-note span {
  display: block;
  color: var(--blue);
  font: 750 9px/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-visual-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.featured-cluster {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 120px);
  padding-block: clamp(100px, 12vw, 170px);
}

.cluster-copy { align-self: start; }
.cluster-kicker, .library-kicker { color: var(--blue); }

.featured-cluster h2,
.library-heading h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-wrap: balance;
}

.cluster-intro {
  max-width: 460px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.cluster-note {
  max-width: 440px;
  margin: 28px 0 0;
  color: #6b7587;
  font-size: 12px;
}

.cluster-grid {
  counter-reset: cluster;
  border-top: 1px solid var(--ink);
}

.cluster-card {
  counter-increment: cluster;
  min-height: 126px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: color 190ms ease, padding 190ms ease, background 190ms ease;
}

.cluster-card::after {
  content: "↗";
  font-size: 22px;
  transition: transform 190ms ease;
}

.cluster-number {
  align-self: start;
  padding-top: 7px;
  color: var(--blue);
  font: 750 9px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cluster-title {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.cluster-card:hover {
  padding-inline: 18px;
  color: var(--white);
  background: var(--blue);
}

.cluster-card:hover .cluster-number { color: #d8e8ff; }
.cluster-card:hover::after { transform: translate(4px, -4px); }

.library-section {
  padding-block: clamp(96px, 11vw, 154px);
  background: var(--paper-light);
}

.library-shell { width: var(--shell); margin: 0 auto; }

.library-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.library-heading h2 { max-width: 750px; }

.library-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.post-list {
  counter-reset: posts;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 7vw, 100px);
}

.blog-index .post-list article {
  counter-increment: posts;
  position: relative;
  min-height: 254px;
  padding: 26px 48px 34px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.blog-index .post-list article::before {
  content: counter(posts, decimal-leading-zero);
  position: absolute;
  top: 30px;
  right: 0;
  color: #8d96a5;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.blog-index .post-list .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #798396;
  font: 700 9px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag {
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  padding: 0;
  font: inherit;
}

.tag::before { content: "· "; color: #9ba3af; }

.blog-index .post-list h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 790;
  letter-spacing: -0.048em;
  line-height: 1.04;
  text-wrap: balance;
}

.blog-index .post-list h2 a { transition: color 170ms ease; }
.blog-index .post-list h2 a:hover { color: var(--blue); }

.blog-index .post-list article > p {
  margin: 17px 0 24px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.blog-index .post-list article > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.blog-index .post-list article > a:last-child::after {
  content: "↗";
  transition: transform 170ms ease;
}

.blog-index .post-list article > a:last-child:hover::after { transform: translate(3px, -3px); }

.blog-footer {
  min-height: 240px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 60px 32px;
  color: rgba(255, 255, 255, 0.58);
  background: #020815;
  text-align: center;
}

.blog-footer p { max-width: 620px; margin: 0; }
.blog-footer a { color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.35); }

.blog-has-js .blog-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.blog-has-js .blog-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blog-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blog-device-in {
  from { opacity: 0; transform: translateY(54px) rotate(6deg) scale(0.88); }
  to { opacity: 1; transform: translateY(0) rotate(1.5deg) scale(1); }
}

@keyframes blog-device-float {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-11px) rotate(0.7deg); }
}

@keyframes blog-note-in {
  from { opacity: 0; transform: translate(-34px, 26px) rotate(-12deg) scale(0.86); }
  to { opacity: 1; transform: translate(0, 0) rotate(-7deg) scale(1); }
}

@keyframes article-copy-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes article-device-in {
  from { opacity: 0; transform: translate(46px, 30px) rotate(7deg) scale(0.88); }
  to { opacity: 1; transform: translate(0, 0) rotate(1.25deg) scale(1); }
}

@media (max-width: 1020px) {
  :root { --shell: min(860px, calc(100vw - 48px)); }

  body:not(.blog-index) article::before,
  body:not(.blog-index) article::after { display: none; }

  body:not(.blog-index) article > * { max-width: 790px; }

  .blog-hero-inner { grid-template-columns: 1fr; padding-bottom: 100px; }
  .blog-hero-copy { max-width: 760px; padding-top: 56px; }
  .blog-hero-visual { min-height: 620px; }
  .blog-device-shell { width: min(330px, 52vw); }
  .blog-visual-note { left: 8%; }
  .blog-visual-label { right: 10%; }

  .featured-cluster { grid-template-columns: 1fr; }
  .cluster-copy { max-width: 680px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 32px); --header-height: 68px; }
  body { font-size: 16px; }

  body:not(.blog-index) main > nav {
    min-height: var(--header-height);
    gap: 16px;
    padding-inline: 16px;
    font-size: 12px;
  }

  body:not(.blog-index) main > nav a:first-child { font-size: 0; }
  body:not(.blog-index) main > nav a:first-child::before { width: 36px; height: 36px; flex-basis: 36px; }

  body:not(.blog-index) article { padding-top: 60px; }
  body:not(.blog-index) h1 { font-size: clamp(46px, 14vw, 66px); }
  body:not(.blog-index) .lead { margin-top: 24px; margin-bottom: 44px; font-size: 20px; }
  body:not(.blog-index) h2 { margin-top: 54px; font-size: 32px; }
  body:not(.blog-index) .related { margin-top: 64px; border-radius: 0 24px 24px 24px; }

  .blog-nav { gap: 16px; }
  .blog-nav > a:not(.blog-brand):not(.blog-download) { display: none; }
  .blog-download { min-height: 40px; padding-inline: 13px; font-size: 12px; }

  .blog-hero { min-height: auto; }
  .blog-hero-inner { min-height: auto; gap: 44px; padding: calc(var(--header-height) + 60px) 0 82px; }
  .blog-hero-copy { padding-top: 0; }
  .blog-hero h1 { font-size: clamp(68px, 22vw, 94px); }
  .blog-hero h1 span { margin-top: 15px; font-size: 0.52em; }
  .blog-hero .lead { font-size: 17px; }
  .blog-hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .blog-primary-link { width: 100%; justify-content: center; }
  .blog-hero-visual { min-height: 540px; }
  .blog-device-shell { width: min(265px, 72vw); border-width: 7px; border-radius: 44px; }
  .blog-visual-note { top: 26%; left: -2%; width: 150px; padding: 13px; }
  .blog-visual-note strong { font-size: 16px; }
  .blog-visual-label { right: 0; bottom: 12%; font-size: 8px; }

  .featured-cluster { gap: 54px; padding-block: 94px; }
  .featured-cluster h2, .library-heading h2 { font-size: clamp(48px, 14vw, 66px); }
  .cluster-card { min-height: 112px; grid-template-columns: 34px 1fr 20px; gap: 10px; }
  .cluster-title { font-size: 27px; }
  .cluster-card:hover { padding-inline: 10px; }

  .library-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 54px; }
  .post-list { grid-template-columns: 1fr; }
  .blog-index .post-list article { min-height: 0; padding: 26px 42px 38px 0; }
  .blog-index .post-list h2 { font-size: 31px; }
}

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