:root {
  color-scheme: dark;
  --bg: #050d16;
  --bg-elevated: #08131f;
  --surface: #0a1724;
  --surface-2: #0d1c2c;
  --surface-3: #102235;
  --text: #f3f7fa;
  --text-soft: #c9d5df;
  --muted: #8da1b2;
  --muted-strong: #a9b9c6;
  --line: rgba(139, 181, 211, 0.15);
  --line-strong: rgba(139, 181, 211, 0.26);
  --blue: #42baf3;
  --blue-bright: #74d1ff;
  --blue-faint: rgba(66, 186, 243, 0.1);
  --orange: #ff7900;
  --orange-bright: #ff9b3f;
  --orange-faint: rgba(255, 121, 0, 0.1);
  --green: #57d58c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --header-bg: rgba(5, 13, 22, 0.78);
  --grid-color: rgba(102, 163, 202, 0.055);
  --section-width: 1240px;
  font-family:
    Inter, "SF Pro Display", "SF Pro Text", ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f9fb;
  --bg-elevated: #eef4f8;
  --surface: #ffffff;
  --surface-2: #f2f7fa;
  --surface-3: #e8f1f7;
  --text: #0a1824;
  --text-soft: #263a49;
  --muted: #5f7484;
  --muted-strong: #435b6c;
  --line: rgba(15, 65, 95, 0.12);
  --line-strong: rgba(15, 65, 95, 0.21);
  --blue: #078dca;
  --blue-bright: #007eb8;
  --blue-faint: rgba(20, 161, 224, 0.1);
  --orange: #ec6900;
  --orange-bright: #d65f00;
  --orange-faint: rgba(236, 105, 0, 0.1);
  --green: #14864a;
  --shadow: 0 26px 70px rgba(25, 67, 92, 0.14);
  --header-bg: rgba(246, 249, 251, 0.86);
  --grid-color: rgba(10, 94, 138, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  transition: color 220ms ease, background-color 220ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

body::after {
  position: absolute;
  top: -180px;
  left: 55%;
  z-index: -1;
  width: 760px;
  height: 640px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(52, 174, 233, 0.12), transparent 66%);
  transform: translateX(-20%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(66, 186, 243, 0.54);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  color: #06101a;
  background: var(--blue-bright);
  transform: translateY(-150%);
}

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

.section-shell,
.nav-shell {
  width: min(var(--section-width), calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 46px;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  align-items: center;
  width: 126px;
  height: 45px;
  border-radius: 7px;
  background: #030c15;
}

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

nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 36px);
  align-items: center;
  justify-content: flex-end;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 650;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--text);
}

.nav-current {
  color: var(--text);
}

.nav-current::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.github-nav {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
}

.github-nav:hover {
  background: var(--blue-faint);
}

.github-nav svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease;
}

.theme-toggle:hover {
  border-color: rgba(66, 186, 243, 0.52);
  transform: translateY(-1px);
}

.theme-icon {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  font-size: 1.12rem;
  transition: opacity 180ms ease, transform 220ms ease;
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-50deg) scale(0.65);
}

:root[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(50deg) scale(0.65);
}

:root[data-theme="light"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.header-cta {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 9px;
  color: #1b0b00;
  background: var(--orange);
  font-size: 0.82rem;
  font-weight: 760;
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: #ff8c22;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: clamp(50px, 6vw, 90px);
  align-items: center;
  min-height: auto;
  padding-block: 80px 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-copy > h1 {
  margin-top: 0;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 17px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 690px;
  margin: 26px 0 25px;
  font-size: clamp(3.35rem, 4.7vw, 5rem);
  font-weight: 740;
  line-height: 0.97;
  letter-spacing: -0.058em;
}

h1 span {
  display: block;
}

.hero-title-main {
  color: var(--text);
}

.hero-title-accent {
  margin-top: 0.14em;
  color: var(--blue-bright);
  font-size: 0.83em;
  line-height: 1.02;
}

.hero-title-accent em {
  color: var(--orange-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  gap: 17px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 760;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #1b0b00;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(255, 121, 0, 0.15);
}

.button-primary:hover {
  background: #ff8c22;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--text-soft);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: rgba(66, 186, 243, 0.48);
  background: var(--surface-2);
}

.github-mark {
  color: var(--blue);
}

.hero-note {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-glow {
  position: absolute;
  inset: 12% 3% 2% 12%;
  z-index: -1;
  border-radius: 40%;
  background: radial-gradient(circle at 45% 40%, rgba(58, 185, 246, 0.17), transparent 58%);
  filter: blur(25px);
}

.terminal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-2) 96%, transparent), var(--surface));
  box-shadow: var(--shadow);
}

