:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-2: #0d0d0c;
  --surface: #121211;
  --surface-2: #181816;
  --surface-3: #1f201e;
  --text: #f2f0ec;
  --muted: #b9b8b1;
  --dim: #85837d;
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(143, 216, 255, 0.42);
  --accent: #7cc7e8;
  --accent-strong: #8fd8ff;
  --metal-button-top: #f1eee8;
  --metal-button-mid: #cbc5bb;
  --metal-button-bottom: #928b81;
  --metal-button-text: #080808;
  --shadow: rgba(0, 0, 0, 0.34);
  --header-at-top: linear-gradient(180deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.52) 54%, rgba(8, 8, 8, 0));
  --header-scrolled: rgba(8, 8, 8, 0.74);
  --tool-bg: rgba(255, 255, 255, 0.035);
  --tool-hover-bg: rgba(255, 255, 255, 0.08);
  --scrollbar-track: rgba(255, 255, 255, 0.025);
  --scrollbar-thumb: rgba(242, 240, 236, 0.24);
  --scrollbar-thumb-hover: rgba(242, 240, 236, 0.42);
  --hero-overlay:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.34) 52%, rgba(8, 8, 8, 0.56)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.64), transparent 18%, transparent 72%, rgba(8, 8, 8, 0.82));
  --hero-scene-opacity: 0.72;
  --max: 1280px;
  --header-h: 76px;
  --radius: 16px;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #e8f1fa;
  --bg-2: #f7fbff;
  --surface: #ffffff;
  --surface-2: #f2f7fc;
  --surface-3: #e6eff8;
  --text: #20242a;
  --muted: #526271;
  --dim: #7c8994;
  --border: rgba(22, 33, 44, 0.14);
  --border-strong: rgba(87, 102, 110, 0.42);
  --accent: #59666d;
  --accent-strong: #30383e;
  --metal-button-top: #fffdf8;
  --metal-button-mid: #e7e0d3;
  --metal-button-bottom: #b6ac9e;
  --metal-button-text: #171512;
  --shadow: rgba(48, 70, 92, 0.16);
  --header-at-top: linear-gradient(180deg, rgba(232, 241, 250, 0.92), rgba(232, 241, 250, 0.62) 54%, rgba(232, 241, 250, 0));
  --header-scrolled: rgba(247, 251, 255, 0.78);
  --tool-bg: rgba(255, 255, 255, 0.58);
  --tool-hover-bg: rgba(255, 255, 255, 0.9);
  --scrollbar-track: rgba(255, 255, 255, 0.44);
  --scrollbar-thumb: rgba(32, 36, 42, 0.22);
  --scrollbar-thumb-hover: rgba(32, 36, 42, 0.38);
  --hero-overlay:
    linear-gradient(90deg, rgba(236, 245, 252, 0.9), rgba(236, 245, 252, 0.72) 36%, rgba(236, 245, 252, 0.08) 58%, rgba(236, 245, 252, 0)),
    linear-gradient(180deg, rgba(250, 253, 255, 0.14), transparent 52%, rgba(235, 244, 250, 0.14));
  --hero-scene-opacity: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22rem),
    radial-gradient(circle at 70% 12%, rgba(124, 199, 232, 0.1), transparent 25rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: var(--scrollbar-thumb);
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
  background-clip: content-box;
}

:root[data-theme="light"] body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 20rem),
    radial-gradient(circle at 72% 8%, rgba(47, 134, 165, 0.16), transparent 22rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

:root[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(18, 32, 44, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 44, 0.04) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 78%);
}

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

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

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

pre,
code {
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
}

::selection {
  color: #071013;
  background: var(--accent-strong);
}

