
@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/_sulat/fonts/InterVariable.woff2") format("woff2-variations");
}

:root {
  color-scheme: light;
  --bg: #f8f2e7;
  --bg-strong: #efe4d2;
  --panel: rgb(255 253 248 / 78%);
  --ink: #201b16;
  --muted: #74695e;
  --line: rgb(67 53 40 / 16%);
  --line-strong: rgb(67 53 40 / 30%);
  --accent: #a44f35;
  --soft: #dfb6a2;
  --well: #fffaf2;
  --shadow: 0 24px 70px rgb(78 52 29 / 11%);
  --font-body: "InterVariable", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  font-family: var(--font-body);
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #090806;
    --bg-strong: #15110d;
    --panel: rgb(20 17 13 / 82%);
    --ink: #f5eddf;
    --muted: #a89d8f;
    --line: rgb(235 219 197 / 15%);
    --line-strong: rgb(235 219 197 / 30%);
    --accent: #d88b69;
    --soft: #5c3226;
    --well: #17130f;
    --shadow: none;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090806;
  --bg-strong: #15110d;
  --panel: rgb(20 17 13 / 82%);
  --ink: #f5eddf;
  --muted: #a89d8f;
  --line: rgb(235 219 197 / 15%);
  --line-strong: rgb(235 219 197 / 30%);
  --accent: #d88b69;
  --soft: #5c3226;
  --well: #17130f;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

.site-background {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 80% 5%, color-mix(in srgb, var(--soft) 24%, transparent), transparent 30%),
    radial-gradient(circle at 5% 50%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 27%),
    linear-gradient(180deg, transparent, var(--bg-strong) 140%);
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, white);
  outline-offset: 3px;
}

[hidden],
[data-filtered="true"] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner,
main,
.site-footer {
  width: min(80rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8125rem;
  text-decoration: none;
}

.logo-well {
  position: relative;
  display: grid;
  width: 2.6875rem;
  height: 3.5rem;
  overflow: hidden;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--well);
  box-shadow: 0 10px 24px rgb(71 44 22 / 9%);
}

.logo-well img {
  width: auto;
  height: 3.0625rem;
}

.brand > span:last-child {
  display: grid;
}

.brand b,
.eyebrow {
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.primary-nav > a,
.primary-nav > button {
  display: inline-grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.primary-nav > a {
  padding-inline: 1rem;
}

.theme-toggle svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

main {
  padding-block: 4rem 5rem;
}

.hero {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3.75rem;
  padding-block: 2.125rem 3.625rem;
}

.hero h1,
.model-hero h1 {
  margin: 1rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.875rem, 7vw, 5.875rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.lede {
  max-width: 43rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  text-wrap: pretty;
}

.stats {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(6.875rem, 1fr));
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stats div {
  display: grid;
  gap: 0.25rem;
  padding: 1.5625rem 1.75rem;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  font-family: var(--font-display);
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalogue-shell {
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.provider-catalogue {
  width: min(57.5rem, 100%);
  margin-inline: auto;
}

.search {
  position: relative;
  display: flex;
  max-width: 47.5rem;
  align-items: center;
  margin: 0 0 2.8125rem;
}

.provider-catalogue .search {
  max-width: none;
}

.search > svg {
  position: absolute;
  left: 1.125rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search input {
  width: 100%;
  height: 3.625rem;
  padding: 0 4.75rem 0 3.1875rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  outline: none;
  background: var(--panel);
  box-shadow: 0 12px 35px rgb(79 52 29 / 6%);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 13%, transparent);
}

.search input::placeholder {
  color: color-mix(in srgb, var(--muted) 80%, transparent);
}

.search kbd,
.search .clear {
  position: absolute;
  right: 0.875rem;
  padding: 0.3125rem 0.5625rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--well);
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 650;
}

.search .clear {
  min-width: 2.75rem;
  padding-block: 0.5rem;
  border-color: transparent;
  background: transparent;
  color: var(--accent);
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.search .clear:hover,
.search .clear:focus-visible {
  border-color: var(--line);
  background: var(--well);
  color: var(--ink);
}

.search:focus-within kbd {
  opacity: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > span {
  color: var(--muted);
  font-size: 0.8125rem;
}

.provider-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.125rem;
}

.provider-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--panel);
  box-shadow: 0 16px 44px rgb(68 43 22 / 6%);
}

.provider-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.3125rem 1.375rem 1.125rem;
  border-bottom: 1px solid var(--line);
}

.provider-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.875rem;
}

.provider-mark,
.provider-model-logo,
.hero-monogram {
  display: grid;
  overflow: hidden;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--well), color-mix(in srgb, var(--soft) 24%, var(--well)));
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
}

.provider-mark {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.625rem;
  border-radius: 1.0625rem;
}