.terminal-card::before {
  position: absolute;
  top: 0;
  left: 8%;
  width: 76%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.terminal-bar {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  min-height: 49px;
  padding-inline: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.66rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
}

.window-dots i:first-child {
  background: var(--orange);
}

.terminal-state {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--muted-strong);
}

.terminal-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px color-mix(in srgb, var(--green) 45%, transparent);
}

.command-line {
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 64px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--blue-faint) 38%, transparent);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(0.68rem, 1.05vw, 0.78rem);
}

.prompt {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 750;
}

.command-line code {
  overflow: hidden;
  color: var(--text-soft);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.run-steps {
  padding: 8px 20px;
  margin: 0;
  list-style: none;
}

.run-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 30px 31px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.run-steps li:last-child {
  border-bottom: 0;
}

.run-steps li:not(:last-child)::after {
  position: absolute;
  bottom: -5px;
  left: 43px;
  z-index: 2;
  width: 1px;
  height: 11px;
  content: "";
  background: var(--line-strong);
}

.run-index,
.run-label,
.run-meta {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.run-index {
  color: var(--muted);
  font-size: 0.62rem;
}

.run-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 36%, transparent);
  border-radius: 7px;
  color: var(--blue-bright);
  background: var(--blue-faint);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 780;
}

.run-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.run-steps strong {
  display: block;
  color: var(--text-soft);
  font-size: 0.79rem;
  font-weight: 650;
}

.run-meta {
  color: var(--muted);
  font-size: 0.58rem;
}

.is-alert .run-icon {
  border-color: color-mix(in srgb, var(--orange) 48%, transparent);
  color: var(--orange-bright);
  background: var(--orange-faint);
}

.is-confirmed .run-icon {
  border-color: color-mix(in srgb, var(--green) 45%, transparent);
  color: var(--green);
  background: color-mix(in srgb, var(--green) 9%, transparent);
}

.is-confirmed .run-meta {
  color: var(--green);
}

.terminal-result {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 67px;
  padding-inline: 20px;
  border-top: 1px solid color-mix(in srgb, var(--orange) 28%, transparent);
  background: var(--orange-faint);
}

.result-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--orange) 45%, transparent);
  border-radius: 50%;
  color: var(--orange-bright);
}

.terminal-result div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--orange-bright);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.terminal-result strong {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 620;
}

.float-card {
  position: absolute;
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding-inline: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.57rem;
}

.float-card span {
  color: var(--blue);
}

.float-card strong {
  color: var(--text-soft);
  font-size: 0.64rem;
}

.float-card-model {
  top: 25%;
  right: -31px;
}

.float-card-bug {
  right: 34px;
  bottom: -22px;
}

.float-card-bug span {
  color: var(--orange);
}

/* Specula's hero illustration replaces the earlier terminal mockup. */
.hero-visual {
  display: grid;
  width: min(100%, 650px);
  min-width: 0;
  margin: 0;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 13% 9% 8% 11%;
  z-index: -2;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, var(--blue-faint), transparent 62%),
    color-mix(in srgb, var(--surface) 42%, transparent);
}

.hero-visual::after {
  position: absolute;
  inset: 20% 16% 15% 18%;
  z-index: -1;
  border: 1px dashed color-mix(in srgb, var(--blue) 22%, transparent);
  border-radius: 50%;
  content: "";
  animation: orbit-spin 36s linear infinite;
}

.hero-visual > img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 22px color-mix(in srgb, var(--blue) 8%, transparent));
}

.hero-visual .visual-glow {
  inset: 18% 6% 10% 10%;
  z-index: -3;
  border-radius: 45%;
  background: radial-gradient(circle at 52% 46%, rgba(58, 185, 246, 0.2), transparent 64%);
  filter: blur(30px);
}

.illustration-label {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.illustration-label span {
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.5rem;
}

.illustration-label strong {
  color: var(--text-soft);
  font-size: 0.62rem;
  font-weight: 680;
}

.label-code {
  top: 9%;
  left: 0;
}

.label-spec {
  bottom: 12%;
  left: 28%;
}

.label-check {
  top: 3%;
  right: 0;
}

.label-bug {
  right: 1%;
  bottom: 2%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signal-strip {
  padding-block: 20px 72px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 32%, transparent);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 58px);
}

.signal-grid > article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 286px;
  padding: 35px 25px 31px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.signal-grid > article:hover {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 118px;
  height: 108px;
  margin-bottom: 23px;
  place-items: center;
}

.feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
}

.signal-copy h2 {
  margin: 0 0 15px;
  color: var(--text);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.signal-copy p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.68;
}

.value-section,
.outcomes-section,
.start-section {
  padding-block: 136px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.outcomes-copy h2,
.start-copy h2,
.closing-section h2 {
  margin: 20px 0 0;
  font-size: clamp(2.45rem, 4.1vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.section-heading > p,
.outcomes-copy > p,
.start-copy > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.72;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.value-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 65px;
  align-items: center;
  min-height: 430px;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.64rem;
}

.card-copy {
  position: relative;
  z-index: 2;
  align-self: end;
}

.value-card-wide .card-copy {
  align-self: center;
  padding-right: 34px;
}

.card-copy > p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.card-copy h3 {
  max-width: 490px;
  margin: 0 0 15px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.13;
  letter-spacing: -0.032em;
}

.card-copy > span {
  display: block;
  max-width: 540px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.68;
}

.code-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 230px;
  padding: 22px;
}

.code-file,
.model-file {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 28px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--bg-elevated);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.13);
}

.code-file span,
.model-file i {
  display: block;
  height: 5px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--blue) 38%, transparent);
}

.code-file span:nth-child(2),
.code-file span:nth-child(5),
.model-file i:nth-of-type(2) {
  width: 64%;
}

.code-file span:nth-child(3) {
  width: 82%;
  background: color-mix(in srgb, var(--orange) 46%, transparent);
}

.model-file b {
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}

.map-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-lines i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.map-lines i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

.state-space {
  position: relative;
  width: 290px;
  height: 245px;
  margin: 13px auto 0;
}

.state-space::before,
.state-space::after {
  position: absolute;
  inset: 32px 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.state-space::after {
  inset: 64px 70px;
}

.state-space span {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--surface-2);
  box-shadow: 0 0 16px color-mix(in srgb, var(--blue) 28%, transparent);
}

.state-space span:nth-child(1) { top: 22px; left: 137px; }
.state-space span:nth-child(2) { top: 56px; left: 65px; }
.state-space span:nth-child(3) { top: 70px; right: 50px; }
.state-space span:nth-child(4) { top: 116px; left: 122px; }
.state-space span:nth-child(5) { top: 127px; right: 22px; }
.state-space span:nth-child(6) { bottom: 57px; left: 48px; }
.state-space span:nth-child(7) { bottom: 30px; left: 138px; }
.state-space span:nth-child(8) { right: 67px; bottom: 67px; }
.state-space span:nth-child(9) {
  top: 106px;
  left: 186px;
  border-color: var(--orange);
  box-shadow: 0 0 24px color-mix(in srgb, var(--orange) 48%, transparent);
}

.state-space i {
  position: absolute;
  top: 92px;
  left: 64px;
  width: 164px;
  height: 82px;
  border-top: 1px solid color-mix(in srgb, var(--blue) 45%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--orange) 50%, transparent);
  transform: skew(-25deg) rotate(11deg);
}

.trace-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: min(390px, 86%);
  margin: 31px auto 0;
  padding: 24px 25px 25px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg-elevated);
}

.trace-visual div {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 12px;
  align-items: center;
}

.trace-visual span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
}

.trace-visual i {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--line-strong));
}

.trace-visual b {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 500;
}

.trace-visual div:nth-child(3) span,
.trace-visual div:nth-child(3) b {
  color: var(--orange);
}

.trace-visual div:nth-child(3) i {
  background: linear-gradient(90deg, var(--orange), var(--line-strong));
}

.trace-visual em {
  position: absolute;
  right: 18px;
  bottom: -15px;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--orange) 40%, transparent);
  border-radius: 7px;
  color: var(--orange-bright);
  background: var(--surface);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.57rem;
  font-style: normal;
}

.workflow-section {
  padding-block: 132px 142px;
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
}

.section-heading-centered {
  grid-template-columns: 1.15fr 0.65fr;
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.workflow-track::before {
  position: absolute;
  top: 74px;
  right: 12%;
  left: 12%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue), var(--orange));
}

.workflow-step {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 38px 27px 28px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.step-id {
  position: absolute;
  top: 23px;
  right: 22px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
}

.step-symbol {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 37px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 45%, transparent);
  border-radius: 50%;
  color: var(--blue-bright);
  background: var(--surface);
  box-shadow: 0 0 0 9px var(--surface);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.92rem;
}