.page-shell {
  min-height: 100dvh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: var(--header-at-top);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: var(--header-scrolled);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

:root[data-theme="light"] .site-header.is-scrolled {
  border-bottom-color: rgba(18, 32, 44, 0.12);
  box-shadow: 0 16px 42px rgba(48, 70, 92, 0.12);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.brand-word span {
  margin-left: 3px;
  padding: 0 4px 1px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

:root[data-theme="light"] .brand-word {
  color: #171c22;
}

:root[data-theme="light"] .brand-word span {
  border-color: rgba(20, 26, 32, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(224, 234, 243, 0.5)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 7px 16px rgba(45, 65, 85, 0.12);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  line-height: 1;
  opacity: 0.86;
}

:root[data-theme="light"] .brand-badge {
  height: 24px;
  padding: 0 8px;
  color: #526271;
  border-color: rgba(30, 42, 54, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(231, 240, 247, 0.62)),
    rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 18px rgba(45, 65, 85, 0.08);
  font-weight: 720;
  opacity: 1;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--tool-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

:root[data-theme="light"] .header-tool {
  color: #0d1217;
  border-color: rgba(25, 34, 42, 0.28);
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.98), rgba(218, 229, 238, 0.92)),
    #eef5fa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(30, 42, 54, 0.12),
    0 12px 28px rgba(45, 65, 85, 0.16);
}

.header-tool:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--tool-hover-bg);
}

:root[data-theme="light"] .header-tool:hover {
  border-color: rgba(22, 33, 44, 0.24);
}

.header-tool:active {
  transform: translateY(0);
}

.language-toggle {
  width: auto;
  min-width: 48px;
  padding-inline: 12px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.theme-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0.9;
}

.theme-icon::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -5px;
  width: 9px;
  height: 9px;
  border-radius: inherit;
  background: var(--bg);
  box-shadow: -2px 2px 0 0 var(--bg);
}

:root[data-theme="light"] .theme-icon::after {
  top: 2px;
  right: 2px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow:
    0 -9px 0 -1px currentColor,
    0 9px 0 -1px currentColor,
    9px 0 0 -1px currentColor,
    -9px 0 0 -1px currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button:active {
  transform: translateY(0);
}

.button-compact {
  min-height: 42px;
  min-width: 96px;
  padding-inline: 18px;
}

.button-primary {
  color: #101112;
  border-color: rgba(255, 255, 255, 0.58);
  background: #f0efea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 16px 34px rgba(0, 0, 0, 0.24);
  font-weight: 760;
  text-shadow: none;
}

.button-primary:hover {
  color: #08090a;
  border-color: rgba(255, 255, 255, 0.72);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 18px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-primary:active {
  color: #08090a;
  background: #deddd8;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.button-soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

:root:not([data-theme="light"]) .button-soft {
  color: #f2f0ec;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  font-weight: 680;
}

:root:not([data-theme="light"]) .button-soft:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

:root[data-theme="light"] .button {
  border-color: rgba(32, 36, 42, 0.14);
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 30px rgba(48, 70, 92, 0.08);
}

:root[data-theme="light"] .button:hover {
  color: #171512;
  border-color: rgba(80, 72, 60, 0.28);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 34px rgba(48, 70, 92, 0.11);
}

:root[data-theme="light"] .button-primary {
  color: #f8fafc;
  border-color: rgba(18, 24, 31, 0.72);
  background: #171d23;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 15px 34px rgba(25, 36, 48, 0.18);
  text-shadow: none;
}

:root[data-theme="light"] .button-primary:hover {
  color: #ffffff;
  border-color: rgba(18, 24, 31, 0.82);
  background: #242c34;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 40px rgba(25, 36, 48, 0.22);
}

:root[data-theme="light"] .button-primary:active {
  color: #ffffff;
  background: #10151a;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.34),
    0 10px 24px rgba(25, 36, 48, 0.14);
}

:root[data-theme="light"] .button-soft {
  color: #171512;
  border-color: rgba(32, 36, 42, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 236, 242, 0.98)),
    #eef4f9;
  font-weight: 740;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(30, 42, 54, 0.16),
    0 12px 28px rgba(48, 70, 92, 0.16);
}

:root[data-theme="light"] .button-soft:hover {
  color: #0f1317;
  border-color: rgba(32, 36, 42, 0.34);
  background:
    linear-gradient(180deg, #ffffff, rgba(238, 244, 249, 0.96)),
    #ffffff;
}

.button-ghost {
  color: var(--text);
}

.button-copy {
  width: fit-content;
  margin-top: 0;
}

.section-screen {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100dvh - var(--header-h));
  padding: 92px 0;
  scroll-margin-top: var(--header-h);
}

.section-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 7px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.2;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(440px, 1.22fr);
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  padding-top: calc(var(--header-h) + clamp(52px, 8vh, 94px));
  padding-bottom: clamp(48px, 7vh, 76px);
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--hero-overlay);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-scene-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: translateX(clamp(120px, 11vw, 220px)) scale(0.9);
  transform-origin: center center;
}