.provider-model-logo {
  width: 2.875rem;
  height: 2.875rem;
  padding: 0.5rem;
  border-radius: 0.9375rem;
  font-size: 0.875rem;
}

.provider-logo {
  background: #fffdf8;
}

.provider-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.provider-copy,
.provider-model-copy {
  min-width: 0;
}

.provider-copy .eyebrow,
.provider-model-copy .eyebrow {
  margin: 0 0 0.3125rem;
}

.provider-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6875rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.provider-summary {
  max-width: 9.375rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.provider-model-list {
  display: grid;
}

.provider-model-card {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 2.875rem minmax(0, 1fr) auto;
  gap: 0.8125rem;
  padding: 1.0625rem 1.25rem;
  border-top: 1px solid var(--line);
  transition: background 180ms ease;
}

.provider-model-card:first-child {
  border-top: 0;
}

.provider-model-card:hover {
  background: var(--well);
}

.provider-model-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.provider-model-copy p:last-child {
  margin: 0.3125rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.arrow {
  color: var(--muted);
  font-size: 1.125rem;
}

.card-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}

.card-link:focus-visible {
  outline-offset: -4px;
}

.model-hero {
  padding: 1.5625rem 0 3.4375rem;
}

.back {
  display: inline-block;
  min-height: 2.75rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  line-height: 2.75rem;
  text-decoration: none;
}

.model-title {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hero-monogram {
  width: 7rem;
  height: 7rem;
  padding: 1.125rem;
  border-radius: 2rem;
  font-size: 2.125rem;
}

.model-title h1 {
  margin: 0.4375rem 0 0.875rem;
  font-size: clamp(3rem, 7vw, 5.125rem);
}

.model-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  overflow-wrap: anywhere;
}

.model-title code {
  padding: 0.125rem 0.4375rem;
  border: 1px solid var(--line);
  border-radius: 0.4375rem;
  background: var(--panel);
  color: var(--ink);
}

.share-row,
.share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.share-row {
  gap: 0.75rem;
  margin-top: 1.1875rem;
}

.share-actions {
  gap: 0.4375rem;
}

.share-label {
  color: var(--muted);
  font-size: 0.5625rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.share-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.8125rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.6875rem;
  font-weight: 650;
  text-decoration: none;
}

.share-button:hover,
.share-button:focus-visible {
  border-color: var(--line-strong);
  background: var(--well);
  color: var(--ink);
}

.share-copy[data-copied="true"] {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: color-mix(in srgb, var(--soft) 18%, var(--well));
  color: var(--accent);
}

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

.demo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5625rem;
  background: var(--panel);
  box-shadow: 0 16px 40px rgb(68 43 22 / 5%);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.demo-card:hover {
  border-color: var(--line-strong);
  background: var(--well);
  transform: translateY(-3px);
}

.preview {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  aspect-ratio: 1200 / 630;
  padding: 1.125rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, color-mix(in srgb, var(--soft) 22%, var(--well)), var(--well));
}

.preview.has-image {
  display: block;
  padding: 0;
  background: var(--bg-strong);
}

.preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.preview span {
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.preview strong {
  color: color-mix(in srgb, var(--accent) 75%, var(--ink));
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 0.8;
}

.demo-copy {
  padding: 1.25rem 1.375rem 1.5rem;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  color: var(--muted);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-copy h2 {
  padding-right: 4.875rem;
  margin: 0.4375rem 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.demo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.demo-actions {
  position: absolute;
  z-index: 4;
  right: 1.125rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  pointer-events: none;
}

.demo-actions .arrow {
  display: grid;
  width: 1.5rem;
  height: 2.75rem;
  place-items: center;
  pointer-events: none;
  font-size: 1.3125rem;
}

.prompt-trigger {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  color: var(--muted);
  cursor: pointer;
  pointer-events: auto;
}

.prompt-trigger svg,
.prompt-close svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.prompt-trigger:hover,
.prompt-trigger:focus-visible {
  border-color: var(--line-strong);
  background: var(--well);
  color: var(--ink);
}

.prompt-dialog {
  width: min(57.5rem, calc(100vw - 2rem));
  max-width: none;
  max-height: min(88dvh, 56.25rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.6875rem;
  background: var(--bg);
  box-shadow: 0 38px 120px rgb(18 12 7 / 42%);
  color: var(--ink);
}

.prompt-dialog:not([open]) {
  display: none;
}

.prompt-dialog::backdrop {
  background: rgb(7 5 3 / 68%);
  backdrop-filter: blur(9px);
}

.prompt-shell {
  display: grid;
  max-height: min(88dvh, 56.25rem);
  grid-template-rows: auto minmax(0, 1fr);
}

.prompt-modal-head {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.375rem;
  padding: 1.4375rem 1.5625rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(20px);
}

.prompt-modal-heading {
  min-width: 0;
}

.prompt-modal-heading .eyebrow {
  margin: 0 0 0.5rem;
}

.prompt-modal-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6875rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.prompt-modal-heading > p:last-child {
  margin: 0.5625rem 0 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.75rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.prompt-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  flex: none;
}

.prompt-raw-link,
.prompt-close {
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--panel);
  color: var(--muted);
}

.prompt-raw-link {
  padding-inline: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 650;
  text-decoration: none;
}

.prompt-close {
  width: 2.75rem;
  padding: 0;
  cursor: pointer;
}

.prompt-scroll {
  min-height: 0;
  padding: 1.875rem 2.125rem 2.625rem;
  overflow: auto;
  overscroll-behavior: contain;
}

.prompt-status {
  display: flex;
  min-height: 11.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

.prompt-status[data-state="loading"]::before {
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--line-strong);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: prompt-spin 800ms linear infinite;
  content: "";
}

.prompt-status[data-state="error"] {
  max-width: 38.75rem;
  margin-inline: auto;
  color: var(--accent);
  line-height: 1.65;
}

.prompt-document {
  max-width: 49.375rem;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.82;
  overflow-wrap: anywhere;
  tab-size: 2;
  white-space: pre-wrap;
}

.empty {
  padding: 3.4375rem;
  border: 1px dashed var(--line-strong);
  border-radius: 1.625rem;
  text-align: center;
}

.empty h2 {
  margin: 0.625rem 0 0;
  font-family: var(--font-display);
  font-size: 2.125rem;
  font-weight: 500;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
  padding-block: 2.1875rem 3.4375rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}

.site-footer div {
  display: grid;
  gap: 0.25rem;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
}

.site-footer a {
  min-height: 2.75rem;
  line-height: 2.75rem;
  text-decoration: none;
}

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

@media (max-width: 59.375rem) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }

  .stats {
    width: max-content;
  }

  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .header-inner,
  main,
  .site-footer {
    width: min(100% - 1.75rem, 80rem);
  }

  .header-inner {
    min-height: 4.625rem;
  }

  .brand strong {
    font-size: 1.125rem;
  }

  .primary-nav > a {
    display: none;
  }

  main {
    padding-top: 2.1875rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .stats {
    width: 100%;
  }

  .stats div {
    padding: 1.1875rem;
  }

  .provider-grid {
    gap: 0.875rem;
  }

  .provider-heading {
    align-items: flex-start;
    padding: 1.125rem;
  }

  .provider-mark {
    width: 2.875rem;
    height: 2.875rem;
    padding: 0.5625rem;
    border-radius: 0.9375rem;
  }

  .provider-copy h2 {
    font-size: 1.5rem;
  }

  .provider-summary {
    max-width: 7.5rem;
    font-size: 0.5625rem;
  }

  .provider-model-card {
    grid-template-columns: 2.625rem minmax(0, 1fr) auto;
    gap: 0.6875rem;
    padding: 0.9375rem 1.0625rem;
  }

  .provider-model-logo {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 0.875rem;
  }

  .provider-model-copy h3 {
    font-size: 1.1875rem;
  }

  .model-title {
    align-items: flex-start;
    gap: 1.125rem;
  }

  .hero-monogram {
    width: 4.625rem;
    height: 4.625rem;
    padding: 0.75rem;
    border-radius: 1.4375rem;
    font-size: 1.5rem;
  }

  .model-title h1 {
    font-size: 3rem;
  }

  .share-row {
    align-items: flex-start;
  }

  .share-label {
    width: 100%;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > span {
    padding-top: 0.375rem;
  }

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

  .search {
    margin-bottom: 2.1875rem;
  }

  .prompt-dialog {
    width: calc(100vw - 1rem);
    max-height: 94dvh;
    border-radius: 1.375rem;
  }

  .prompt-shell {
    max-height: 94dvh;
  }

  .prompt-modal-head {
    gap: 0.8125rem;
    padding: 1.125rem 1.0625rem 1rem;
  }

  .prompt-modal-heading h2 {
    font-size: 1.6875rem;
  }

  .prompt-raw-link {
    width: 2.75rem;
    padding: 0;
    font-size: 0;
  }

  .prompt-raw-link::before {
    font-size: 1rem;
    content: "↗";
  }

  .prompt-scroll {
    padding: 1.4375rem 1.1875rem 2.125rem;
  }

  .prompt-document {
    font-size: 0.875rem;
    line-height: 1.76;
  }

  .empty {
    padding: 2.5rem 1.375rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media print {
  .site-header,
  .search,
  .share-row,
  .prompt-trigger,
  .prompt-dialog,
  .site-footer {
    display: none !important;
  }

  main {
    width: 100%;
    padding: 0;
  }
}
