:root {
  color-scheme: light;
  --accent-color: #3498db;
  --text-color: #111827;
  --muted-text-color: #4b5563;
  --border-color: rgba(52, 152, 219, 0.25);
  --surface-color: rgba(255, 255, 255, 0.82);
  --shadow-color: rgba(15, 23, 42, 0.08);
  --content-width: min(1000px, calc(100vw - 3rem));
  --header-offset: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a:hover, a:focus-visible {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
a:focus-visible {
  outline: 2px solid rgba(52, 152, 219, 0.35);
  outline-offset: 0.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-weight: 600;
}

p,
ul,
ol,
blockquote,
table,
pre {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.75rem;
}

pre,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

:not(pre) > code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.35rem;
  background: #f3f4f6;
}

pre {
  overflow-x: auto;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

blockquote {
  padding-left: 1rem;
  border-left: 3px solid var(--border-color);
  color: var(--muted-text-color);
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
}
table th {
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}
table td {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.5rem max(1.5rem, (100vw - 1000px) / 2);
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-brand {
  display: grid;
  gap: 0.2rem;
  line-height: 1;
}
.site-brand a {
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
}
.site-brand small {
  font-size: 0.95rem;
  color: var(--muted-text-color);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem 1rem;
}
.site-nav a {
  border-bottom-color: transparent;
}

.scroll-position {
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--accent-color);
  transform-origin: left center;
  transform: scaleX(0);
}

#content-wrapper {
  width: var(--content-width);
  margin: 0 auto;
  padding: calc(var(--header-offset) + 0.75rem) 0 4rem;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  line-height: 1.7;
}
#content-wrapper h2 {
  font-size: clamp(1.85rem, 1.4rem + 1vw, 2.5rem);
}
#content-wrapper time {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--muted-text-color);
  font-size: 0.95rem;
}
#content-wrapper img {
  display: block;
  margin: 1.5rem auto;
}

.canonical-note {
  margin-top: 2rem;
  color: var(--muted-text-color);
}

#backdrop {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(52, 152, 219, 0.1), transparent 45%), linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
}
#backdrop #contents {
  position: absolute;
  top: var(--header-offset);
  left: 0;
  animation: backdrop-scroll 25s linear infinite;
  opacity: 0.32;
}
#backdrop .row {
  height: 94px;
  white-space: nowrap;
}
#backdrop .row img {
  height: 50px;
  margin: 20px;
  filter: grayscale(1);
  transition: filter 0.35s ease;
}
#backdrop .row img:hover {
  filter: grayscale(0);
}
#backdrop #overlay {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: calc(var(--header-offset) + 2rem) 1.5rem 2rem;
  pointer-events: none;
}
#backdrop #overlay img {
  width: min(320px, 60vw);
  margin: 0;
  border-radius: 50%;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

@keyframes backdrop-scroll {
  from {
    transform: translateX(-273px);
  }
  to {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 736px) {
  :root {
    --content-width: calc(100vw - 2rem);
  }
  .site-header {
    justify-content: center;
    padding: 1.25rem 1rem;
    text-align: center;
  }
  .site-brand {
    justify-items: center;
  }
  .site-nav {
    justify-content: center;
  }
}
@media only screen and (max-width: 430px) {
  .site-nav {
    gap: 0.45rem 0.85rem;
  }
  #backdrop #overlay img {
    width: min(280px, 72vw);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  #backdrop #contents {
    animation: none;
  }
}

/*# sourceMappingURL=screen.css.map */