:root {
  --bee-yellow: #ffd84d;
  --ink: #11100d;
  --paper: #fffdf7;
  --honey: #f4b928;
  --pollen-blue: #5b75ff;
  --signal-green: #1e8f5a;
  --rule: rgba(17, 16, 13, 0.22);
  --muted: #67645b;
  --page: min(1440px, 100%);
  --pad: clamp(20px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0 auto;
  max-width: 1440px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--pollen-blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  color: var(--bee-yellow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-nav a,
.site-footer a {
  font-size: 13px;
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  min-height: calc(100svh - 72px);
  border-bottom: 1px solid var(--ink);
  background: var(--bee-yellow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(64px, 8vw, 120px) var(--pad) 42px;
  border-right: 1px solid var(--ink);
}

.status-line,
.section-kicker {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-line span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--signal-green);
  box-shadow: 0 0 0 4px rgba(30, 143, 90, 0.18);
}

h1,
h2,
h3,
p {
  max-width: 72ch;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 520;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-yellow {
  color: var(--ink);
  background: var(--bee-yellow);
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-dark:hover {
  box-shadow: 4px 4px 0 rgba(17, 16, 13, 0.35);
}

.text-link {
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-link span {
  margin-left: 6px;
}

.scope-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 64px;
}

.scope-strip span {
  padding: 6px 10px;
  border: 1px solid rgba(17, 16, 13, 0.55);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.control-tower {
  align-self: center;
  width: calc(100% - clamp(30px, 5vw, 76px));
  margin: clamp(50px, 7vw, 100px) auto;
  border: 1px solid #393833;
  color: #f9f7ef;
  background: #181713;
  box-shadow: 14px 14px 0 rgba(17, 16, 13, 0.16);
}

.tower-head,
.tower-foot,
.target-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #393833;
}

.tower-head small,
.tower-foot small,
.plugin-card small,
.powered-row span {
  display: block;
  color: #98958b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.tower-head strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.live-pill,
.connected {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid #4a4943;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49d68a;
  box-shadow: 0 0 0 4px rgba(73, 214, 138, 0.13);
}

.target-row {
  font-size: 11px;
}

.target-row span {
  color: #98958b;
}

.target-row strong {
  text-align: right;
}

.tower-grid {
  display: grid;
  grid-template-columns: 54px 1fr;
}

.source-stack {
  display: grid;
  border-right: 1px solid #393833;
}

.source-stack span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-bottom: 1px solid #393833;
  color: #d9d5ca;
  font-size: 10px;
  font-weight: 800;
}

.source-stack span:last-child {
  border-bottom: 0;
}

.lanes {
  padding: 8px 20px;
}

.lane {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 1.2fr 72px;
  align-items: center;
  min-height: 54px;
  gap: 16px;
  border-bottom: 1px solid #302f2b;
  font-size: 10px;
}

.lane:last-child {
  border-bottom: 0;
}

.lane-label span {
  margin-right: 8px;
  color: #706e67;
}

.lane-track {
  height: 5px;
  overflow: hidden;
  background: #31302b;
}

.lane-track i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--bee-yellow);
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lane.is-online .lane-track i {
  width: var(--progress);
}

.lane b {
  color: #c8c5bc;
  font-weight: 600;
  text-align: right;
}

.tower-foot {
  align-items: flex-end;
  border-top: 1px solid #393833;
  border-bottom: 0;
}

.tower-foot strong {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.pulse-chart {
  display: flex;
  height: 26px;
  align-items: end;
  gap: 3px;
}

.pulse-chart i {
  width: 5px;
  height: 35%;
  background: var(--bee-yellow);
}

.pulse-chart i:nth-child(2) { height: 60%; }
.pulse-chart i:nth-child(3) { height: 46%; }
.pulse-chart i:nth-child(4) { height: 78%; }
.pulse-chart i:nth-child(5) { height: 62%; }
.pulse-chart i:nth-child(6) { height: 100%; }

.ruled-section {
  padding: clamp(72px, 9vw, 132px) var(--pad);
  border-bottom: 1px solid var(--ink);
}

.section-kicker {
  color: var(--muted);
}

.section-kicker.light {
  color: #a8a59c;
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: end;
}

.thesis h2,
.section-heading h2,
.plugin-intro h2,
.contact h2 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.thesis-grid > div > p:first-child {
  margin: 0;
  color: #3f3d37;
  font-size: 17px;
}

.serif-note {
  margin: 34px 0 0;
  max-width: 22ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1.05;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 24px 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 900px;
}

.capability-table {
  border-top: 1px solid var(--ink);
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(250px, 0.75fr) minmax(320px, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule);
}

.capability-row:last-child {
  border-bottom-color: var(--ink);
}

.capability-index {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 32px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.capability-row ul,
.plugin-card ul,
.include-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-row ul {
  columns: 2;
  column-gap: 30px;
}

.capability-row li {
  position: relative;
  padding: 0 0 8px 15px;
  break-inside: avoid;
  font-size: 13px;
}

.capability-row li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--honey);
  content: "";
}

.process {
  background: #f2f0e8;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-rail li {
  position: relative;
  min-height: 280px;
  padding: 26px 24px 30px 0;
  border-right: 1px solid var(--rule);
}

.process-rail li:not(:first-child) {
  padding-left: 24px;
}

.process-rail li:last-child {
  border-right: 0;
}

.process-rail li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--bee-yellow);
  content: "";
}

.process-rail li:not(:first-child)::before {
  left: 24px;
}

.process-rail span {
  color: var(--muted);
  font-size: 11px;
}

.process-rail h3 {
  margin: 74px 0 10px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.process-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.plugins {
  padding: clamp(72px, 9vw, 132px) var(--pad) 0;
  color: #f9f7ef;
  background: var(--ink);
}

.plugin-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 24px 80px;
  align-items: end;
}

.plugin-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.plugin-intro > p:last-child {
  margin: 0;
  color: #b6b3a9;
}

.plugin-console {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  align-items: stretch;
  margin-top: 70px;
  border: 1px solid #4a4841;
}

.plugin-card {
  padding: clamp(24px, 3vw, 42px);
  background: #1b1a16;
}

.linkedin-card {
  border-left: 1px solid #4a4841;
}

.plugin-card-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid #3b3933;
}

.plugin-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #58564e;
  color: var(--bee-yellow);
  font-size: 18px;
  font-weight: 800;
}