.hero-scene-dark {
  opacity: 1;
}

:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 42%),
    linear-gradient(115deg, #eef7fd 0%, #edf5fb 38%, #dfeaf2 100%);
}

:root[data-theme="light"] .hero-scene {
  background:
    linear-gradient(90deg, rgba(236, 245, 252, 0.12), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(218, 232, 243, 0.22));
}

:root[data-theme="light"] .hero-scene-dark {
  opacity: 0;
}

:root[data-theme="light"] .hero-scene-light {
  opacity: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(56px, 5.2vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 860;
}

:root[data-theme="light"] .hero h1 {
  color: #20262d;
}

.hero-subtitle {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .button {
  width: 136px;
  flex: 0 0 auto;
  min-width: 124px;
  min-height: 48px;
  padding-inline: 24px;
}

:root[data-theme="light"] .hero-actions .button-primary {
  color: #f8fafc;
  border-color: rgba(18, 24, 31, 0.72);
  background: #171d23;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 15px 34px rgba(25, 36, 48, 0.18);
  text-shadow: none;
}

:root[data-theme="light"] .hero-actions .button-primary:hover {
  color: #ffffff;
  border-color: rgba(18, 24, 31, 0.82);
  background: #242c34;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 40px rgba(25, 36, 48, 0.22);
}

:root[data-theme="light"] .hero-actions .button-primary:active {
  color: #ffffff;
  background: #10151a;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.34),
    0 10px 24px rgba(25, 36, 48, 0.14);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.tools {
  padding-top: 76px;
  padding-bottom: 76px;
}

.tools .section-heading {
  max-width: 980px;
  margin-bottom: 24px;
}

.tools .section-kicker {
  margin-bottom: 18px;
}

.tools .section-heading h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

.tools .section-heading p:not(.section-kicker) {
  max-width: 940px;
  font-size: 17px;
  line-height: 1.58;
}

.status-note {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--dim);
  font-size: 14px;
}

.tools .status-note {
  margin-bottom: 14px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tools .filter-row {
  margin-bottom: 20px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(124, 199, 232, 0.1);
}

:root[data-theme="light"] .filter-button {
  color: #5b6a76;
  border-color: rgba(30, 47, 62, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 251, 0.72)),
    #f6fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(48, 70, 92, 0.08);
}

:root[data-theme="light"] .filter-button:hover,
:root[data-theme="light"] .filter-button[aria-pressed="true"] {
  color: #20242a;
  border-color: rgba(31, 38, 45, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 236, 241, 0.9)),
    #eef2f5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 22px rgba(48, 70, 92, 0.09);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.client-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px auto;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 199, 232, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.client-card:hover,
.client-card[aria-current="true"] {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(124, 199, 232, 0.11), rgba(255, 255, 255, 0.02)),
    var(--surface-2);
}

.client-card:hover::after,
.client-card[aria-current="true"]::after {
  opacity: 1;
}

:root[data-theme="light"] .client-card {
  border-color: rgba(30, 47, 62, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 252, 0.86)),
    var(--surface);
  box-shadow: 0 20px 46px rgba(48, 70, 92, 0.1);
}

