:root {
  --paper: #f4f2e9;
  --surface: #fffef9;
  --ink: #253632;
  --muted: #626b64;
  --line: #d6d9cd;
  --green: #156c61;
  --green-dark: #0e5148;
  --orange: #b95137;
  --mono: "IBM Plex Mono", "Noto Serif JP", monospace;
  --serif: "Noto Serif JP", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled,
select:disabled {
  cursor: wait;
  opacity: 0.55;
}
button,
a,
textarea,
select {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
}
button {
  color: inherit;
}
button[hidden],
[hidden] {
  display: none !important;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button {
  border: 0;
}
a:not(.button):hover {
  color: var(--green);
}
.wrap {
  width: min(1220px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.7px;
}
.brand-mark {
  background: var(--green);
  color: var(--surface);
  font-family: var(--serif);
  font-size: 30px;
  display: grid;
  place-items: center;
  line-height: 1;
  width: 41px;
  height: 43px;
  border-radius: 3px;
}
.brand-reading {
  display: block;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 3px;
  margin-top: 4px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}
.site-header .repo-link {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.repo-link span {
  margin-left: 5px;
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 65px;
  align-items: center;
  padding-block: 83px 75px;
}
.hero > * {
  min-width: 0;
}
.version {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  letter-spacing: 0;
}
.hero h1 {
  font-family: Georgia, var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 1.1;
  letter-spacing: -2.2px;
  margin: 25px 0;
}
.hero h1 em {
  color: var(--green);
  font-weight: 400;
}
.hero-description {
  font-size: 17px;
  color: var(--muted);
  max-width: 445px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 45px;
  padding: 11px 19px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-1px);
}
.primary {
  background: var(--green);
  color: white;
}
.primary:hover {
  background: var(--green-dark);
  color: white;
}
.secondary {
  background: transparent;
  border: 1px solid var(--line);
}
.secondary:hover {
  background: #e6eadf;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #9ca99b;
}
.hero-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 19px;
}
.language-sheet {
  position: relative;
  background: var(--surface);
  border: 1px solid #d6d7cc;
  box-shadow: 8px 8px 0 #e7e9dc;
  padding: 20px 29px 28px;
  transform: rotate(-1deg);
  background-image: linear-gradient(#80896e09 1px, transparent 1px);
  background-size: 100% 29px;
}
.sheet-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}
.japanese-title {
  font-family: var(--serif);
  font-size: clamp(54px, 6.1vw, 82px);
  letter-spacing: -7px;
  line-height: 1.6;
  margin-top: 10px;
  white-space: nowrap;
}
.japanese-title > span:nth-child(1) {
  color: var(--green);
}
.japanese-title > span:nth-child(2) {
  color: var(--orange);
}
.title-stop {
  font-size: 0.6em;
  vertical-align: baseline;
}
.sheet-definition {
  font-size: 10px;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 22px;
}
.sheet-definition i {
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--ink);
  margin-right: 4px;
}
.call-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 22px;
  white-space: nowrap;
}
.argument {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.argument b {
  font-weight: 500;
}
.particle {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  padding: 1px 5px;
}
.particle.from {
  background: #e0ece2;
  color: var(--green);
}
.particle.object {
  background: #f6e5d9;
  color: var(--orange);
}
.paren,
.equals {
  color: #9ca197;
  font-weight: 400;
}
.predicate {
  font-family: var(--serif);
  font-size: 21px;
}
.demo-result {
  color: var(--green);
  font-weight: 500;
}
.demo-labels {
  display: flex;
  justify-content: center;
  gap: 13px;
  font-size: 9px;
  margin-top: 12px;
}
.demo-labels > span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.key {
  display: inline-block;
  width: 6px;
  height: 6px;
}
.key.from {
  background: var(--green);
}
.key.object {
  background: var(--orange);
}
.swap-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 14px;
  margin: 22px auto 12px;
  font-size: 11px;
  border-radius: 3px;
}
.swap-button:hover {
  background: #eff2e8;
}
.swap-button span {
  font-size: 19px;
}
.sheet-caption {
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  border-block: 1px solid var(--line);
  padding-block: 23px;
}
.principles > div {
  display: flex;
  gap: 15px;
  align-items: baseline;
}
.principle-number {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
}
.principles p {
  font-size: 11px;
  color: var(--muted);
}
.principles strong {
  color: var(--ink);
  display: block;
  font-weight: 600;
  font-size: 13px;
}
.playground-section {
  padding-top: 78px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.section-heading h2,
.about-section h2 {
  font-family: Georgia, var(--serif);
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.8px;
  margin-top: 13px;
}
.local-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  white-space: nowrap;
  margin-bottom: 5px;
}
.section-intro {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  margin-bottom: 26px;
}
.playground {
  background: var(--surface);
  border: 1px solid #b9c5b7;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 7px 24px #25363206;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
  gap: 15px;
}
.example-control {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.example-control label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
select {
  appearance: auto;
  background: #f3f4ec;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 7px 28px 7px 10px;
  font-size: 12px;
  font-weight: 600;
  max-width: 310px;
  min-width: 190px;
  color: var(--ink);
}
.editor-tools {
  display: flex;
  gap: 20px;
}
.tool-button {
  background: none;
  font-size: 11px;
  color: var(--muted);
  padding: 8px 0;
  white-space: nowrap;
}
.tool-button:hover {
  color: var(--green);
}
.tool-button span {
  margin-left: 5px;
}
.editor-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
}
.source-panel {
  min-width: 0;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 42px;
  padding: 0 21px;
  font-family: var(--mono);
  font-size: 10px;
  border-bottom: 1px solid #e6e9dd;
}
.panel-heading > span {
  font-size: 8px;
  letter-spacing: 0.07em;
}
.panel-heading .muted {
  color: #8b9285;
}
.panel-heading h3 {
  font: inherit;
}
.source-panel > .panel-heading {
  background: #f9faf3;
}
#source {
  display: block;
  width: 100%;
  height: 418px;
  padding: 20px 22px;
  border: none;
  resize: vertical;
  min-height: 200px;
  max-height: 800px;
  line-height: 1.9;
  font-family: var(--mono);
  font-size: 12px;
  color: #234d43;
  background: var(--surface);
  tab-size: 2;
  border-radius: 0;
}
#source:focus-visible {
  outline-offset: -3px;
}
.input-details {
  border-top: 1px solid var(--line);
}
.input-details summary {
  cursor: pointer;
  font-size: 11px;
  padding: 10px 21px;
  background: #f8f9f1;
}
.input-details summary span {
  color: var(--muted);
  font-size: 10px;
  margin-left: 8px;
}
#stdin {
  display: block;
  resize: vertical;
  min-height: 75px;
  width: 100%;
  font-family: var(--mono);
  font-size: 12px;
  background: var(--surface);
  color: var(--ink);
  border: 0;
  padding: 12px 21px;
  border-radius: 0;
}
#stdin:focus-visible {
  outline-offset: -3px;
}
.output-panel {
  background: #213d35;
  color: #e2eddf;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.output-panel .panel-heading {
  color: #c2d2c2;
  border-color: #496051;
  background: #263f36;
}
.output-panel .panel-heading > span {
  color: #9cb1a0;
}
#output-container {
  padding: 21px 23px;
  min-height: 260px;
  max-height: 500px;
  flex: 1;
  overflow: auto;
}
#output,
#error {
  margin: 0;
  font: 12px/1.85 var(--mono);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