.plugin-icon.linked {
  color: #8da0ff;
  font-size: 14px;
}

.plugin-card h3 {
  margin: 3px 0 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.connected {
  color: #70dda3;
}

.plugin-card ul {
  padding-top: 20px;
}

.plugin-card li {
  position: relative;
  padding: 12px 0 12px 23px;
  border-bottom: 1px solid #302f2a;
  color: #cfccc3;
  font-size: 13px;
}

.plugin-card li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--bee-yellow);
}

.router {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #151410;
}

.router svg {
  z-index: 1;
  width: 54px;
  color: var(--bee-yellow);
}

.router strong,
.router small {
  z-index: 1;
}

.router strong {
  margin-top: 13px;
  font-size: 13px;
}

.router small {
  color: #858279;
  font-size: 9px;
}

.router-orbit,
.router-orbit::before,
.router-orbit::after {
  position: absolute;
  border: 1px solid #302f2a;
  border-radius: 50%;
}

.router-orbit {
  width: 160px;
  height: 160px;
}

.router-orbit::before,
.router-orbit::after {
  inset: 20px;
  content: "";
}

.router-orbit::after {
  inset: 45px;
}

.router-orbit i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pollen-blue);
}

.router-orbit i:nth-child(1) { top: 16px; left: 46px; }
.router-orbit i:nth-child(2) { right: 17px; bottom: 46px; background: var(--bee-yellow); }
.router-orbit i:nth-child(3) { bottom: 15px; left: 47px; background: var(--signal-green); }

.powered-row {
  display: grid;
  grid-template-columns: 0.5fr 0.7fr 1.3fr;
  gap: 24px;
  align-items: center;
  margin-top: 0;
  padding: 26px 0 34px;
  border-bottom: 1px solid #4a4841;
}

.powered-row strong {
  font-size: 14px;
}

.powered-row p {
  margin: 0;
  color: #9d9a90;
  font-size: 11px;
}

.pricing {
  background: var(--bee-yellow);
}

.pricing-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.price-side,
.include-side {
  padding: clamp(32px, 5vw, 72px);
}

.price-side {
  border-right: 1px solid var(--ink);
}