.step-symbol-orange {
  border-color: color-mix(in srgb, var(--orange) 50%, transparent);
  color: var(--orange-bright);
}

.workflow-step h3 {
  margin: 0 0 13px;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.workflow-step p {
  min-height: 93px;
  margin: 0 0 26px;
  color: var(--muted-strong);
  font-size: 0.81rem;
  line-height: 1.65;
}

.artifact {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, transparent);
  border-radius: 6px;
  color: var(--blue);
  background: var(--blue-faint);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
}

.artifact-orange {
  border-color: color-mix(in srgb, var(--orange) 25%, transparent);
  color: var(--orange-bright);
  background: var(--orange-faint);
}

.outcomes-panel {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding: clamp(48px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 0 0, var(--blue-faint), transparent 35%),
    linear-gradient(145deg, var(--surface-2), var(--surface));
}

.outcomes-copy h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.7rem);
}

.outcomes-copy > p {
  margin-top: 23px;
}

.outcome-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 38%, transparent);
  color: var(--blue-bright);
  font-size: 0.82rem;
  font-weight: 680;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.outcome-list > div {
  min-height: 174px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-list > div:nth-child(2n) {
  border-right: 0;
}

.outcome-list > div:nth-child(n + 3) {
  border-bottom: 0;
}

.file-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent);
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-faint);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
}

.file-icon-orange {
  border-color: color-mix(in srgb, var(--orange) 40%, transparent);
  color: var(--orange);
  background: var(--orange-faint);
}

.outcome-list strong,
.outcome-list p {
  display: block;
}

.outcome-list strong {
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.outcome-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.start-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  padding-block: 118px 128px;
  border-top: 0;
}

.start-copy h2 {
  font-size: clamp(2.5rem, 3.85vw, 4rem);
}

.start-copy > p {
  margin-top: 24px;
}

.start-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.start-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  align-items: start;
}

.start-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent);
  border-radius: 50%;
  color: var(--blue-bright);
  background: var(--blue-faint);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 720;
}

.start-steps strong {
  display: block;
  margin: 1px 0 4px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.start-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.start-copy > .text-link {
  margin-top: 31px;
}

.start-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 31px;
}

.start-links .text-link {
  margin-top: 0;
}

.quickstart {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.builder-controls {
  padding-inline: 22px;
}

.builder-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.builder-row[hidden] {
  display: none;
}

.builder-label {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 680;
}

.builder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.builder-options button {
  min-height: 34px;
  padding-inline: 11px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted-strong);
  cursor: pointer;
  background: var(--surface);
  font-size: 0.65rem;
  font-weight: 630;
  transition:
    border-color 150ms ease,
    color 150ms ease,
    background-color 150ms ease,
    transform 150ms ease;
}

.builder-options button:hover {
  border-color: color-mix(in srgb, var(--blue) 45%, transparent);
  color: var(--text);
  transform: translateY(-1px);
}

.builder-options button[aria-pressed="true"] {
  border-color: var(--blue);
  color: #06111b;
  background: var(--blue-bright);
  box-shadow: 0 7px 18px color-mix(in srgb, var(--blue) 16%, transparent);
}

.builder-options button[data-builder-source="keep"][aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange);
}

.command-output {
  border-top: 1px solid var(--line);
}

.command-output-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  padding-inline: 22px 14px;
  color: var(--text-soft);
  background: var(--surface-2);
  font-size: 0.75rem;
  font-weight: 680;
}

.command-copy {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 31px;
  padding-inline: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--muted-strong);
  cursor: pointer;
  background: var(--surface);
  font-size: 0.61rem;
}

.command-copy:hover {
  border-color: color-mix(in srgb, var(--blue) 48%, transparent);
  color: var(--text);
}

.command-output pre {
  min-height: 154px;
  padding: 24px 22px;
  margin: 0;
  overflow: auto;
  color: var(--text-soft);
  background:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    color-mix(in srgb, var(--bg) 72%, var(--surface));
  background-size: 100% 28px;
}

.command-output code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.85;
  white-space: pre;
}

.builder-help {
  min-height: 51px;
  padding: 16px 22px;
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

.support-section {
  padding-block: 120px 132px;
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
}

.support-heading {
  max-width: 780px;
  margin: 0 auto 62px;
  text-align: center;
}

.support-heading .eyebrow {
  justify-content: center;
}

.support-heading h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.support-heading > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin-inline: auto;
}

.support-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.support-card-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}