#output.output-placeholder {
  font-size: 12px;
  color: #a4baa7;
  line-height: 2;
}
#error {
  color: #ffb8a1;
  margin-top: 13px;
}
#output:empty + #error {
  margin-top: 0;
}
.console-footer {
  padding: 12px 21px;
  border-top: 1px solid #496051;
  display: flex;
  gap: 8px;
  align-items: center;
  font: 9px/1.6 var(--mono);
  color: #becfbb;
  min-height: 41px;
}
.console-dot {
  height: 5px;
  width: 5px;
  background: #c1d7b5;
  border-radius: 50%;
  flex: none;
}
.run-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
}
.run-bar > p {
  font-size: 10px;
  color: var(--ink);
}
.run-bar > p > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.run-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.run-actions .button {
  min-height: 39px;
  padding: 8px 16px;
  font-size: 12px;
}
.stop {
  background: #f5e1d6;
  color: #8c3320;
}
.example-context {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  padding-top: 13px;
  font-size: 11px;
  color: var(--muted);
}
#example-description {
  max-width: 680px;
}
.keyboard-hint {
  font-size: 9px;
  white-space: nowrap;
  padding-top: 1px;
}
kbd {
  font: 9px var(--sans);
  border: 1px solid #c6cbbf;
  border-radius: 3px;
  padding: 1px 4px;
  box-shadow: 0 1px 0 #c6cbbf;
}
.playground-limits {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
}
.playground-limits a {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}
.examples-section {
  padding-top: 78px;
}
.example-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 27px;
  gap: 22px;
}
.example-card {
  display: block;
  border: 1px solid var(--line);
  background: #f8f7ef;
  padding: 22px 23px 0;
  border-radius: 3px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.example-card:hover {
  transform: translateY(-4px);
  border-color: #7ea192;
  color: var(--ink) !important;
}
.card-category {
  font: 9px var(--mono);
  letter-spacing: 0.08em;
  color: var(--muted);
}
.example-card h3 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin: 2px 0 12px;
}
.example-card h3 > span {
  font-size: 16px;
  color: var(--muted);
}
.example-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  min-height: 68px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding: 13px 0;
  font-size: 10px;
  font-weight: 600;
}
.number-art,
.fizz-art,
.prime-art {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    26px Georgia,
    serif;
  color: #778877;
  white-space: nowrap;
}
.number-art span {
  color: var(--green);
}
.fizz-art {
  font-size: 37px;
  letter-spacing: -2px;
  gap: 0;
  color: var(--green);
}
.fizz-art > span {
  color: var(--orange);
}
.fizz-art i {
  font-weight: 400;
  color: #b6bca8;
  transform: rotate(12deg);
  margin-left: 6px;
}
.prime-art {
  gap: 9px;
  font: 20px var(--mono);
}
.prime-art > span {
  border: 1px solid #96ae95;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--green);
}
.prime-art > s {
  color: #b1b5a6;
  font-size: 16px;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 85px;
  border-top: 1px solid var(--line);
  margin-top: 77px;
  padding-top: 55px;
}
.about-copy p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: var(--muted);
}
.about-copy .credits {
  font-size: 11px;
}
.credits a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.local-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 85px;
  background: #e7eadf;
  padding: 30px 35px;
  margin-top: 60px;
  border-radius: 4px;
  width: min(1220px, calc(100% - 96px));
}
.local-section h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-top: 8px;
}
.local-section p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
}
.terminal {
  align-self: center;
  overflow: auto;
  font: 10px/2.2 var(--mono);
  color: #385344;
}
.terminal span {
  display: block;
  white-space: nowrap;
}
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 68px;
  padding-block: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.site-footer .brand {
  font-size: 18px;
  color: var(--ink);
}
.site-footer .brand-mark {
  font-size: 23px;
  width: 29px;
  height: 31px;
}
.site-footer > div {
  display: flex;
  gap: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--green);
  color: white;
  padding: 8px 15px;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.notice {
  border: 1px solid var(--orange);
  padding: 15px;
  margin-bottom: 20px;
}
.busy .console-dot {
  animation: pulse 1.2s ease-in-out infinite;
}
.busy #runtime-status {
  color: #e0ebd9;
}
@keyframes pulse {
  50% {
    opacity: 0.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 1450px) {
  .hero h1 {
    font-size: 70px;
  }
  .hero {
    gap: 100px;
  }
}
@media (max-width: 1000px) {
  .wrap,
  .local-section {
    width: calc(100% - 56px);
  }
  .hero {
    gap: 35px;
    padding-block: 60px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-description {
    font-size: 15px;
  }
  .language-sheet {
    padding-inline: 20px;
  }
  .japanese-title {
    font-size: 67px;
  }
  .call-demo {
    gap: 6px;
    font-size: 20px;
  }
  .particle {
    font-size: 16px;
  }
  .demo-labels {
    gap: 8px;
    font-size: 8px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .example-context {
    display: block;
  }
  .keyboard-hint {
    display: block;
    margin-top: 8px;
  }
  .example-card {
    padding-inline: 18px;
  }
  .number-art {
    font-size: 23px;
    gap: 7px;
  }
  .prime-art {
    gap: 5px;
  }
  .prime-art > span {
    width: 29px;
    height: 29px;
  }
  .about-section,
  .local-section {
    gap: 35px;
  }
  .site-header nav {
    gap: 24px;
  }
}
@media (max-width: 760px) {
  .wrap,
  .local-section {
    width: calc(100% - 36px);
  }
  .site-header {
    min-height: 82px;
  }
  .brand {
    font-size: 21px;
  }
  .site-header nav {
    gap: 17px;
    font-size: 11px;
  }
  .site-header nav > a:first-child {
    display: none;
  }
  .site-header .repo-link {
    padding-left: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 45px;
    gap: 36px;
  }
  .hero h1 {
    font-size: 54px;
    letter-spacing: -1.7px;
    margin-block: 22px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 470px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .language-sheet {
    max-width: 470px;
    width: calc(100% - 12px);
    justify-self: center;
    padding-inline: 28px;
  }
  .japanese-title {
    font-size: clamp(52px, 17vw, 76px);
  }
  .call-demo {
    font-size: 25px;
    gap: 11px;
  }
  .particle {
    font-size: 20px;
  }
  .demo-labels {
    font-size: 9px;
    gap: 15px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 22px;
  }
  .principles > div {
    gap: 14px;
  }
  .principles strong {
    display: inline;
    margin-right: 5px;
  }
  .principles p {
    font-size: 11px;
  }
  .principles strong {
    font-size: 12px;
  }
  .playground-section,
  .examples-section {
    padding-top: 49px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .section-heading h2 {
    font-size: 29px;
    max-width: 340px;
  }
  .local-badge {
    font-size: 10px;
    margin-bottom: 0;
  }
  .section-intro {
    font-size: 12px;
  }
  .toolbar {
    padding: 11px 13px;
    gap: 8px;
  }
  .example-control {
    gap: 7px;
    flex: 1;
  }
  .example-control label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  select {
    min-width: 0;
    width: 100%;
    max-width: 240px;
    font-size: 11px;
    padding-right: 7px;
  }
  .editor-tools {
    gap: 12px;
  }
  .editor-tools .tool-button {
    font-size: 10px;
  }
  #download > span {
    font-size: 11px;
  }
  .editor-grid {
    grid-template-columns: 1fr;
  }
  #source {
    height: 340px;
    font-size: 12px;
    padding: 17px 14px;
  }
  .panel-heading {
    padding-inline: 14px;
  }
  .output-panel {
    min-height: 215px;
  }
  #output-container {
    min-height: 140px;
    max-height: 320px;
    padding: 16px;
  }
  #output,
  #error {
    font-size: 12px;
  }
  .run-bar {
    padding: 13px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .run-bar > p {
    font-size: 10px;
  }
  .run-actions {
    margin-left: auto;
  }
  .run-actions .button {
    padding: 8px 12px;
  }
  .example-context {
    font-size: 11px;
  }
  .example-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 23px;
  }
  .example-card {
    padding: 20px 22px 0;
  }
  .number-art,
  .fizz-art,
  .prime-art {
    height: 82px;
  }
  .number-art {
    font-size: 31px;
    gap: 12px;
  }
  .prime-art {
    font-size: 22px;
    gap: 14px;
  }
  .prime-art > span {
    width: 35px;
    height: 35px;
  }
  .example-card p {
    min-height: 0;
  }
  .example-card h3 {
    font-size: 20px;
  }
  .card-footer {
    margin-top: 18px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
    padding-top: 35px;
  }
  .about-section h2 {
    font-size: 31px;
  }
  .local-section {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
    margin-top: 35px;
  }
  .local-section h2 {
    font-size: 25px;
  }
  .terminal {
    font-size: 9px;
  }
  .site-footer {
    margin-top: 43px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .site-footer > span {
    display: none;
  }
  .site-footer > div {
    gap: 16px;
  }
  .keyboard-hint {
    display: none;
  }
}
@media (max-width: 380px) {
  .site-header nav {
    gap: 12px;
  }
  .site-header nav > a:nth-child(3) {
    display: none;
  }
  .hero h1 {
    font-size: 47px;
  }
  .language-sheet {
    padding-inline: 15px;
  }
  .japanese-title {
    font-size: 60px;
  }
  .call-demo {
    font-size: 22px;
    gap: 8px;
  }
  .hero .eyebrow {
    flex-wrap: wrap;
  }
  .version {
    font-size: 9px;
  }
  .run-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .demo-labels {
    gap: 10px;
  }
}