:root[data-theme="light"] .client-card::after {
  background: radial-gradient(circle, rgba(31, 38, 45, 0.08), transparent 70%);
}

:root[data-theme="light"] .client-card:hover,
:root[data-theme="light"] .client-card[aria-current="true"] {
  border-color: rgba(31, 38, 45, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 250, 0.92)),
    #f8fafc;
  box-shadow:
    0 22px 52px rgba(48, 70, 92, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.client-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.client-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.client-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

:root[data-theme="dark"] .client-icon img[src$="github-copilot.svg"],
:root[data-theme="dark"] .client-icon img[src$="langflow.svg"] {
  filter: invert(1) brightness(1.08);
}

.client-icon span {
  display: none;
  color: var(--accent);
  font-weight: 780;
}

.client-icon.is-fallback img {
  display: none;
}

.client-icon.is-fallback span {
  display: inline;
}

:root[data-theme="light"] .client-icon {
  border-color: rgba(30, 47, 62, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 248, 0.78)),
    #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 18px rgba(48, 70, 92, 0.08);
}

:root[data-theme="light"] .client-icon span {
  color: #4b5560;
}

.client-status {
  max-width: 132px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 9px;
  border: 1px solid rgba(124, 199, 232, 0.18);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
  background: rgba(124, 199, 232, 0.06);
}

:root[data-theme="light"] .client-status {
  color: #37424c;
  border-color: rgba(31, 38, 45, 0.15);
  background: rgba(250, 252, 254, 0.72);
}

.client-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: 0;
}

.client-card p {
  flex: 1 1 auto;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.48;
}

.client-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--dim);
  font-size: 13px;
  line-height: 1;
}