.support-card-heading p {
  margin: 0 0 5px;
  color: var(--blue);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.support-card-heading h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.support-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 32%, transparent);
  border-radius: 12px;
  color: var(--blue-bright);
  background: var(--blue-faint);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 1rem;
}

.support-symbol-orange {
  border-color: color-mix(in srgb, var(--orange) 34%, transparent);
  color: var(--orange);
  background: var(--orange-faint);
}

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

.support-items > div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 61px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  transition: border-color 170ms ease, transform 170ms ease;
}

.support-items > div:hover {
  border-color: color-mix(in srgb, var(--blue) 42%, transparent);
  transform: translateY(-2px);
}

.support-items span {
  display: grid;
  min-width: 31px;
  height: 31px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 7px;
  color: var(--blue-bright);
  background: var(--blue-faint);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.55rem;
  font-weight: 720;
}

.models-list span {
  color: var(--orange-bright);
  background: var(--orange-faint);
}

.support-items strong {
  overflow: hidden;
  color: var(--text-soft);
  font-size: 0.77rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-note {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.support-note a {
  color: var(--blue);
}

.bug-list-section {
  padding-block: 112px 46px;
}

.bug-placeholder {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0, var(--orange-faint), transparent 26%),
    radial-gradient(circle at 0 100%, var(--blue-faint), transparent 32%),
    linear-gradient(145deg, var(--surface-2), var(--surface));
}

.bug-placeholder-copy h2,
.cite-copy h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.2rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.bug-placeholder-copy > p,
.cite-copy > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.7;
}

.bug-placeholder-table {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
}

.placeholder-row {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 0.75fr;
  gap: 20px;
  align-items: center;
  min-height: 59px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--line);
}

.placeholder-row:last-child {
  border-bottom: 0;
}

.placeholder-head {
  min-height: 44px;
  color: var(--muted);
  background: var(--surface-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.placeholder-row i {
  display: block;
  width: 76%;
  height: 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 24%, transparent);
}

.placeholder-row i:nth-child(2) {
  width: 92%;
  background: color-mix(in srgb, var(--text-soft) 12%, transparent);
}

.placeholder-row b {
  color: var(--orange-bright);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.55rem;
  font-weight: 560;
}

.coming-soon {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--orange) 35%, transparent);
  border-radius: 999px;
  color: var(--orange-bright);
  background: var(--orange-faint);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cite-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(58px, 9vw, 130px);
  align-items: center;
  padding-block: 112px 126px;
}

.bibtex-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bibtex-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 16px 11px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bib-copy {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 31px;
  padding-inline: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--muted-strong);
  cursor: pointer;
  background: var(--surface);
  font-size: 0.58rem;
  text-transform: none;
}

.bib-copy:hover {
  border-color: color-mix(in srgb, var(--blue) 48%, transparent);
  color: var(--text);
}

.bibtex-card pre {
  padding: 24px;
  margin: 0;
  overflow: auto;
  color: var(--text-soft);
  background:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    var(--surface);
  background-size: 100% 27px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  line-height: 1.72;
  tab-size: 2;
}

.bibtex-card code {
  font: inherit;
}

.closing-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  margin: 100px auto;
  padding: clamp(48px, 6vw, 76px);
  overflow: hidden;
  border-radius: 17px;
  color: #06111b;
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 255, 255, 0.3), transparent 25%),
    linear-gradient(120deg, #32aee8, #70d2ff 58%, #ff8a1d 140%);
}

