:root {
  color-scheme: light;
  --ink: #0c1b25;
  --muted: #5c6b75;
  --line: #d5dedf;
  --paper: #ffffff;
  --mist: #f3f7f6;
  --mist-strong: #e7f2ef;
  --green: #087a55;
  --green-dark: #066346;
  --green-soft: #dff3eb;
  --blue: #2f67ed;
  --blue-soft: #e8efff;
  --coral: #d95f47;
  --coral-soft: #fae8e3;
  --violet: #6758c8;
  --violet-soft: #ece9ff;
  --navy: #10232e;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(12, 27, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 68px;
  border-bottom: 1px solid rgba(12, 27, 37, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.wordmark,
.mini-wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.wordmark {
  font-size: 22px;
}

.wordmark-eye,
.mini-eye,
.hero-eye {
  position: relative;
  display: inline-block;
  margin: 0 1px;
  font-size: 0.72em;
}

.wordmark-eye::before,
.mini-eye::before,
.hero-eye::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #344752;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--green);
}

.header-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  margin-left: 9px;
}

.button-compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  border-color: #aebbbc;
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: #fff;
}

.button-dark {
  color: #fff;
  background: var(--navy);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100svh - 104px);
  max-height: 880px;
  min-height: 680px;
  overflow: hidden;
  background: var(--mist);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  background: var(--green-soft);
}

.hero::after {
  right: 0;
  bottom: 0;
  width: 18%;
  height: 43%;
  background: var(--blue);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(32px, 6vh, 70px);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-wordmark {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  font-size: 84px;
  font-weight: 900;
  line-height: 0.95;
}

.hero-promise {
  margin: 18px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  margin: 13px auto 0;
  color: #40515b;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.demo-stage {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: min(1120px, calc(100% - 40px));
  min-height: 0;
  margin: 28px auto 0;
}

.demo-mode-switch {
  display: flex;
  align-self: center;
  flex: 0 0 auto;
  gap: 2px;
  padding: 3px;
  border: 1px solid #c7d2d2;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(12, 27, 37, 0.08);
}

.demo-mode-switch button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 4px;
  color: #53646e;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.demo-mode-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--navy);
}

.demo-mode-switch svg {
  width: 15px;
  height: 15px;
}

.demo-app {
  display: grid;
  flex: 1;
  grid-template-columns: 278px 1fr;
  min-height: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #bfcaca;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.demo-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #fff;
}

.demo-sidebar-head,
.thread-header,
.thread-composer {
  display: flex;
  align-items: center;
}

.demo-sidebar-head {
  justify-content: space-between;
  height: 50px;
  padding: 0 14px;
}

.mini-wordmark {
  font-size: 16px;
}

.icon-button,
.send-button {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 34px;
  height: 34px;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--mist-strong);
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.demo-search {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 35px;
  margin: 0 10px 8px;
  padding: 0 10px;
  border-radius: 5px;
  color: #74828a;
  background: #f1f4f5;
  font-size: 13px;
}

.demo-search svg {
  width: 15px;
  height: 15px;
}

.connection-list {
  display: grid;
  gap: 3px;
  padding: 0 8px;
}

.connection-list button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 49px;
  padding: 5px 8px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.connection-list button:hover {
  background: var(--mist);
}

.connection-list button.is-active {
  border-color: #b8dfd1;
  background: var(--green-soft);
}

.connection-list strong,
.connection-list small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.connection-list strong {
  font-size: 13px;
}

.connection-list small {
  margin-top: 1px;
  color: #65767f;
  font-size: 11px;
}

.connection-avatar,
.thread-avatar,
.feature-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.connection-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.connection-avatar svg,
.thread-avatar svg,
.feature-icon svg {
  width: 17px;
  height: 17px;
}

.avatar-green,
.icon-green {
  color: var(--green-dark);
  background: var(--green-soft);
}

.avatar-blue,
.icon-blue {
  color: #2859c8;
  background: var(--blue-soft);
}

.avatar-coral,
.icon-coral {
  color: #ac402c;
  background: var(--coral-soft);
}

.avatar-violet,
.icon-violet {
  color: #5644b8;
  background: var(--violet-soft);
}

.demo-connected {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: #64757e;
  font-size: 11px;
}

