:root {
  --help-bg: #f2f4f1;
  --help-surface: #fcfdfb;
  --help-surface-soft: #e8ece8;
  --help-text: #182126;
  --help-text-soft: #526067;
  --help-text-faint: #526067;
  --help-accent: #e36432;
  --help-accent-text: #a43b17;
  --help-accent-soft: rgba(227, 100, 50, 0.12);
  --help-border: rgba(24, 33, 38, 0.1);
  --help-border-strong: rgba(24, 33, 38, 0.18);
  --help-shadow: 0 1px 2px rgba(24, 33, 38, 0.04), 0 18px 48px rgba(24, 33, 38, 0.08);
  --help-font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --help-bg: #101517;
    --help-surface: #192023;
    --help-surface-soft: #151d20;
    --help-text: #eff4f1;
    --help-text-soft: #acb8b4;
    --help-text-faint: #acb8b4;
    --help-accent: #ff8556;
    --help-accent-text: #ff956d;
    --help-accent-soft: rgba(255, 133, 86, 0.16);
    --help-border: rgba(239, 244, 241, 0.09);
    --help-border-strong: rgba(239, 244, 241, 0.18);
    --help-shadow: 0 1px 2px rgba(0, 0, 0, 0.22), 0 20px 54px rgba(0, 0, 0, 0.3);
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, var(--help-accent-soft), transparent 30rem),
    linear-gradient(to bottom, color-mix(in srgb, var(--help-surface-soft) 32%, transparent), transparent 24rem),
    var(--help-bg);
  color: var(--help-text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--help-accent-text);
  outline-offset: 3px;
}

::selection {
  background: color-mix(in srgb, var(--help-accent) 34%, transparent);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  background: var(--help-text);
  color: var(--help-surface);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}

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

.help-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--help-border);
  background: color-mix(in srgb, var(--help-bg) 88%, transparent);
  backdrop-filter: blur(20px) saturate(1.15);
}

.help-header-inner,
.help-footer-inner {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
}

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

.help-brand {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--help-text);
  text-decoration: none;
}

.help-brand img {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
}

.help-brand picture {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  flex: 0 0 auto;
}

.help-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.help-brand-name {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.help-brand-name span {
  color: var(--help-accent);
}

.help-brand-section {
  margin-top: 0.2rem;
  color: var(--help-text-faint);
  font-family: var(--help-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.open-app-link,
.text-link,
.next-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--help-text);
  font-weight: 700;
  text-decoration: none;
}

.open-app-link {
  min-height: 2.75rem;
  padding: 0 0.85rem;
  border: 1px solid var(--help-border-strong);
  border-radius: 0.75rem;
  background: var(--help-surface);
  font-size: 0.78rem;
  box-shadow: 0 5px 14px color-mix(in srgb, var(--help-text) 7%, transparent);
}

.open-app-link:hover,
.text-link:hover,
.next-guide-link:hover {
  color: var(--help-accent-text);
}

.help-main {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: 1.5rem 0 5rem;
}

.breadcrumbs {
  margin-bottom: 3rem;
  color: var(--help-text-faint);
  font-family: var(--help-font-mono);
  font-size: 0.68rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  color: var(--help-border-strong);
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--help-text);
}

.help-hero,
.article-header {
  position: relative;
}

.help-hero {
  max-width: 54rem;
  padding: clamp(1rem, 4vw, 3.5rem) 0 4rem;
}

.article-header {
  max-width: 50rem;
  margin-bottom: 3rem;
}

.eyebrow,
.guide-code,
.section-kicker,
.callout-label,
.specimen-rail {
  font-family: var(--help-font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.callout-label {
  color: var(--help-accent-text);
  font-size: 0.7rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.eyebrow::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--help-accent);
  box-shadow: 0 0 0 0.28rem var(--help-accent-soft);
  content: '';
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--help-text);
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 15ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.65rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.article-header h1 {
  font-size: clamp(2.45rem, 6vw, 4.8rem);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.14;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.04rem;
  line-height: 1.3;
}

.hero-copy,
.article-lede {
  max-width: 43rem;
  margin: 0;
  color: var(--help-text-soft);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--help-border-strong);
  border-radius: 1.2rem;
  background: color-mix(in srgb, var(--help-surface) 94%, transparent);
  box-shadow: var(--help-shadow);
}