.closing-section p {
  margin: 0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-section h2 {
  max-width: 690px;
  margin-top: 15px;
  color: #06111b;
}

.contact-copy {
  display: block;
  max-width: 650px;
  margin-top: 20px;
  color: rgba(6, 17, 27, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.button-inverse {
  flex: 0 0 auto;
  margin-left: 50px;
  border-color: rgba(3, 16, 27, 0.15);
  color: #f4f9fc;
  background: #07131e;
  box-shadow: 0 14px 32px rgba(5, 18, 29, 0.18);
}

.button-inverse:hover {
  background: #0d2131;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-block: 68px 60px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 50px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 0.72rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.71rem;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
}

.blog-main {
  min-height: 70vh;
}

.blog-hero {
  padding-block: 112px 82px;
  text-align: center;
}

.blog-hero .eyebrow {
  justify-content: center;
}

.blog-hero h1 {
  max-width: 970px;
  margin: 25px auto 23px;
  font-size: clamp(3.4rem, 6vw, 6.35rem);
  line-height: 0.98;
}

.blog-lede {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.featured-writing {
  padding-bottom: 120px;
}

.featured-post {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.featured-art {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 55% 45%, rgba(66, 186, 243, 0.19), transparent 36%),
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
    var(--bg-elevated);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.featured-art::before,
.featured-art::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid color-mix(in srgb, var(--blue) 25%, transparent);
  border-radius: 50%;
  content: "";
}

.featured-art::after {
  width: 280px;
  height: 280px;
  border-style: dashed;
  opacity: 0.55;
}

.art-brace {
  position: relative;
  z-index: 2;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 5.1rem;
  font-weight: 400;
}

.art-spec {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 150px;
  padding: 25px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
  transform: rotate(-3deg);
}

.art-spec > i {
  display: block;
  width: 82%;
  height: 5px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--blue) 55%, transparent);
}

.art-spec > i:nth-child(2) {
  width: 58%;
}

.art-spec > i:nth-child(3) {
  width: 72%;
  background: color-mix(in srgb, var(--orange) 62%, transparent);
}

.art-spec > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}

.art-spec > div::before,
.art-spec > div::after {
  position: absolute;
  top: 50%;
  right: 13px;
  left: 13px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.art-spec b {
  z-index: 2;
  width: 15px;
  height: 15px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--surface);
}

.art-spec b:last-child {
  border-color: var(--orange);
}

.featured-art em {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 75px);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-kind {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid color-mix(in srgb, var(--orange) 38%, transparent);
  border-radius: 999px;
  color: var(--orange-bright);
  background: var(--orange-faint);
}

.featured-copy h2 {
  max-width: 690px;
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.featured-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.72;
}

.post-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.post-footer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-footer strong {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.post-footer div span {
  color: var(--muted);
  font-size: 0.66rem;
}

.post-footer > a,
.coverage-source a {
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 680;
  white-space: nowrap;
}

.coverage-section {
  padding-block: 115px 125px;
  border-block: 1px solid var(--line);
}

.coverage-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.coverage-heading h2 {
  margin: 20px 0 16px;
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.coverage-heading > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.coverage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.coverage-card:hover {
  border-color: color-mix(in srgb, var(--blue) 40%, transparent);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.coverage-index {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.59rem;
}

.coverage-card h3 {
  max-width: 520px;
  margin: 0 0 15px;
  padding-right: 25px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.coverage-card > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.68;
}

.coverage-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.coverage-source strong {
  color: var(--text-soft);
  font-size: 0.75rem;
}

.submit-writing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 260px;
  margin-block: 95px;
  padding: clamp(42px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background:
    radial-gradient(circle at 90% 10%, var(--orange-faint), transparent 25%),
    radial-gradient(circle at 0 100%, var(--blue-faint), transparent 32%),
    var(--surface);
}

.submit-writing p {
  margin: 0;
  color: var(--orange-bright);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.submit-writing h2 {
  max-width: 650px;
  margin: 13px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  nav a:nth-child(-n + 2) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 72px 24px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .float-card-model {
    right: -22px;
  }

  .section-heading {
    grid-template-columns: 1fr 0.7fr;
  }

  .workflow-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-track::before {
    display: none;
  }

  .workflow-step:nth-child(2) {
    border-right: 0;
  }

  .workflow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .outcomes-panel,
  .start-section {
    grid-template-columns: 1fr;
  }

  .outcomes-copy,
  .start-copy {
    max-width: 720px;
  }

  nav a:nth-child(-n + 2) {
    display: inline-flex;
  }
}

@media (min-width: 840px) and (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
    gap: clamp(28px, 4vw, 46px);
    padding-block: 68px 18px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-visual {
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .bug-placeholder,
  .cite-section {
    grid-template-columns: 1fr;
  }

  .bug-placeholder-copy,
  .cite-copy {
    max-width: 680px;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-art {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body::after {
    left: 0;
    width: 100%;
    transform: none;
  }

  .section-shell,
  .nav-shell {
    width: min(100% - 36px, var(--section-width));
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: 70px;
  }

  .brand {
    width: 105px;
    height: 39px;
  }

  nav {
    justify-content: flex-end;
  }

  nav a {
    display: none;
  }

  nav a:last-child {
    display: inline;
  }

  nav .github-nav {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero {
    gap: 56px;
    min-height: auto;
    padding-block: 72px 86px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    margin-left: 0;
  }

  .illustration-label {
    padding: 6px 8px;
  }

  .illustration-label strong {
    font-size: 0.55rem;
  }

  .label-spec {
    bottom: 9%;
    left: 20%;
  }

  .label-bug {
    right: 0;
    bottom: 0;
  }

  .float-card {
    display: none;
  }

  .terminal-bar {
    grid-template-columns: 64px 1fr auto;
    padding-inline: 12px;
  }

  .terminal-bar > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .command-line {
    padding-inline: 14px;
  }

  .run-steps {
    padding-inline: 13px;
  }

  .run-steps li {
    grid-template-columns: 27px 30px 1fr;
    min-height: 76px;
  }

  .run-meta {
    display: none;
  }

  .terminal-result {
    padding-inline: 14px;
  }

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

  .signal-grid > article,
  .signal-grid > article:first-child {
    min-height: 260px;
    padding: 32px 22px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 66%, transparent);
  }

  .signal-strip {
    padding-block: 50px 62px;
  }

  .signal-copy p {
    max-width: 36ch;
  }

  .value-section,
  .outcomes-section,
  .start-section {
    padding-block: 90px;
  }

  .section-heading,
  .section-heading-centered {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-bottom: 45px;
  }

  .section-heading h2,
  .outcomes-copy h2,
  .start-copy h2,
  .closing-section h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

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

  .value-card,
  .value-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 490px;
    padding: 24px;
  }

  .value-card-wide {
    gap: 15px;
  }

  .value-card-wide .card-copy {
    align-self: end;
    padding-right: 0;
  }

  .code-map {
    min-height: 210px;
    padding: 19px 0 0;
  }

  .code-file,
  .model-file {
    padding: 23px 15px;
  }

  .state-space {
    max-width: 100%;
  }

  .workflow-section {
    padding-block: 90px;
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step:nth-child(2) {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .workflow-step p {
    min-height: auto;
  }

  .outcomes-panel {
    gap: 50px;
    padding: 35px 23px;
  }

  .outcome-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-list > div,
  .outcome-list > div:nth-child(2n),
  .outcome-list > div:nth-child(n + 3) {
    min-height: 148px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-list > div:last-child {
    border-bottom: 0;
  }

  .start-section {
    gap: 55px;
  }

  .builder-controls {
    padding-inline: 16px;
  }

  .builder-row {
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: start;
    min-height: auto;
    padding-block: 16px;
  }

  .builder-options {
    justify-content: flex-start;
  }

  .command-output-heading {
    padding-inline: 16px 10px;
  }

  .command-output pre {
    min-height: 145px;
    padding: 20px 16px;
  }

  .command-output code {
    font-size: 0.66rem;
  }

  .builder-help {
    padding-inline: 16px;
  }

  .blog-hero {
    padding-block: 82px 62px;
  }

  .blog-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .featured-writing {
    padding-bottom: 88px;
  }

  .featured-art {
    min-height: 300px;
  }

  .featured-copy {
    padding: 34px 23px;
  }

  .post-footer,
  .coverage-source {
    align-items: flex-start;
    flex-direction: column;
  }

  .coverage-section {
    padding-block: 85px 92px;
  }

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

  .coverage-card {
    min-height: 315px;
    padding: 28px 23px;
  }

  .submit-writing {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    margin-block: 70px;
    padding: 38px 24px;
  }

  .submit-writing .button {
    width: 100%;
  }

  .support-section {
    padding-block: 88px 96px;
  }

  .support-heading {
    margin-bottom: 42px;
  }

  .support-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .support-card {
    padding: 25px 20px;
  }

  .bug-list-section {
    padding-block: 78px 28px;
  }

  .bug-placeholder {
    gap: 42px;
    padding: 54px 22px 28px;
  }

  .bug-placeholder-copy h2,
  .cite-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .placeholder-row {
    grid-template-columns: 0.8fr 1.1fr 0.8fr;
    gap: 10px;
    padding-inline: 12px;
  }

  .cite-section {
    gap: 44px;
    padding-block: 82px 94px;
  }

  .bibtex-card pre {
    padding: 19px 16px;
    font-size: 0.6rem;
  }

  .command-panel {
    min-height: 260px;
    padding: 53px 18px 24px;
  }

  .copy-button {
    top: 14px;
  }

  .command-row {
    font-size: 0.64rem;
  }

  .quickstart-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .closing-section {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    min-height: 380px;
    margin: 70px auto;
    padding: 40px 26px;
  }

  .button-inverse {
    width: 100%;
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .support-items {
    grid-template-columns: 1fr;
  }
}

/* Compact article index used by the Blog page. */
.blog-hero {
  padding-block: 92px 54px;
  text-align: left;
}

.blog-hero h1 {
  max-width: none;
  margin: 0 0 13px;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.blog-lede {
  max-width: 690px;
  margin: 0;
  font-size: 1rem;
}

.writing-section {
  padding-bottom: 118px;
}

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

.writing-card {
  display: flex;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.writing-card:hover {
  border-color: color-mix(in srgb, var(--blue) 42%, transparent);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.11);
  transform: translateY(-4px);
}

.writing-visual {
  position: relative;
  display: grid;
  min-height: 172px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
    var(--bg-elevated);
  background-size: 36px 36px;
}

.visual-metadata {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.visual-metadata > span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 3.2rem;
}

.visual-metadata > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  transform: rotate(-3deg);
}

.visual-metadata i {
  display: block;
  width: 82%;
  height: 4px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--blue) 60%, transparent);
}

.visual-metadata i:nth-child(2) {
  width: 56%;
}

.visual-metadata i:nth-child(3) {
  width: 70%;
  background: color-mix(in srgb, var(--orange) 65%, transparent);
}

.visual-metadata b {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.visual-newsletter {
  align-content: center;
  gap: 8px;
}

.visual-newsletter strong {
  color: var(--blue-bright);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 1.7rem;
  letter-spacing: -0.06em;
}

.visual-newsletter span {
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--text-soft) 15%, transparent);
}

.visual-newsletter span:nth-of-type(2) {
  width: 86px;
  background: color-mix(in srgb, var(--orange) 55%, transparent);
}

.visual-newsletter span:nth-of-type(3) {
  width: 104px;
}

.visual-review > div {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 19px);
  gap: 27px 48px;
}

.visual-review > div::before,
.visual-review > div::after {
  position: absolute;
  inset: 9px;
  content: "";
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--orange);
  transform: rotate(22deg);
}

.visual-review span {
  z-index: 2;
  width: 19px;
  height: 19px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--surface);
}

.visual-review i {
  position: absolute;
  right: 27px;
  bottom: 25px;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--blue) 45%, transparent);
}

.visual-review i:nth-of-type(2) {
  bottom: 17px;
  width: 32px;
}

.visual-review i:nth-of-type(3) {
  bottom: 9px;
  width: 40px;
  background: color-mix(in srgb, var(--orange) 55%, transparent);
}

.writing-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.writing-copy .post-meta {
  margin-bottom: 16px;
}

.writing-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.16;
  letter-spacing: -0.032em;
}

.writing-copy > p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.65;
}

.writing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.writing-footer strong {
  overflow: hidden;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.writing-footer a {
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 680;
  white-space: nowrap;
}

.submit-writing-compact {
  min-height: 190px;
  margin-block: 0 92px;
  padding: 42px 50px;
}

.submit-writing-compact h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.submit-writing-compact p {
  margin: 0;
  color: var(--muted-strong);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

@media (max-width: 1100px) {
  .writing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-hero {
    padding-block: 72px 42px;
  }

  .blog-hero h1 {
    font-size: 3.25rem;
  }

  .writing-section {
    padding-bottom: 82px;
  }

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

  .writing-card {
    min-height: 465px;
  }

  .submit-writing-compact {
    margin-bottom: 70px;
    padding: 32px 23px;
  }
}

/* Simple editorial list for externally authored Blog posts. */
.blog-hero {
  padding-block: 82px 42px;
}

.blog-hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
}

.blog-list {
  padding-bottom: 62px;
}

.blog-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  max-width: 1120px;
  padding-block: 36px;
  border-block: 1px solid var(--line);
}

.blog-entry-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #f7f7f5;
  transition: border-color 170ms ease, transform 170ms ease;
}

.blog-entry-image:hover {
  border-color: color-mix(in srgb, var(--blue) 52%, transparent);
  transform: translateY(-2px);
}

.blog-entry-image img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-entry-copy {
  min-width: 0;
}

.blog-entry-meta {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.blog-entry-copy h3 {
  max-width: 650px;
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.038em;
}

.blog-entry-copy > p:not(.blog-entry-meta) {
  max-width: 620px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.68;
}

.blog-entry-link {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin-top: 24px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 680;
}

.blog-submit {
  padding-block: 0 92px;
  margin-block: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.blog-submit a {
  margin-left: 5px;
  color: var(--blue-bright);
  font-weight: 680;
}

@media (max-width: 760px) {
  .blog-hero {
    padding-block: 66px 30px;
  }

  .blog-hero h1 {
    font-size: 2.8rem;
  }

  .blog-entry {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 25px 32px;
  }

  .blog-entry-copy h3 {
    font-size: 1.65rem;
  }

  .blog-submit {
    padding-bottom: 70px;
  }
}

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

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