.demo-connected span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.demo-thread {
  display: grid;
  grid-template-rows: 52px minmax(0, 1fr) 50px;
  min-width: 0;
  min-height: 0;
  background: #eef2f5;
}

.thread-header {
  min-width: 0;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.thread-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.thread-identity {
  min-width: 0;
  margin-left: 9px;
}

.thread-identity strong,
.thread-identity small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-identity strong {
  font-size: 13px;
}

.thread-identity small {
  color: #64757e;
  font-size: 10px;
}

.thread-actions {
  display: flex;
  margin-left: auto;
}

.thread-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  padding: 13px 16px;
  overflow: auto;
}

.thread-date {
  align-self: center;
  color: #73828a;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.message {
  max-width: min(76%, 440px);
  padding: 8px 10px;
  border: 1px solid #d0d8dd;
  border-radius: 7px;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 3px 10px rgba(12, 27, 37, 0.04);
}

.message.incoming {
  align-self: flex-start;
  background: #fff;
}

.message.outgoing {
  align-self: flex-end;
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.message-meta {
  display: block;
  margin-top: 4px;
  color: #7b8990;
  font-size: 8px;
  text-align: right;
}

.message.outgoing .message-meta {
  color: #dfe8ff;
}

.action-card {
  align-self: flex-start;
  width: min(410px, 83%);
  padding: 11px;
  border: 1px solid #cad4d8;
  border-left: 4px solid var(--coral);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 27, 37, 0.08);
}

.action-card.device-card {
  border-left-color: var(--blue);
}

.action-card.ai-card {
  border-left-color: var(--violet);
}

.action-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-card-head > span:first-child {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #ac402c;
  background: var(--coral-soft);
}

.device-card .action-card-head > span:first-child {
  color: #2859c8;
  background: var(--blue-soft);
}

.ai-card .action-card-head > span:first-child {
  color: #5644b8;
  background: var(--violet-soft);
}

.action-card-head svg {
  width: 14px;
  height: 14px;
}

.action-card-head small,
.action-card-head strong {
  display: block;
}

.action-card-head small {
  color: #73828a;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.action-card-head strong {
  font-size: 12px;
}

.action-card > p {
  margin: 8px 0;
  color: #4f6069;
  font-size: 10px;
}

.route-line {
  display: grid;
  grid-template-columns: 7px 1fr 7px;
  align-items: center;
  gap: 5px;
  margin: 10px 0;
}

.route-line span {
  width: 7px;
  height: 7px;
  border: 2px solid var(--coral);
  border-radius: 50%;
}

.route-line i {
  height: 2px;
  background: #e3a99d;
}

.card-actions {
  display: flex;
  gap: 6px;
}

.card-actions button,
.showcase-card button {
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid #c5d0d4;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
}

.card-actions button:first-child,
.showcase-card button {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 40px;
  margin: 9px 0 6px;
  padding: 0 4px;
  border-bottom: 1px solid #d7dce7;
}

.mini-bars span {
  flex: 1;
  height: var(--bar-height);
  background: var(--violet);
}

.thread-composer {
  gap: 7px;
  padding: 0 9px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.composer-placeholder {
  display: flex;
  flex: 1;
  align-items: center;
  height: 34px;
  padding: 0 11px;
  overflow: hidden;
  border: 1px solid #c4ced3;
  border-radius: 18px;
  color: #7b8990;
  font-size: 11px;
  white-space: nowrap;
}

.send-button {
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--blue);
}

.send-button svg {
  width: 16px;
  height: 16px;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
}

.wide-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.section h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.section-heading > p,
.everywhere-copy > p,
.enterprise-layout p,
.security-layout > div > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.wide-heading > p {
  margin: 0;
}

.relationship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.relationship-grid article {
  min-width: 0;
  padding: 34px 34px 38px 0;
}

.relationship-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.relationship-grid h3,
.showcase-card h3 {
  margin: 17px 0 7px;
  font-size: 20px;
}

.relationship-grid p,
.showcase-card p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.everywhere-section {
  background: var(--mist);
}

.everywhere-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.everywhere-copy h2 {
  max-width: 520px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
}

.check-list svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
}

.product-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9d2d3;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 27, 37, 0.12);
}

.product-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.product-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 15px;
  border-top: 1px solid var(--line);
  color: #52636d;
  font-size: 12px;
  font-weight: 700;
}

.product-figure figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-figure figcaption svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.cards-section {
  background: #fff;
}