:root[data-theme="light"] .meta-pill {
  border-color: rgba(30, 47, 62, 0.12);
  color: #657584;
  background: rgba(255, 255, 255, 0.5);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.generic-entry {
  margin-top: 18px;
}

.generic-entry-card {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(124, 199, 232, 0.18);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(124, 199, 232, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.generic-entry-card:hover,
.generic-entry-card[aria-current="true"] {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background:
    linear-gradient(90deg, rgba(124, 199, 232, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

:root[data-theme="light"] .generic-entry-card {
  border-color: rgba(31, 38, 45, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(239, 244, 248, 0.9)),
    #f8fafc;
  box-shadow: 0 18px 38px rgba(48, 70, 92, 0.1);
}

:root[data-theme="light"] .generic-entry-card:hover,
:root[data-theme="light"] .generic-entry-card[aria-current="true"] {
  border-color: rgba(31, 38, 45, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(231, 236, 241, 0.94)),
    #f6f8fa;
}

.generic-entry-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.generic-entry-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.generic-entry-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

:root[data-theme="light"] .generic-entry-icon {
  border-color: rgba(30, 47, 62, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.generic-entry-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.generic-entry-copy strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.generic-entry-copy span {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.46;
}

.generic-entry-action {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(124, 199, 232, 0.22);
  border-radius: 999px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 760;
  background: rgba(124, 199, 232, 0.07);
}

:root[data-theme="light"] .generic-entry-action {
  color: #303942;
  border-color: rgba(31, 38, 45, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.setup {
  padding-top: 72px;
}

.setup-heading {
  margin-bottom: 22px;
}

.detail-panel {
  min-height: 500px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(460px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.detail-main,
.detail-side {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

:root[data-theme="light"] .detail-main,
:root[data-theme="light"] .detail-side {
  border-color: rgba(30, 47, 62, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 252, 0.86)),
    var(--surface);
  box-shadow: 0 24px 58px rgba(48, 70, 92, 0.11);
}

.detail-main {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
}

.detail-side {
  min-height: 560px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detail-title-row .client-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.detail-title-row .client-icon img {
  width: 31px;
  height: 31px;
}

.detail-main h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
}

.detail-main p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.detail-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(124, 199, 232, 0.2);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(124, 199, 232, 0.07);
  font-size: 13px;
}

:root[data-theme="light"] .detail-badge {
  border-color: rgba(31, 38, 45, 0.16);
  color: #37424c;
  background: rgba(250, 252, 254, 0.68);
}

.primary-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}

.copy-content strong,
.side-block strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.copy-content {
  min-width: 0;
}

.direct-open-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  width: 100%;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(124, 199, 232, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(124, 199, 232, 0.115), rgba(255, 255, 255, 0.028) 58%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

:root[data-theme="light"] .direct-open-panel {
  border-color: rgba(31, 38, 45, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 244, 248, 0.9)),
    #f8fafc;
}

.direct-open-panel p {
  max-width: 46ch;
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.62;
}

.button-direct {
  justify-self: end;
  white-space: nowrap;
}

.direct-open-note {
  grid-column: 1 / -1;
  max-width: 62ch;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.5;
}

.copy-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.copy-tab {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.copy-tab:hover,
.copy-tab[aria-selected="true"] {
  color: var(--text);
  border-color: rgba(124, 199, 232, 0.28);
  background: rgba(124, 199, 232, 0.1);
}

:root[data-theme="light"] .copy-tabs {
  border-color: rgba(30, 47, 62, 0.13);
  background: rgba(255, 255, 255, 0.64);
}

:root[data-theme="light"] .copy-tab:hover,
:root[data-theme="light"] .copy-tab[aria-selected="true"] {
  color: #20242a;
  border-color: rgba(31, 38, 45, 0.18);
  background: rgba(239, 243, 247, 0.92);
}

.code-box {
  width: 100%;
  min-height: 118px;
  margin-top: 14px;
  padding: 16px;
  max-height: 196px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  color: #dbeef6;
  background: rgba(3, 6, 7, 0.58);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre;
  word-break: normal;
}

.code-box-prompt {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.code-box-config {
  min-height: 276px;
  max-height: none;
  overflow: auto;
}

.code-box-command,
.code-box-remote {
  min-height: 76px;
}

:root[data-theme="light"] .code-box {
  color: #1e2e37;
  border-color: rgba(30, 47, 62, 0.13);
  background: rgba(255, 255, 255, 0.82);
}

.copy-feedback {
  min-height: 22px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.copy-footer {
  margin-top: auto;
  padding-top: 28px;
}

.side-block {
  position: relative;
  padding-left: 0;
}

.side-block + .side-block {
  margin-top: clamp(24px, 3.2vh, 30px);
  padding-top: clamp(20px, 2.6vh, 26px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .side-block + .side-block {
  border-top-color: rgba(30, 47, 62, 0.1);
}

.side-block p {
  max-width: 58ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  line-height: 1.35;
}

.steps li + li {
  margin-top: 0;
}

:root[data-theme="light"] .steps li {
  background: transparent;
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

:root[data-theme="light"] .step-index {
  border-color: rgba(30, 47, 62, 0.14);
  background: rgba(255, 255, 255, 0.62);
}

.safety-list {
  display: grid;
  gap: 11px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.safety-list li {
  position: relative;
  padding-left: 16px;
}

.safety-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(242, 240, 236, 0.44);
}

:root[data-theme="light"] .safety-list li::before {
  background: rgba(32, 36, 42, 0.4);
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 104px;
  padding: 24px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

:root[data-theme="light"] .site-footer {
  border-top-color: rgba(18, 32, 44, 0.12);
}

.footer-identity {
  min-width: 0;
  display: flex;
  align-items: center;
}

.footer-brandline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.footer-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--tool-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--tool-hover-bg);
}

:root[data-theme="light"] .footer-links a {
  color: #0d1217;
  border-color: rgba(25, 34, 42, 0.22);
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.96), rgba(225, 235, 244, 0.86)),
    #eef5fa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(30, 42, 54, 0.1),
    0 10px 22px rgba(45, 65, 85, 0.1);
}

:root[data-theme="light"] .footer-links a:hover {
  border-color: rgba(22, 33, 44, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(216, 231, 241, 0.92)),
    #eaf3f9;
}

.footer-links a:active {
  transform: translateY(0);
}

.noscript-panel {
  width: min(680px, calc(100% - 32px));
  margin: 32px auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
}

.noscript-panel pre {
  overflow: auto;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(143, 216, 255, 0.72);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .section-heading,
  .client-card,
  .generic-entry-card,
  .detail-card {
    animation: rise-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .client-card:nth-child(2) {
    animation-delay: 60ms;
  }

  .client-card:nth-child(3) {
    animation-delay: 120ms;
  }

  .client-card:nth-child(4) {
    animation-delay: 180ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1120px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: calc(var(--header-h) + 36px);
  }

  .hero-scene-image img {
    object-position: 62% center;
    transform: translateX(clamp(44px, 8vw, 96px)) scale(0.9);
  }

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

  .detail-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  :root:not([data-theme="light"]) body {
    background:
      radial-gradient(circle at 72% 10%, rgba(124, 199, 232, 0.12), transparent 17rem),
      linear-gradient(180deg, var(--bg), var(--bg-2));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 16px;
  }

  .brand-word {
    font-size: 21px;
  }

  .brand-badge {
    height: 22px;
    padding-inline: 7px;
    font-size: 10px;
  }

  .header-tools {
    gap: 6px;
  }

  .header-tool {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .language-toggle {
    min-width: 42px;
    padding-inline: 9px;
  }

  .button {
    min-height: 42px;
    padding-inline: 16px;
    border-radius: 11px;
  }

  .section-screen {
    width: min(100% - 32px, var(--max));
    min-height: auto;
    padding: 62px 0;
  }

  .hero {
    width: 100%;
    margin: 0;
    min-height: calc(100dvh - var(--header-h));
    align-items: start;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 28px;
    padding-inline: 16px;
    gap: 20px;
  }

  :root:not([data-theme="light"]) .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.44) 48%, rgba(8, 8, 8, 0.88)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.72));
  }

  .hero-scene-image img {
    object-position: center center;
    transform: none;
  }

  :root[data-theme="light"] .hero::after {
    background:
      linear-gradient(180deg, rgba(236, 245, 252, 0.76), rgba(236, 245, 252, 0.66) 42%, rgba(236, 245, 252, 0.18) 72%, rgba(236, 245, 252, 0.08)),
      linear-gradient(90deg, rgba(236, 245, 252, 0.94), rgba(236, 245, 252, 0.76) 58%, rgba(236, 245, 252, 0.08));
  }

  .section-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.5vw, 48px);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
  }

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

  .section-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .section-heading p:not(.section-kicker) {
    font-size: 16px;
  }

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

  .client-card {
    min-height: 178px;
  }

  .generic-entry-card {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .generic-entry-action {
    width: 100%;
  }

  .detail-main,
  .detail-side {
    min-height: auto;
    padding: 20px;
  }

  .detail-side {
    justify-content: flex-start;
  }

  .primary-action {
    margin-top: 28px;
  }

  .copy-footer {
    margin-top: 22px;
    padding-top: 0;
  }

  .detail-title-row {
    align-items: flex-start;
  }

  .direct-open-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .button-direct,
  .button-copy {
    width: 100%;
  }

  .copy-tabs {
    width: 100%;
  }

  .copy-tab {
    flex: 1 1 auto;
  }

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

  .side-block + .side-block {
    margin-top: 22px;
    padding-top: 22px;
  }

  .code-box {
    max-height: 220px;
  }

  .code-box-config {
    min-height: 260px;
    max-height: none;
  }

  .site-footer {
    width: min(100% - 32px, var(--max));
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
    min-height: 126px;
    padding-bottom: 30px;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-links a {
    flex: 1 1 96px;
  }
}

@media (max-width: 380px) {
  .brand-badge {
    display: none;
  }

  .brand-word {
    font-size: 19px;
  }

  .header-tools {
    gap: 6px;
  }

  .header-tool {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .language-toggle {
    min-width: 40px;
    padding-inline: 8px;
  }
}