.product-story-copy,
.product-story-visual {
  min-width: 0;
}

.product-story-copy {
  padding: clamp(1.5rem, 4vw, 3.25rem);
}

.product-story-copy .section-kicker {
  margin: 0 0 1rem;
}

.product-story h2 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.02;
}

.product-story-copy > p:not(.section-kicker) {
  margin: 0 0 1rem;
  color: var(--help-text-soft);
}

.product-story-copy .product-story-lede {
  color: var(--help-text);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
}

.product-story-privacy {
  padding-left: 1rem;
  border-left: 0.2rem solid var(--help-accent);
}

.product-story-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.8rem;
}

.product-story-primary,
.product-story-actions .text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
}

.product-story-primary {
  padding: 0 1rem;
  border-radius: 0.75rem;
  background: var(--help-text);
  color: var(--help-surface);
  font-weight: 700;
  text-decoration: none;
}

.product-story-primary span {
  margin-left: 0.45rem;
  color: var(--help-accent);
}

.product-story-primary:hover {
  background: color-mix(in srgb, var(--help-text) 88%, var(--help-accent));
}

.product-story-visual {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-left: 1px solid var(--help-border);
  background-color: var(--help-surface-soft);
  background-image:
    linear-gradient(to right, var(--help-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--help-border) 1px, transparent 1px);
  background-position: -1px -1px;
  background-size: 1.5rem 1.5rem;
}

.product-story-diagram {
  width: 100%;
  height: auto;
  display: block;
}

.product-story-visual figcaption {
  margin-top: 0.75rem;
  color: var(--help-text-faint);
  font-family: var(--help-font-mono);
  font-size: 0.67rem;
}

.story-svg-window,
.story-svg-sheet,
.story-svg-search,
.story-svg-result,
.story-svg-local-tag {
  vector-effect: non-scaling-stroke;
}

.story-svg-window,
.story-svg-sheet {
  fill: var(--help-surface);
  stroke: var(--help-border-strong);
  stroke-width: 1;
}

.story-svg-window {
  filter: drop-shadow(0 12px 18px color-mix(in srgb, var(--help-text) 12%, transparent));
}

.story-svg-search {
  fill: var(--help-surface-soft);
  stroke: var(--help-border-strong);
  stroke-width: 1;
}

.story-svg-result {
  fill: var(--help-bg);
  stroke: var(--help-border);
  stroke-width: 1;
}

.story-svg-local-tag {
  fill: var(--help-accent-soft);
  stroke: var(--help-accent);
  stroke-width: 1;
}

.story-svg-divider,
.story-svg-search-icon {
  fill: none;
  stroke: var(--help-border-strong);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.story-svg-search-icon {
  stroke: var(--help-accent-text);
  stroke-linecap: round;
}

.story-svg-route {
  fill: none;
  stroke: var(--help-accent-text);
  stroke-linecap: round;
  stroke-width: 2.4;
  vector-effect: non-scaling-stroke;
}

.story-svg-accent-bar,
.story-svg-local-dot {
  fill: var(--help-accent);
}

.story-svg-arrow {
  fill: var(--help-accent-text);
}

.story-svg-window-dot {
  fill: var(--help-border-strong);
}

.story-svg-label,
.story-svg-code {
  font-family: var(--help-font-mono);
}

.story-svg-label {
  fill: var(--help-text-faint);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.story-svg-code {
  fill: var(--help-text);
  font-size: 16px;
}

.story-svg-window-label {
  fill: var(--help-text-soft);
}

.story-svg-local-label {
  fill: var(--help-accent-text);
  font-size: 12px;
}

.product-story-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border-top: 1px solid var(--help-border-strong);
  background: var(--help-border-strong);
}

.product-story-facts > div {
  padding: 1rem 1.1rem 1.1rem;
  background: var(--help-surface);
}

.product-story-facts dt {
  margin-bottom: 0.35rem;
  color: var(--help-text);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-story-facts dd {
  margin: 0;
  color: var(--help-text-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

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

.guide-card {
  position: relative;
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--help-border-strong);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--help-surface) 91%, transparent);
  box-shadow: var(--help-shadow);
}

.guide-card::before {
  position: absolute;
  top: 0;
  left: 1.4rem;
  width: 3.2rem;
  height: 0.22rem;
  background: var(--help-accent);
  content: '';
}

.guide-code {
  margin: 0 0 2.7rem;
  color: var(--help-text-faint);
  font-size: 0.64rem;
}

.guide-card h3 {
  max-width: 12ch;
  font-size: 1.55rem;
}

.guide-card p {
  margin: 0 0 1.5rem;
  color: var(--help-text-soft);
  font-size: 0.92rem;
}

.guide-card .text-link {
  min-height: 2.75rem;
  margin-top: auto;
  font-size: 0.82rem;
}

.help-section {
  margin: 0 0 5rem;
}

.help-section-heading {
  max-width: 43rem;
  margin-bottom: 1.7rem;
}

.help-section-heading p {
  margin: 0;
  color: var(--help-text-soft);
}

.shortcut-wrap {
  overflow-x: auto;
  border: 1px solid var(--help-border);
  border-radius: 1rem;
  background: var(--help-surface);
  box-shadow: var(--help-shadow);
}

.shortcut-table {
  width: 100%;
  border-collapse: collapse;
}

.shortcut-table th,
.shortcut-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--help-border);
  text-align: left;
}