.card-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.showcase-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 9px 30px rgba(12, 27, 37, 0.06);
}

.showcase-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-card header small {
  color: #718089;
  font-size: 10px;
  font-weight: 850;
}

.showcase-card p {
  min-height: 72px;
}

.showcase-card button {
  margin-top: 20px;
  min-height: 36px;
  padding: 0 13px;
  font-size: 12px;
}

.security-section {
  color: #fff;
  background: var(--navy);
}

.security-section .section-kicker,
.light-link {
  color: #6ce0b6;
}

.security-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.security-layout > div > p {
  max-width: 650px;
  color: #b8c8cf;
}

.security-layout .text-link {
  margin-top: 28px;
}

.security-facts {
  margin: 0;
  border-top: 1px solid #3d515c;
}

.security-facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #3d515c;
}

.security-facts dt {
  color: #9fb1ba;
}

.security-facts dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.enterprise-section {
  background: var(--green-soft);
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
}

.enterprise-layout p {
  margin-top: 0;
  color: #415a55;
}

.enterprise-layout .button {
  margin-top: 24px;
}

.final-cta {
  padding: 92px 0;
  color: #fff;
  background: var(--blue);
}

.final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.final-inner .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: #dce5ff;
}

.final-inner h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.final-inner .button-primary {
  color: var(--ink);
  background: #fff;
}

.site-footer {
  padding: 28px 0;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
  color: #53646e;
  font-size: 13px;
}

.footer-inner p {
  justify-self: end;
  margin: 0;
  color: #73828a;
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid rgba(47, 103, 237, 0.38);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero::before {
    width: 36%;
  }

  .hero::after {
    width: 22%;
  }

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

  .wide-heading,
  .everywhere-layout,
  .security-layout,
  .enterprise-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wide-heading > p {
    margin: 0;
  }

  .relationship-grid,
  .card-showcase {
    grid-template-columns: 1fr;
  }

  .relationship-grid article,
  .relationship-grid article + article {
    padding: 28px 0;
    border-left: 0;
  }

  .relationship-grid article + article {
    border-top: 1px solid var(--line);
  }

  .showcase-card p {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 62px;
  }

  .header-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .header-inner > .button span {
    display: none;
  }

  .header-inner > .button {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .header-inner > .button svg {
    margin: 0;
  }

  .hero {
    height: calc(100svh - 78px);
    min-height: 610px;
  }

  .hero::before {
    width: 25%;
  }

  .hero::after {
    width: 14%;
    height: 36%;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 28px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .hero-wordmark {
    font-size: 58px;
  }

  .hero-promise {
    margin-top: 12px;
    font-size: 23px;
  }

  .hero-copy {
    margin-top: 9px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 15px;
  }

  .hero-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .demo-stage {
    width: calc(100% - 22px);
    margin-top: 18px;
  }

  .demo-mode-switch {
    width: 100%;
  }

  .demo-mode-switch button {
    flex: 1;
    justify-content: center;
    min-width: 0;
    padding: 0 5px;
  }

  .demo-mode-switch button span {
    font-size: 11px;
  }

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

  .demo-sidebar {
    display: none;
  }

  .thread-body {
    padding: 10px;
  }

  .message {
    max-width: 86%;
  }

  .action-card {
    width: 92%;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .final-inner h2 {
    font-size: 34px;
  }

  .section-heading > p,
  .everywhere-copy > p,
  .enterprise-layout p,
  .security-layout > div > p {
    font-size: 15px;
  }

  .relationship-grid {
    margin-top: 42px;
  }

  .product-figure img {
    aspect-ratio: 4 / 3;
  }

  .product-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .security-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .security-facts dd {
    text-align: left;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .final-inner .button {
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .footer-inner p {
    justify-self: start;
  }
}

@media (max-height: 730px) {
  .hero {
    height: calc(100svh - 76px);
    min-height: 0;
  }

  .hero-content {
    padding-top: 18px;
  }

  .hero-wordmark {
    font-size: 54px;
  }

  .hero-promise {
    margin-top: 8px;
    font-size: 21px;
  }

  .hero-copy {
    max-width: 620px;
    margin-top: 6px;
    font-size: 13px;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .demo-stage {
    margin-top: 12px;
  }

  .demo-mode-switch button {
    min-height: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