.price-side h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.price {
  margin-top: 48px;
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.price > span {
  display: inline-block;
  margin-right: 2px;
  font-size: 0.35em;
  vertical-align: top;
}

.price small {
  font-size: 0.16em;
  font-weight: 650;
  letter-spacing: 0;
}

.price-side > p:not(.section-kicker) {
  margin: 26px 0;
  color: var(--muted);
  font-size: 13px;
}

.include-side > p {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 750;
}

.include-side li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 650;
}

.include-side li span {
  width: 24px;
  color: var(--muted);
  font-size: 10px;
}

.include-side > small {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  background: var(--paper);
}

.faq .section-heading {
  margin-bottom: 0;
}

.faq .section-heading h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--rule);
}

.faq summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 44px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding: clamp(72px, 9vw, 130px) var(--pad);
  color: white;
  background: var(--ink);
}

.contact-mark {
  align-self: start;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid #47463f;
}

.contact-mark svg {
  width: 56px;
  color: var(--bee-yellow);
}

.contact h2 {
  font-size: clamp(48px, 6.7vw, 92px);
}

.contact p:last-child {
  margin: 22px 0 0;
  color: #aaa79d;
}

.contact-email {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bee-yellow);
  color: var(--bee-yellow);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  text-decoration: none;
}

.contact-email span {
  margin-left: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 30px var(--pad);
  color: var(--ink);
  background: var(--bee-yellow);
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  text-align: center;
}

.site-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(90svh - 72px);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .control-tower {
    max-width: 760px;
  }

  .plugin-console {
    grid-template-columns: 150px 1fr;
  }

  .plugin-card-head {
    grid-template-columns: 40px 1fr;
  }

  .plugin-card-head .connected {
    grid-column: 2;
    width: fit-content;
  }

  .contact {
    grid-template-columns: 90px 1fr;
  }

  .contact-email {
    grid-column: 2;
    justify-self: start;
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--ink);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    display: none;
    width: 100%;
    align-items: stretch;
    padding: 0 var(--pad) 14px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 13px 0;
    border-bottom: 1px solid var(--rule);
  }

  .hero-copy {
    min-height: 680px;
    padding-top: 74px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .scope-strip {
    padding-top: 50px;
  }

  .control-tower {
    width: calc(100% - 28px);
    margin: 40px auto;
    box-shadow: 8px 8px 0 rgba(17, 16, 13, 0.16);
  }

  .tower-head,
  .tower-foot,
  .target-row {
    padding: 14px;
  }

  .tower-grid {
    grid-template-columns: 42px 1fr;
  }

  .lanes {
    padding: 6px 12px;
  }

  .lane {
    grid-template-columns: 1fr 64px;
    gap: 10px;
  }

  .lane-track {
    display: none;
  }

  .tower-foot .pulse-chart {
    display: none;
  }

  .thesis-grid,
  .section-heading,
  .plugin-intro,
  .faq {
    grid-template-columns: 1fr;
  }

  .thesis-grid {
    gap: 36px;
  }

  .section-heading,
  .plugin-intro {
    gap: 26px;
  }

  .section-heading h2,
  .plugin-intro h2 {
    font-size: 44px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .capability-row ul {
    columns: 1;
  }

  .process-rail {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .process-rail li,
  .process-rail li:not(:first-child) {
    min-height: auto;
    padding: 0 0 44px 30px;
    border-right: 0;
  }

  .process-rail li::before,
  .process-rail li:not(:first-child)::before {
    top: 4px;
    left: -6px;
  }

  .process-rail h3 {
    margin: 12px 0 8px;
  }

  .plugin-console {
    grid-template-columns: 1fr;
  }

  .linkedin-card {
    border: 0;
  }

  .linkedin-card {
    border-top: 1px solid #4a4841;
  }

  .router {
    min-height: 190px;
  }

  .powered-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-panel {
    grid-template-columns: 1fr;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .price-side {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .price {
    font-size: 72px;
  }

  .faq {
    gap: 52px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-mark {
    width: 72px;
    height: 72px;
  }

  .contact h2 {
    font-size: 56px;
  }

  .contact-email {
    grid-column: 1;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer > div {
    justify-content: space-between;
  }
}

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

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

  .lane-track i {
    width: var(--progress);
  }
}
