@layer reset, base, components, responsive;
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  body,
  h1,
  h2,
  h3,
  p {
    margin: 0;
  }
  button,
  input {
    font: inherit;
  }
  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
  [hidden] {
    display: none !important;
  }
}
@layer base {
  :root {
    color-scheme: dark;
    --bg: #080b11;
    --surface: #0e141b;
    --line: #253038;
    --text: #f0f3f5;
    --muted: #a0aab8;
    --accent: #7eb6ff;
    --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    font-family:
      'Inter',
      -apple-system,
      BlinkMacSystemFont,
      'Segoe UI',
      sans-serif;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
  }
  body {
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button {
    cursor: pointer;
  }
  a,
  button,
  input,
  summary {
    outline-offset: 5px;
  }
  :focus-visible {
    outline: 2px solid var(--accent);
  }
  ::selection {
    background: var(--accent);
    color: var(--bg);
  }
  h1,
  h2,
  h3 {
    line-height: 1.1;
    font-weight: 550;
    letter-spacing: -0.045em;
  }
  h2 {
    font-size: clamp(2rem, 3.7vw, 3.3rem);
  }
  h3 {
    font-size: 1.4rem;
    letter-spacing: -0.025em;
  }
  .wrap {
    width: min(1240px, calc(100% - 96px));
    margin-inline: auto;
  }
  .eyebrow {
    font: 500 0.75rem/1.5 var(--mono);
    letter-spacing: 0.15em;
    color: var(--accent);
  }
  .status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
  }
  .skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 20;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--bg);
  }
  .skip-link:focus {
    top: 10px;
  }
}
@layer components {
  .announcement {
    min-height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    font-size: 0.75rem;
    background: #101e1f;
    border-bottom: 1px solid #203334;
    color: #bdd1cc;
  }
  .announcement a {
    margin-left: 8px;
    color: var(--accent);
  }
  .announcement a span {
    margin-left: 8px;
  }
  .header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 5;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.55rem;
    font-weight: 650;
    letter-spacing: -0.045em;
    white-space: nowrap;
    line-height: 1;
  }
  .brand span {
    color: var(--accent);
  }
  .brand svg {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
  }
  .brand svg circle {
    fill: var(--accent);
    stroke: none;
  }
  .desktop-nav,
  .header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.875rem;
  }
  .desktop-nav {
    margin-left: auto;
    margin-right: 32px;
  }
  .desktop-nav a,
  .login-link {
    color: #c6d0d3;
  }
  .desktop-nav a:hover,
  .login-link:hover {
    color: var(--accent);
  }
  .header-actions {
    gap: 24px;
  }
  .request-device {
    background: none;
    border: 0;
    color: #c6d0d3;
    font-size: 0.8125rem;
    padding: 0;
    white-space: nowrap;
  }
  .request-device:hover {
    color: var(--accent);
  }
  .request-dialog {
    width: min(26rem, calc(100vw - 32px));
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    padding: 0;
  }
  .request-dialog::backdrop {
    background: #02090dd9;
  }
  .request-form {
    display: grid;
    gap: 12px;
    padding: 18px 20px 20px;
  }
  .request-lede {
    color: var(--muted);
    font-size: 0.875rem;
    margin: 0;
  }
  .request-form label {
    display: grid;
    gap: 6px;
    font-size: 0.8rem;
    color: #c6d0d3;
  }
  .request-form input,
  .request-form textarea {
    background: #0b1418;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 6px;
    padding: 8px 10px;
  }
  .request-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
  }
  .request-status {
    min-height: 1.2em;
    font-size: 0.8rem;
    color: var(--accent);
    margin: 0;
  }
  .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 15px 23px;
    background: var(--accent);
    color: #0a1220;
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 650;
    line-height: 1.5;
    transition:
      background 0.15s,
      border-color 0.15s;
  }
  .button:hover {
    background: #a6ffda;
    border-color: #a6ffda;
  }
  .button span {
    font-size: 1.2em;
  }
  .button-small {
    padding: 10px 16px;
    gap: 18px;
  }
  .button-secondary {
    background: #101b1dd9;
    color: var(--text);
    border-color: #34464a;
  }
  .button-secondary:hover {
    background: #1a2a2d;
    border-color: #728c8c;
  }
  .icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 10px;
    width: 42px;
    height: 42px;
  }
  .icon-button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }
  .menu-toggle {
    display: none;
  }
  .hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 56px 0 0;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 73% 44%, #144a3c42, transparent 55%);
    z-index: -2;
  }
  .hero-grid {
    position: absolute;
    z-index: -1;
    left: -45%;
    right: -45%;
    top: 15%;
    height: 1050px;
    background-image:
      linear-gradient(#5ee6b92b 1px, transparent 1px),
      linear-gradient(90deg, #5ee6b92b 1px, transparent 1px);
    background-size: 90px 90px;
    transform: perspective(630px) rotateX(60deg) rotateZ(-17deg);
    transform-origin: center top;
    mask-image: radial-gradient(ellipse at center, #000 10%, transparent 66%);
    pointer-events: none;
  }
  .hero-content {
    position: relative;
  }
  .tiny-cross {
    color: var(--accent);
    margin-right: 9px;
  }
  h1 {
    font-size: clamp(3.7rem, 7vw, 6.8rem);
    margin-top: 26px;
    letter-spacing: -0.065em;
    line-height: 0.99;
  }
  h1 > span {
    color: var(--accent);
  }
  .hero-copy {
    color: #b4c4c7;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-top: 28px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }
  .hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8ea6aa;
    font: 0.75rem/1.6 var(--mono);
    margin-top: 20px;
  }
  .drawing-preview {
    margin-top: 61px;
    border: 1px solid #425851;
    border-radius: 9px;
    background: #0b1418;
    overflow: hidden;
    box-shadow:
      0 0 65px #69e7b40a,
      0 30px 90px #0006;
  }
  .drawing-bar {
    height: 52px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    font-size: 0.875rem;
    background: #121f23;
  }
  .drawing-mark {
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 16px;
  }
  .drawing-bar strong {
    font-weight: 500;
  }
  .drawing-path {
    color: #90a6ac;
    margin-left: 12px;
  }
  .example-label {
    color: #98b0b2;
    font: 0.6875rem var(--mono);
    letter-spacing: 0.1em;
  }
  .drawing-body {
    display: flex;
  }
  .drawing-tools {
    flex: 0 0 54px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
    padding-top: 20px;
    color: #94aaae;
  }
  .drawing-tools span {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 30px;
  }
  .drawing-tools .tool-selected {
    color: var(--accent);
    border: 1px solid #4d6fa0;
    border-radius: 4px;
    background: #1a2a4455;
  }
  .signal-diagram {
    width: calc(100% - 54px);
    height: auto;
    display: block;
  }
  .diagram-wires {
    stroke: #75d9b3;
    stroke-width: 1.8;
    fill: none;
  }
  .diagram-wires .audio-wire {
    stroke: #8ca9e3;
  }
  .wire-labels {
    fill: #8ab6a8;
    font: 10px var(--mono);
    letter-spacing: 0.7px;
  }
  .diagram-device {
    fill: #121826;
    stroke: #3a4a58;
  }
  .device-kickers {
    fill: #819b9f;
    font: 10px var(--mono);
    letter-spacing: 0.8px;
  }
  .device-titles {
    fill: #dcebe6;
    font:
      14px -apple-system,
      BlinkMacSystemFont,
      'Segoe UI',
      sans-serif;
  }
  .ports {
    fill: #121826;
    stroke: #7eb6ff;
    stroke-width: 1.6;
  }
  .diagram-note {
    fill: #7d969b;
    font: 11px var(--mono);
  }
  .drawing-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid var(--line);
    color: #8ba4a7;
    font: 0.6875rem var(--mono);
  }
  .drawing-footer .status-dot {
    margin-right: 8px;
  }
  .footer-divider {
    margin: 0 10px;
    color: #52676c;
  }
  .system-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 32px;
    border-bottom: 1px solid var(--line);
  }
  .system-strip > span:first-child {
    font: 0.6875rem var(--mono);
    letter-spacing: 0.1em;
    color: #80969b;
    max-width: 100px;
    line-height: 1.7;
  }
  .system-strip p {
    font-size: 0.875rem;
    color: #b9c7ca;
  }
  .strip-cross {
    color: #506762;
  }
  .section {
    padding-block: 104px;
  }
  .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 48px;
    margin-bottom: 44px;
  }
  .section-heading .eyebrow {
    margin-bottom: 22px;
  }
  .section-heading > p {
    max-width: 410px;
    color: var(--muted);
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }
  .feature-card {
    padding: 34px 30px;
    background: linear-gradient(145deg, #13202488, #0c1518);
  }
  .feature-card + .feature-card {
    border-left: 1px solid var(--line);
  }
  .feature-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid #3a5278;
    border-radius: 8px;
    background: #152033;
    font-size: 1.8rem;
    margin-bottom: 37px;
  }
  .card-index {
    font: 0.6875rem var(--mono);
    color: #8bada5;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }
  .feature-card > p:not(.card-index) {
    color: var(--muted);
    margin-top: 18px;
    font-size: 1rem;
  }
  .check-list {
    list-style: none;
    padding: 23px 0 0;
    margin: 0;
    color: #bacbc9;
    font-size: 0.875rem;
  }
  .check-list li {
    margin-top: 8px;
  }
  .check-list li::before {
    content: '↳';
    color: var(--accent);
    margin-right: 10px;
  }
  .site-footer {
    padding-block: 38px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 25px;
    color: #8fa5a9;
    font-size: 0.875rem;
  }
  .site-footer .brand {
    color: var(--text);
    font-size: 1.25rem;
  }
  .site-footer > a:last-of-type {
    margin-left: auto;
  }
  .mobile-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #122025;
    box-shadow: 0 16px 25px #0008;
  }
  .mobile-nav a {
    display: block;
    padding: 12px;
  }
  .systems-section {
    border-block: 1px solid var(--line);
    background: #0c1418;
  }
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .solutions-grid article {
    padding-top: 20px;
    border-top: 1px solid #345148;
  }
  .solution-number {
    display: block;
    color: #6e9e8c;
    font: 0.75rem var(--mono);
    margin-bottom: 31px;
  }
  .solutions-grid h3 {
    font-size: 1.3rem;
  }
  .solutions-grid p {
    color: var(--muted);
    margin-top: 17px;
  }
  .solution-tags {
    display: block;
    font: 0.625rem/1.7 var(--mono);
    letter-spacing: 0.06em;
    color: #8ab2a6;
    margin-top: 24px;
  }
  .workflow-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }
  .workflow-intro h2,
  .faq-section h2 {
    margin-top: 22px;
  }
  .workflow-intro > p:not(.eyebrow) {
    color: var(--muted);
    max-width: 360px;
    margin-top: 25px;
  }
  .text-link {
    display: inline-flex;
    gap: 25px;
    align-items: center;
    color: var(--accent);
    margin-top: 27px;
    font-size: 0.875rem;
  }
  .text-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .workflow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .workflow-steps li {
    display: flex;
    gap: 28px;
    padding-block: 28px;
    border-bottom: 1px solid var(--line);
  }
  .workflow-steps li:first-child {
    padding-top: 0;
  }
  .step-number {
    color: var(--accent);
    font: 0.875rem var(--mono);
    padding-top: 5px;
  }
  .workflow-steps p {
    color: var(--muted);
    margin-top: 12px;
  }
  .roadmap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    padding: 55px;
    background: linear-gradient(110deg, #132522, #101b20);
    border: 1px solid #354a43;
    border-radius: 8px;
  }
  .roadmap h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-top: 20px;
  }
  .roadmap-copy > p:not(.eyebrow) {
    color: var(--muted);
    max-width: 340px;
    margin-top: 20px;
  }
  .roadmap-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .roadmap-items > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-block: 26px;
  }
  .roadmap-items > div + div {
    border-top: 1px solid #2d423f;
  }
  .roadmap-items h3 {
    font-size: 1rem;
    letter-spacing: -0.01em;
  }
  .roadmap-items p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 6px;
  }
  .roadmap-symbol {
    font-size: 1.6rem;
    color: #8ab1a2;
  }
  .badge {
    margin-left: auto;
    font: 0.5625rem var(--mono);
    border: 1px solid #435454;
    padding: 4px 6px;
    border-radius: 3px;
    color: #abc0bc;
  }
  .badge-current {
    border-color: #4d6fa0;
    color: var(--accent);
  }
  .faq-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
  }
  .faq-list details {
    border-bottom: 1px solid var(--line);
  }
  .faq-list details:first-child {
    border-top: 1px solid var(--line);
  }
  .faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 23px 30px 23px 0;
    position: relative;
    font-weight: 500;
  }
  .faq-list summary::-webkit-details-marker {
    display: none;
  }
  .faq-list summary::after {
    content: '+';
    color: var(--accent);
    position: absolute;
    right: 3px;
    top: 21px;
    font-size: 1.2rem;
  }
  .faq-list details[open] summary::after {
    content: '−';
  }
  .faq-list details p {
    padding: 0 28px 25px 0;
    color: var(--muted);
  }
  .closing-cta {
    text-align: center;
    padding: 73px 30px 80px;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid #426354;
  }
  .closing-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-top: 24px;
  }
  .closing-cta > p:not(.eyebrow) {
    color: var(--muted);
    margin-top: 25px;
  }
  .closing-cta .button {
    margin-top: 30px;
  }
  .closing-grid {
    position: absolute;
    inset: -60px -300px;
    transform: perspective(400px) rotateX(60deg);
    background:
      linear-gradient(#69ddb527 1px, transparent 1px),
      linear-gradient(90deg, #69ddb527 1px, transparent 1px);
    background-size: 65px 65px;
    z-index: -1;
    mask-image: radial-gradient(ellipse, #000 0%, transparent 62%);
  }
  .closing-coordinate {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #718c83;
    font: 0.625rem var(--mono);
    letter-spacing: 0.1em;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .search-dialog {
    width: min(580px, calc(100% - 32px));
    max-height: 80dvh;
    margin: 12dvh auto auto;
    padding: 22px;
    background: #101c21;
    color: var(--text);
    border: 1px solid #4b7260;
    border-radius: 12px;
    box-shadow: 0 24px 100px #000b;
  }
  .search-dialog::backdrop {
    background: #02090dd9;
  }
  .search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .search-header h2 {
    font-size: 1.25rem;
  }
  .search-close {
    font-size: 1.7rem;
  }
  #site-search {
    width: 100%;
    padding: 13px 15px;
    margin-top: 14px;
    color: var(--text);
    background: #081216;
    border: 1px solid #445953;
    border-radius: 5px;
    font-size: 1rem;
  }
  .search-status {
    color: var(--muted);
    font-size: 0.875rem;
    margin-top: 18px;
  }
  .search-results {
    list-style: none;
    padding: 0;
    margin: 15px 0;
  }
  .search-results a {
    display: block;
    padding: 14px 12px;
    border-top: 1px solid var(--line);
    border-radius: 3px;
  }
  .search-results a:hover,
  .search-results a:focus-visible {
    background: #1a2a40;
    color: var(--accent);
  }
  .search-results strong {
    font-size: 1rem;
    font-weight: 500;
    display: block;
  }
  .search-results small {
    display: block;
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 4px;
  }
  .search-hint {
    display: flex;
    justify-content: space-between;
    color: #8fa7a4;
    font: 0.6875rem var(--mono);
    border-top: 1px solid var(--line);
    padding-top: 15px;
  }
  body:has(.search-dialog[open]) {
    overflow: hidden;
  }
}
@layer responsive {
  @media (max-width: 1100px) {
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    .roadmap {
      padding: 35px;
      gap: 30px;
    }
    .roadmap-symbol {
      display: none;
    }
    .workflow-section {
      gap: 50px;
    }
  }
  @media (max-width: 850px) {
    .workflow-section,
    .faq-section,
    .roadmap {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .faq-section > div:first-child {
      max-width: 450px;
    }
    .roadmap-items > div {
      padding-block: 22px;
    }
  }
  @media (max-width: 550px) {
    .solutions-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .solution-number {
      margin-bottom: 18px;
    }
    .roadmap {
      padding: 28px 22px;
    }
    .roadmap-items h3 {
      font-size: 0.9375rem;
    }
    .badge {
      font-size: 0.625rem;
    }
    .closing-cta {
      padding-inline: 0;
      margin-bottom: 40px;
    }
    .workflow-steps li {
      gap: 20px;
    }
    .search-dialog {
      padding: 16px;
    }
  }
  @media (min-width: 1600px) {
    .hero-grid {
      top: 0;
    }
  }
  @media (max-width: 1100px) {
    .desktop-nav {
      gap: 19px;
      margin-right: 0;
    }
    .header-actions {
      gap: 9px;
    }
    .login-link {
      display: none;
    }
    .wrap {
      width: calc(100% - 64px);
    }
    .feature-card {
      padding: 28px 23px;
    }
  }
  @media (max-width: 850px) {
    .header {
      height: 86px;
    }
    .desktop-nav {
      display: none;
    }
    .menu-toggle {
      display: inline-flex;
    }
    .section-heading {
      align-items: start;
      flex-direction: column;
      gap: 25px;
    }
    .section {
      padding-block: 72px;
    }
    .feature-grid {
      grid-template-columns: 1fr;
    }
    .feature-card + .feature-card {
      border-left: 0;
      border-top: 1px solid var(--line);
    }
    .feature-icon {
      margin-bottom: 24px;
    }
    .system-strip {
      flex-wrap: wrap;
      justify-content: start;
      gap: 12px 24px;
    }
    .system-strip > span:first-child {
      max-width: none;
      flex-basis: 100%;
    }
    .strip-cross {
      display: none;
    }
    .drawing-footer > span:last-child {
      display: none;
    }
  }
  @media (max-width: 550px) {
    .wrap {
      width: calc(100% - 40px);
    }
    .announcement {
      font-size: 0.6875rem;
      gap: 8px;
      padding-inline: 15px;
    }
    .announcement a {
      display: none;
    }
    .header {
      gap: 12px;
      height: 80px;
    }
    .brand {
      font-size: 1.35rem;
    }
    .brand svg {
      width: 27px;
      margin-right: 8px;
    }
    .header-actions {
      gap: 0;
    }
    .header-actions .button {
      display: none;
    }
    .hero {
      padding-top: 38px;
    }
    h1 {
      font-size: clamp(3.2rem, 12.5vw, 4.6rem);
    }
    .eyebrow {
      font-size: 0.6875rem;
      letter-spacing: 0.08em;
    }
    .hero-copy {
      font-size: 1rem;
    }
    .desktop-break {
      display: none;
    }
    .hero-actions {
      gap: 10px;
    }
    .hero-actions .button {
      padding: 13px 15px;
      gap: 13px;
    }
    .hero-note {
      font-size: 0.6875rem;
      max-width: 300px;
    }
    .drawing-preview {
      margin-top: 40px;
    }
    .drawing-bar {
      padding-inline: 12px;
      font-size: 0.75rem;
    }
    .drawing-path,
    .example-label,
    .drawing-tools {
      display: none;
    }
    .signal-diagram {
      width: 100%;
      min-width: 580px;
    }
    .drawing-body {
      overflow-x: auto;
    }
    .drawing-footer {
      padding: 12px;
      font-size: 0.625rem;
    }
    .footer-divider {
      margin: 0 5px;
    }
    .site-footer {
      flex-wrap: wrap;
      gap: 18px;
    }
    .site-footer p {
      display: none;
    }
    .site-footer > span {
      flex-basis: 100%;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }
  }
}