.shortcut-table tr:last-child th,
.shortcut-table tr:last-child td {
  border-bottom: 0;
}

.shortcut-table th {
  width: 35%;
  color: var(--help-text);
  font-size: 0.82rem;
}

.shortcut-table td {
  color: var(--help-text-soft);
  font-size: 0.88rem;
}

kbd,
code {
  font-family: var(--help-font-mono);
}

kbd {
  display: inline-block;
  min-width: 1.8rem;
  margin-right: 0.18rem;
  padding: 0.18rem 0.42rem;
  border: 1px solid var(--help-border-strong);
  border-bottom-width: 2px;
  border-radius: 0.42rem;
  background: var(--help-surface-soft);
  color: var(--help-text);
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: center;
}

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

.faq-item {
  padding-top: 1.1rem;
  border-top: 2px solid var(--help-border-strong);
}

.faq-item dt {
  margin-bottom: 0.55rem;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-item dd {
  margin: 0;
  color: var(--help-text-soft);
  font-size: 0.88rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 50rem) minmax(10rem, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.article-body {
  min-width: 0;
}

.article-body > section {
  margin: 0 0 4.5rem;
  scroll-margin-top: 7rem;
}

.article-body p,
.article-body li {
  color: var(--help-text-soft);
}

.article-body p {
  margin: 0 0 1rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.article-body li {
  margin-bottom: 0.7rem;
  padding-left: 0.25rem;
}

.article-body strong {
  color: var(--help-text);
}

.article-nav {
  position: sticky;
  top: 6.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--help-border-strong);
}

.article-nav p {
  margin: 0 0 0.75rem;
  color: var(--help-text-faint);
  font-family: var(--help-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-nav li + li {
  margin-top: 0.55rem;
}

.article-nav a {
  color: var(--help-text-soft);
  font-size: 0.78rem;
  text-decoration: none;
}

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

.step-list {
  counter-reset: guide-step;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 3rem;
  margin-bottom: 1rem;
  padding: 0 0 0 3.6rem;
  counter-increment: guide-step;
}

.step-list li::before {
  position: absolute;
  top: -0.12rem;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--help-border-strong);
  border-radius: 0.72rem;
  background: var(--help-surface);
  color: var(--help-accent-text);
  font-family: var(--help-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  content: counter(guide-step, decimal-leading-zero);
}

.callout {
  margin: 1.5rem 0;
  padding: 1.2rem 1.3rem;
  border-left: 0.25rem solid var(--help-accent);
  border-radius: 0 0.8rem 0.8rem 0;
  background: var(--help-accent-soft);
}

.callout-label {
  display: block;
  margin-bottom: 0.35rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.guide-figure {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  margin: 2.5rem 0 4.5rem;
  overflow: hidden;
  border: 1px solid var(--help-border-strong);
  border-radius: 1.1rem;
  background: var(--help-surface);
  box-shadow: var(--help-shadow);
}

.specimen-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  border-right: 1px solid var(--help-border);
  background: var(--help-surface-soft);
  color: var(--help-accent-text);
  font-size: 0.62rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.specimen-body {
  min-width: 0;
  padding: 0.75rem;
}

.specimen-body picture,
.specimen-body img {
  display: block;
  width: 100%;
}

.specimen-body img {
  height: auto;
  border: 1px solid var(--help-border);
  border-radius: 0.75rem;
  background: var(--help-bg);
}

.guide-figure figcaption {
  padding: 0.8rem 0.25rem 0.15rem;
  color: var(--help-text-faint);
  font-family: var(--help-font-mono);
  font-size: 0.67rem;
}

.next-guide {
  margin-top: 5rem;
  padding: 1.4rem;
  border: 1px solid var(--help-border-strong);
  border-radius: 1rem;
  background: var(--help-surface);
}

.next-guide p {
  margin: 0 0 0.65rem;
  color: var(--help-text-faint);
  font-family: var(--help-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-guide-link {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.05rem;
}

.help-footer {
  border-top: 1px solid var(--help-border);
}

.help-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2rem 0 2.5rem;
  color: var(--help-text-faint);
  font-size: 0.74rem;
}

.help-footer p {
  margin: 0;
}

.help-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.help-footer a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--help-text-soft);
  text-decoration: none;
}

.help-footer a:hover {
  color: var(--help-text);
}

@media (max-width: 840px) {
  .product-story {
    grid-template-columns: 1fr;
  }

  .product-story-visual {
    border-top: 1px solid var(--help-border);
    border-left: 0;
  }

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

  .guide-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 0;
  }

  .guide-code {
    margin-bottom: 1.5rem;
  }

  .article-layout {
    display: block;
  }

  .article-nav {
    display: none;
  }

  .help-footer-inner {
    grid-template-columns: 1fr;
  }

  .help-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .help-header-inner,
  .help-footer-inner,
  .help-main {
    width: min(100% - 1.5rem, 72rem);
  }

  .help-header-inner {
    min-height: 4.2rem;
  }

  .help-brand-section {
    display: none;
  }

  .open-app-link {
    padding-inline: 0.7rem;
  }

  .breadcrumbs {
    margin-bottom: 2rem;
  }

  .help-hero {
    padding-top: 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.55rem);
  }

  .product-story h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .product-story-copy,
  .product-story-visual {
    padding: 1.25rem;
  }

  .product-story-facts {
    grid-template-columns: 1fr;
  }

  .guide-figure {
    display: block;
    margin-inline: -0.15rem;
  }

  .specimen-rail {
    min-height: 2.4rem;
    justify-content: flex-start;
    padding: 0 0.85rem;
    border-right: 0;
    border-bottom: 1px solid var(--help-border);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .specimen-body {
    padding: 0.5rem;
  }

  .shortcut-table th,
  .shortcut-table td {
    min-width: 8.5rem;
  }

}

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

@media print {
  :root {
    --help-bg: #fff;
    --help-surface: #fff;
    --help-surface-soft: #f2f4f1;
    --help-text: #182126;
    --help-text-soft: #526067;
    --help-text-faint: #526067;
    --help-accent: #e36432;
    --help-accent-text: #a43b17;
    --help-accent-soft: rgba(227, 100, 50, 0.12);
    --help-border: rgba(24, 33, 38, 0.1);
    --help-border-strong: rgba(24, 33, 38, 0.18);
    color-scheme: light;
  }

  .help-header,
  .article-nav,
  .help-footer,
  .next-guide {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .help-main {
    width: 100%;
    padding: 0;
  }

  .product-story {
    display: block;
    box-shadow: none;
  }

  .product-story-visual {
    display: none;
  }
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3twJwl5FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3twJwlBFgsAXHNk.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7W0Q5n-wU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/sora/v17/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwWa-xo6eeI7fM.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
  src: url('https://fonts.gstatic.com/s/sora/v17/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwV6-xo6eeIw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
